index.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <script setup lang="ts">
  2. import { ref, h } from "vue";
  3. import { ElButton, ElDialog, ElMessage } from "element-plus";
  4. import { httpBatchAdd } from "/@/api/purchase/ticketReturn";
  5. import { execlUpload } from "/@/components/execlUpload";
  6. import { useResponseHandle } from "/@/hooks";
  7. import { useVModel } from "@vueuse/core";
  8. import { columns, mapLabelToProp } from "./columns-config";
  9. import { isImportDataValid } from "./validator";
  10. const loading = ref(false);
  11. const tableData = ref([]);
  12. const emit = defineEmits(["onSuccess"]);
  13. const props = defineProps<{ visible: boolean }>()
  14. const visible = useVModel(props, 'visible')
  15. const responseHandle = useResponseHandle();
  16. const Uploadsuccess = ({ results, header }) => {
  17. loading.value = true;
  18. if (results.length === 0) {
  19. ElMessage.error("表格无有效数据!");
  20. loading.value = false;
  21. return;
  22. }
  23. let headok = true;
  24. if (header.length !== columns.length - 1) {
  25. headok = false;
  26. } else {
  27. columns.slice(1).forEach((si, sii) => {
  28. if (si.label !== header[sii]) {
  29. headok = false;
  30. }
  31. });
  32. }
  33. if (!headok) {
  34. ElMessage.error("表头与导入模板不匹配!");
  35. loading.value = false;
  36. return;
  37. }
  38. tableData.value = [];
  39. const result = []
  40. for(const tableItem of results){
  41. const item = {}
  42. Object.keys(tableItem).forEach(label => {
  43. const prop = mapLabelToProp[label]
  44. item[prop] = tableItem[label]
  45. })
  46. result.push(item)
  47. }
  48. if(isImportDataValid(result)){ tableData.value = result }
  49. loading.value = false;
  50. };
  51. //提交
  52. const handleSubmit = async () => {
  53. try {
  54. if (loading.value) return;
  55. loading.value = true;
  56. const data = [];
  57. const { code, message,data: _d } = await httpBatchAdd({});
  58. loading.value = false;
  59. responseHandle({
  60. code,
  61. message,
  62. noMessage: false,
  63. handler: () => {
  64. ElMessage.success("数据导入成功!");
  65. emit("onSuccess");
  66. visible.value = false;
  67. }
  68. });
  69. } catch (err) {
  70. console.log(err)
  71. }
  72. };
  73. const cancel = () => {
  74. tableData.value = [];
  75. };
  76. </script>
  77. <template>
  78. <ElDialog
  79. v-model="visible"
  80. :close-on-click-modal="false"
  81. title="订单商品导入"
  82. width="1040px"
  83. top="8vh"
  84. center
  85. >
  86. <execlUpload style="margin-bottom: 10px" @on-success="Uploadsuccess" v-if="tableData.length === 0" />
  87. <el-table
  88. :data="tableData"
  89. stripe
  90. border
  91. max-height="500px"
  92. size="small"
  93. style="width: 100%"
  94. >
  95. <el-table-column
  96. v-for="(si, sii) in columns"
  97. :minWidth="si.minWidth"
  98. show-overflow-tooltip
  99. :fixed="si.fixed"
  100. :prop="si.prop"
  101. :type="si.type"
  102. :key="sii"
  103. >
  104. <template #header>
  105. <span v-if="!si.required">
  106. {{ si.label }}
  107. </span>
  108. <p v-else>
  109. <span style="color: #f56c6c; font-size: 14px">* </span>
  110. {{ si.label }}
  111. </p>
  112. </template>
  113. </el-table-column>
  114. </el-table>
  115. <div
  116. flex
  117. justify-end
  118. gap-2
  119. v-if="tableData.length !== 0"
  120. style="padding: 10px 0 0 0"
  121. >
  122. <ElButton size="small" @click="cancel">取消</ElButton>
  123. <el-button
  124. size="small"
  125. type="primary"
  126. :loading="loading"
  127. @click="handleSubmit"
  128. >保存</el-button
  129. >
  130. </div>
  131. </ElDialog>
  132. </template>
  133. <style lang="scss" scoped></style>