123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- <template>
- <div>
- <el-dialog
- v-model="dialogVisible"
- width="750px"
- title="Upload Statement"
- :show-close="false"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- :before-close="handleClose"
- >
- <div
- v-loading="loading"
- class="flex start"
- >
- <el-form
- ref="mainForm"
- :rules="formRule"
- class="flex-auto"
- :model="form"
- label-width="150px"
- >
- <el-form-item
- label="Statement Name"
- prop="statement_name"
- >
- <el-input
- v-model="form.statement_name"
- style="width: 190px"
- type="textarea"
- rows="3"
- />
- </el-form-item>
- <el-form-item label="Currency">
- <el-select v-model="form.currency">
- <el-option
- v-for="option in currencyList as IOptionItem[]"
- :key="option.value"
- :label="option.label"
- :value="option.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="Payment Type">
- <el-select v-model="form.paymentType">
- <el-option
- v-for="option in paymentOption"
- :key="option.value"
- :label="option.label"
- :value="option.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="Upload Mode">
- <el-select v-model="form.mode">
- <el-option
- v-for="option in uploadOption"
- :key="option.value"
- :label="option.label"
- :value="option.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-form>
- <div
- class="flex-auto drag-area"
- @dragenter="stop"
- @dragover="stop"
- @dragleave="stop"
- @drop="processExcel"
- >
- <label for="fileInput">
- <div
- class="flex column stretch"
- style="text-align: center; padding: 44px 20px; cursor: pointer"
- >
- <div>
- <el-icon
- size="60px"
- color="#999"
- >
- <upload-filled />
- </el-icon>
- </div>
- <br />
- <div class="el-upload__text">拖动文件到这或者点击选择</div>
- <br />
- <div class="el-upload">
- 单个Excel数据最好控制在100行内, 处理起来会慢
- </div>
- <br>
- <div
- v-if="tableData.length"
- style="color: green"
- >
- 读取文件成功!
- </div>
- </div>
- </label>
- </div>
- </div>
- <br />
- <div class="flex end">
- <el-button
- :loading="loading"
- @click="handleClose"
- >
- 关闭
- </el-button>
- <el-button
- type="primary"
- :loading="loading"
- @click="next(mainForm)"
- >
- 确认
- </el-button>
- </div>
- </el-dialog>
- <!-- multiple -->
- <input
- id="fileInput"
- type="file"
- style="display: none"
- accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel"
- @change="processExcel"
- />
- </div>
- </template>
- <script lang="ts">
- import { defineComponent } from 'vue'
- export default defineComponent({
- name: 'DialogUploadExcel',
- })
- </script>
- <script lang="ts" setup>
- import { watchEffect, ref } from 'vue'
- import {
- ElDialog,
- ElMessage,
- ElForm,
- ElFormItem,
- ElSelect,
- ElOption,
- ElInput,
- ElButton,
- ElIcon,
- } from 'element-plus'
- import { UploadFilled } from '@element-plus/icons-vue'
- import * as XLSX from 'xlsx'
- import type { FormInstance, FormRules } from 'element-plus'
- import { IPoItem, IOptionItem } from '../inteface'
- import request from '@/utils/axios'
- const props = defineProps({
- visible: {
- type: Boolean,
- default: false,
- },
- currencyList: {
- type: Array,
- default: () => {
- return []
- },
- },
- })
- const emit = defineEmits(['update:visible', 'update-table-data'])
- const dialogVisible = ref(false)
- watchEffect(() => {
- dialogVisible.value = props.visible
- })
- const tableData = ref([] as IPoItem[])
- const handleClose = function (done: any) {
- emit('update:visible', false)
- tableData.value = []
- form.value = {
- statement_name: '',
- currency: 'CNY',
- mode: 'Replace',
- paymentType: '货款',
- }
- const target = document.getElementById('fileInput') as HTMLInputElement
- if (target) {
- target.value = ''
- }
- if (typeof done === 'function') {
- done()
- }
- }
- const mainForm = ref<FormInstance>()
- const formRule = ref<FormRules>({
- statement_name: {
- required: true,
- message: '必填项',
- trigger: 'blur',
- },
- })
- const form = ref({
- statement_name: '',
- currency: 'CNY',
- mode: 'Replace',
- paymentType: '货款',
- })
- const uploadOption = [
- {
- label: '追加(Append)',
- value: 'Append',
- },
- {
- label: '替换(Replace)',
- value: 'Replace',
- },
- ]
- const paymentOption = [
- {
- label: '货款',
- value: '货款',
- },
- {
- label: '快递款',
- value: '快递款',
- },
- ]
- const stop = (e: any) => {
- e.preventDefault()
- e.stopPropagation()
- }
- const processExcel = (event: any) => {
- const files = event.target.files || event.dataTransfer.files
- // console.log('files:', files)
- let str = ''
- let arr: IPoItem[] = []
- tableData.value = []
- try {
- for (let i = 0; i < files.length; i++) {
- if (
- ![
- 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
- 'application/vnd.ms-excel',
- ].includes(files[i].type)
- ) {
- ElMessage.error('读取数据出错, 请确认选择了正确的Excel文件')
- return
- }
- str =
- str +
- `${str.length ? ', ' : ''}` +
- (files[i].name.replace(/\.xlsx?/, '') || 'unNameFile')
- const fileReader = new FileReader()
- fileReader.onload = (e: any) => {
- const data = XLSX.read(e.target.result, { type: 'binary' })
- // 重命名列名
- data.Sheets[data.SheetNames[0]].A1.w = 'po_number'
- data.Sheets[data.SheetNames[0]].B1.w = 'sku'
- data.Sheets[data.SheetNames[0]].C1.w = 'description'
- data.Sheets[data.SheetNames[0]].D1.w = 'unit_price'
- data.Sheets[data.SheetNames[0]].E1.w = 'quantity'
- data.Sheets[data.SheetNames[0]].F1.w = 'sample_fee'
- data.Sheets[data.SheetNames[0]].G1.w = 'setup_service_fee'
- data.Sheets[data.SheetNames[0]].H1.w = 'total'
- const jsonData = XLSX.utils.sheet_to_json(
- data.Sheets[data.SheetNames[0]],
- ) as IPoItem[]
- jsonData.forEach((i) => {
- tableData.value.push(i)
- })
- // tableData.value = tableData.value.concat(jsonData)
- }
- fileReader.readAsBinaryString(files[i])
- }
- form.value.statement_name = str
- } catch (error) {
- console.log('处理文件出错:', error)
- }
- event.preventDefault()
- event.stopPropagation()
- }
- const loading = ref(false)
- const next = (formEl: FormInstance | undefined) => {
- if (!formEl) return
- formEl.validate((valid, fields) => {
- if (valid) {
- loading.value = true
- request
- .post('/payment_request/createStatementData', [
- {
- Name: form.value.statement_name,
- },
- ])
- .then((response) => {
- if (response.data.code !== 1) return
- const res = response.data.result
- let result = {
- mode: form.value.mode,
- data: tableData.value.map((i) => {
- return {
- ...i,
- po_number: i.po_number.toUpperCase(),
- payment_type: form.value.paymentType,
- statement_name: form.value.statement_name,
- currency: form.value.currency,
- statement_id: res.data[0].details.id,
- }
- }),
- }
- emit('update-table-data', result)
- handleClose(false)
- })
- .finally(() => {
- loading.value = false
- })
- } else {
- console.log('check form has not pass!', fields)
- ElMessage.error('请检查表单必填项')
- }
- })
- }
- </script>
- <style lang="scss" scoped>
- .drag-area {
- height: 240px;
- border: 1px solid #ddd;
- border-radius: 4px;
- // padding: 24px;
- }
- </style>
|