upload.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. <template>
  2. <div>
  3. <el-dialog
  4. v-model="dialogVisible"
  5. width="750px"
  6. title="Upload Statement"
  7. :show-close="false"
  8. :close-on-click-modal="false"
  9. :close-on-press-escape="false"
  10. :before-close="handleClose"
  11. >
  12. <div
  13. v-loading="loading"
  14. class="flex items-start"
  15. >
  16. <el-form
  17. ref="mainForm"
  18. :rules="formRule"
  19. class="flex-auto"
  20. :model="form"
  21. label-width="150px"
  22. >
  23. <el-form-item
  24. label="Statement Name"
  25. prop="statement_name"
  26. >
  27. <el-input
  28. v-model="form.statement_name"
  29. style="width: 190px"
  30. type="textarea"
  31. :rows="3"
  32. />
  33. </el-form-item>
  34. <el-form-item label="Currency">
  35. <el-select v-model="form.currency">
  36. <el-option
  37. v-for="option in currencyList as IOptionItem[]"
  38. :key="option.value"
  39. :label="option.label"
  40. :value="option.value"
  41. ></el-option>
  42. </el-select>
  43. </el-form-item>
  44. <el-form-item label="Payment Type">
  45. <el-select
  46. v-model="form.paymentType"
  47. disabled
  48. >
  49. <el-option
  50. v-for="option in paymentOption"
  51. :key="option.value"
  52. :label="option.label"
  53. :value="option.value"
  54. ></el-option>
  55. </el-select>
  56. </el-form-item>
  57. <el-form-item
  58. v-if="form.paymentType === '国际运费'"
  59. label="Weight Unit"
  60. >
  61. <el-select v-model="form.weightUnit">
  62. <el-option
  63. v-for="option in weightOption"
  64. :key="option.value"
  65. :label="option.label"
  66. :value="option.value"
  67. ></el-option>
  68. </el-select>
  69. </el-form-item>
  70. <el-form-item label="Upload Mode">
  71. <el-select
  72. v-model="form.mode"
  73. disabled
  74. >
  75. <el-option
  76. v-for="option in uploadOption"
  77. :key="option.value"
  78. :label="option.label"
  79. :value="option.value"
  80. ></el-option>
  81. </el-select>
  82. </el-form-item>
  83. </el-form>
  84. <div
  85. class="flex-auto drag-area"
  86. @dragenter="stop"
  87. @dragover="stop"
  88. @dragleave="stop"
  89. @drop="processExcel"
  90. >
  91. <label for="fileInput">
  92. <div
  93. class="flex flex-col items-stretch"
  94. style="text-align: center; padding: 44px 20px; cursor: pointer"
  95. >
  96. <div>
  97. <el-icon
  98. size="60px"
  99. color="#999"
  100. >
  101. <upload-filled />
  102. </el-icon>
  103. </div>
  104. <div class="el-upload__text">拖动文件到这或者点击选择</div>
  105. <br />
  106. <div class="el-upload__text">
  107. 注意, 点确认前确保Payment Type选了正确的类型;
  108. </div>
  109. <br />
  110. <div class="el-upload">
  111. 单个Excel数据最好控制在100行内, 处理起来会慢;
  112. </div>
  113. <br />
  114. <div
  115. v-if="fileContainer"
  116. style="color: green"
  117. >
  118. 读取文件成功!
  119. </div>
  120. </div>
  121. </label>
  122. </div>
  123. </div>
  124. <br />
  125. <div class="flex justify-end">
  126. <el-button
  127. :loading="loading"
  128. @click="handleClose"
  129. >
  130. 关闭
  131. </el-button>
  132. <el-tooltip content="注意, 点确认前确保Payment Type选了正确的类型">
  133. <el-button
  134. type="primary"
  135. :loading="loading"
  136. @click="next(mainForm)"
  137. >
  138. 确认
  139. </el-button>
  140. </el-tooltip>
  141. </div>
  142. </el-dialog>
  143. <!-- multiple -->
  144. <input
  145. id="fileInput"
  146. type="file"
  147. style="display: none"
  148. accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel"
  149. @change="processExcel"
  150. />
  151. </div>
  152. </template>
  153. <script lang="ts">
  154. import { defineComponent } from 'vue'
  155. export default defineComponent({
  156. name: 'DialogUploadExcel',
  157. })
  158. </script>
  159. <script lang="ts" setup>
  160. import { watchEffect, ref } from 'vue'
  161. import {
  162. ElDialog,
  163. ElMessage,
  164. ElForm,
  165. ElFormItem,
  166. ElSelect,
  167. ElOption,
  168. ElInput,
  169. ElButton,
  170. ElIcon,
  171. ElTooltip,
  172. } from 'element-plus'
  173. import { UploadFilled } from '@element-plus/icons-vue'
  174. import * as XLSX from 'xlsx'
  175. import type { FormInstance, FormRules } from 'element-plus'
  176. import { ITrackingNumberItem, IOptionItem, } from '../inteface'
  177. const props = defineProps({
  178. visible: {
  179. type: Boolean,
  180. default: false,
  181. },
  182. currencyList: {
  183. type: Array,
  184. default: () => {
  185. return []
  186. },
  187. },
  188. defaultFileType: {
  189. type: String,
  190. default: '国际运费',
  191. },
  192. })
  193. const emit = defineEmits(['update:visible', 'update-table-data'])
  194. const dialogVisible = ref(false)
  195. watchEffect(() => {
  196. dialogVisible.value = props.visible
  197. })
  198. const tableData = ref([] as any[])
  199. const handleClose = function (done: any) {
  200. emit('update:visible', false)
  201. tableData.value = []
  202. form.value = {
  203. statement_name: '',
  204. currency: 'CNY',
  205. mode: 'Replace',
  206. paymentType: props.defaultFileType,
  207. weightUnit: 'Kg',
  208. }
  209. const target = document.getElementById('fileInput') as HTMLInputElement
  210. if (target) {
  211. target.value = ''
  212. }
  213. fileContainer.value = null
  214. if (typeof done === 'function') {
  215. done()
  216. }
  217. }
  218. const mainForm = ref<FormInstance>()
  219. const formRule = ref<FormRules>({
  220. statement_name: {
  221. required: true,
  222. message: '必填项',
  223. trigger: 'blur',
  224. },
  225. })
  226. const form = ref({
  227. statement_name: '',
  228. currency: 'CNY',
  229. mode: 'Replace',
  230. paymentType: props.defaultFileType,
  231. weightUnit: 'Kg',
  232. })
  233. watchEffect(() => {
  234. form.value.paymentType = props.defaultFileType
  235. })
  236. const uploadOption = [
  237. {
  238. label: '追加(Append)',
  239. value: 'Append',
  240. },
  241. {
  242. label: '替换(Replace)',
  243. value: 'Replace',
  244. },
  245. ]
  246. const paymentOption = [
  247. {
  248. label: '国际运费',
  249. value: '国际运费',
  250. },
  251. ]
  252. const weightOption = [
  253. {
  254. label: 'Kg',
  255. value: 'Kg',
  256. },
  257. {
  258. label: 'Lb',
  259. value: 'Lb',
  260. },
  261. ]
  262. const stop = (e: any) => {
  263. e.preventDefault()
  264. e.stopPropagation()
  265. }
  266. const fileContainer = ref(null as any)
  267. const processExcel = (event: any) => {
  268. const files = event.target.files || event.dataTransfer.files
  269. let str = ''
  270. tableData.value = []
  271. try {
  272. for (let i = 0; i < files.length; i++) {
  273. if (i === files.length - 1) {
  274. fileContainer.value = files[i]
  275. }
  276. if (
  277. ![
  278. 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
  279. 'application/vnd.ms-excel',
  280. ].includes(files[i].type)
  281. ) {
  282. ElMessage.error('读取数据出错, 请确认选择了正确的Excel文件')
  283. return
  284. }
  285. str =
  286. str +
  287. `${str.length ? ', ' : ''}` +
  288. (files[i].name.replace(/\.xlsx?/, '') || 'unNameFile')
  289. }
  290. form.value.statement_name = str
  291. } catch (error) {
  292. console.log('读取文件出错:', error)
  293. }
  294. event.preventDefault()
  295. event.stopPropagation()
  296. }
  297. const loading = ref(false)
  298. const next = (formEl: FormInstance | undefined) => {
  299. if (!formEl) return
  300. formEl.validate((valid, fields) => {
  301. if (valid) {
  302. loading.value = true
  303. try {
  304. const fileReader = new FileReader()
  305. fileReader.onload = (e: any) => {
  306. const data = XLSX.read(e.target.result, { type: 'binary' })
  307. // 重命名列名
  308. if (form.value.paymentType === '国际运费') {
  309. // todo
  310. const jsonData = XLSX.utils.sheet_to_json(
  311. data.Sheets[data.SheetNames[0]],
  312. ) as ITrackingNumberItem[]
  313. jsonData.forEach((i) => {
  314. tableData.value.push({
  315. ...i,
  316. Weight_Unit: form.value.weightUnit,
  317. Currency: form.value.currency,
  318. payment_type: form.value.paymentType,
  319. statement_name: form.value.statement_name,
  320. })
  321. })
  322. }
  323. let result = {
  324. mode: form.value.mode,
  325. data: tableData.value,
  326. }
  327. emit('update-table-data', result, fileContainer.value)
  328. handleClose(false)
  329. }
  330. fileReader.readAsBinaryString(fileContainer.value)
  331. } catch (e) {
  332. console.log(e, '处理文件出错')
  333. }
  334. loading.value = false
  335. } else {
  336. console.log('check form has not pass!', fields)
  337. ElMessage.error('请检查表单必填项')
  338. }
  339. })
  340. }
  341. form.value.paymentType = props.defaultFileType
  342. </script>
  343. <style lang="scss" scoped>
  344. .drag-area {
  345. height: 240px;
  346. border: 1px solid #ddd;
  347. border-radius: 4px;
  348. margin-left: 24px;
  349. }
  350. </style>