index.vue 4.0 KB

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