hook.tsx 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. import { reactive, onMounted, ref, ElMessage, ElMessageBox, http, getGroupUrl, RegularVerification, verification, PaginationProps } from "@/utils/importUsed";
  2. import { useRoute } from "vue-router";
  3. import router from "@/router";
  4. // 表单实例
  5. const ruleFormRef = ref()
  6. export function usePriRecord() {
  7. // 接口列表实例
  8. let UrlList = reactive(null)
  9. // 获取当前板块接口列表
  10. onMounted(async () => {
  11. const route = useRoute();
  12. form.listId = Number(route.query.listId);
  13. UrlList = await getGroupUrl(["prizeSet"]);
  14. onSearch(ruleFormRef.value);
  15. listIdQuery();
  16. });
  17. let form = reactive({
  18. listId: null, //配置ID
  19. batchNo: "", //批次号
  20. });
  21. const dataList = ref([]);
  22. const loading = ref(false);
  23. const dialogAddVisible = ref(false);
  24. const pagination = reactive<PaginationProps>({
  25. total: 0,
  26. pageSize: 10,
  27. currentPage: 1,
  28. background: true
  29. });
  30. const columns: TableColumnList = [
  31. {
  32. type: "selection",
  33. width: 55,
  34. align: "left",
  35. hide: ({ checkList }) => !checkList.includes("勾选列")
  36. },
  37. {
  38. label: "序号",
  39. type: "index",
  40. width: 70,
  41. hide: ({ checkList }) => !checkList.includes("序号列")
  42. },
  43. {
  44. label: "ID",
  45. prop: "id",
  46. minWidth: 200
  47. },
  48. {
  49. label: "配置ID",
  50. prop: "listId",
  51. minWidth: 200,
  52. formatter: ({ listId }) => {
  53. return listIdOptionList.value.find(item => item.id == listId).label
  54. },
  55. },
  56. {
  57. label: "发放金额",
  58. prop: "prizeAmount",
  59. minWidth: 200
  60. },
  61. {
  62. label: "发放对象",
  63. prop: "prizeObjId",
  64. minWidth: 200
  65. },
  66. {
  67. label: "批次号",
  68. prop: "batchNo",
  69. minWidth: 200
  70. },
  71. {
  72. label: "入参字段",
  73. prop: "requestParamField",
  74. minWidth: 200
  75. },
  76. {
  77. label: "操作",
  78. fixed: "right",
  79. width: 200,
  80. slot: "operation"
  81. }
  82. ];
  83. // 当前页数量切换
  84. function handleSizeChange(val: number) {
  85. if (typeof val === "number") {
  86. pagination.pageSize = val;
  87. onSearch(ruleFormRef.value);
  88. }
  89. }
  90. // 当前页码切换
  91. function handleCurrentChange(val: number) {
  92. console.log(`current page: ${val}`);
  93. if (typeof val === "number") {
  94. pagination.currentPage = val;
  95. onSearch(ruleFormRef.value);
  96. }
  97. }
  98. // 选择表格项
  99. function handleSelectionChange(val) {
  100. console.log(`SelectionChange: ${val}`);
  101. onSearch(ruleFormRef.value);
  102. }
  103. // 搜索列表
  104. async function onSearch(formEl) {
  105. // 表单校验拦截
  106. if (!formEl) return
  107. await formEl.validate(async (valid, fields) => {
  108. if (valid) {
  109. //表单校验成功回调
  110. console.log('submit!')
  111. // 状态调整为加载中
  112. loading.value = true;
  113. // 调用接口(需动态生成接口)
  114. const { status, msg, data }: any = await http.Request({
  115. method: UrlList.prizeSet.prigetPriRecordList.method,
  116. url: UrlList.prizeSet.prigetPriRecordList.url,
  117. params: {
  118. ...form,
  119. pageSize: pagination.pageSize,
  120. pageNum: pagination.currentPage
  121. }
  122. });
  123. dataList.value = data.records;
  124. pagination.total = data.total;
  125. setTimeout(() => {
  126. loading.value = false;
  127. }, 500);
  128. } else {
  129. //表单校验失败回调
  130. ElMessage({
  131. message: "请输入完整信息",
  132. type: "error"
  133. });
  134. }
  135. })
  136. }
  137. // 配置ID选项数据
  138. const listIdOptionList = ref([]);
  139. //获取配置ID数据
  140. async function listIdQuery() {
  141. const { status, data }: any = await http.Request({ method: UrlList.prizeSet.prigetPriListDic.method, url: UrlList.prizeSet.prigetPriListDic.url, params: {} });
  142. if (status === 1) {
  143. listIdOptionList.value = data.records;
  144. }
  145. }
  146. // 删除
  147. function handleDelete(row) {
  148. ElMessageBox.confirm(
  149. `是否删除该奖励记录? `,
  150. "提示",
  151. {
  152. confirmButtonText: "删除",
  153. cancelButtonText: "取消",
  154. type: "warning"
  155. }
  156. ).then(async () => {
  157. const { status, msg }: any = await http.Request({ method: UrlList.prizeSet.prideletePriRecord.method, url: UrlList.prizeSet.prideletePriRecord.url, params: String(row.id) });
  158. if (status === 1) {
  159. ElMessage({
  160. message: "删除成功",
  161. type: "success"
  162. });
  163. onSearch(ruleFormRef.value);
  164. } else {
  165. ElMessageBox.alert(msg, "提示", {
  166. confirmButtonText: "关闭",
  167. type: "warning"
  168. });
  169. };
  170. })
  171. }
  172. // 新增
  173. const addVisible = ref(false);
  174. function handleAdd() {
  175. addVisible.value = true;
  176. };
  177. // 修改
  178. const editUpdatePriRecordVisible = ref(false);
  179. const editUpdatePriRecordFormData = ref({});
  180. function handleUpdatePriRecord(row) {
  181. editUpdatePriRecordVisible.value = true;
  182. // 表格数据赋值
  183. editUpdatePriRecordFormData.value = row;
  184. };
  185. return {
  186. form,
  187. loading,
  188. columns,
  189. dataList,
  190. pagination,
  191. onSearch,
  192. handleSizeChange,
  193. handleCurrentChange,
  194. handleSelectionChange,
  195. ruleFormRef,
  196. listIdQuery,
  197. listIdOptionList,
  198. handleAdd,
  199. addVisible,
  200. handleUpdatePriRecord,
  201. editUpdatePriRecordVisible,
  202. editUpdatePriRecordFormData,
  203. handleDelete,
  204. };
  205. }