Commit 16170c5b authored by tanghao's avatar tanghao

关闭窗口的时候,重新上传文件

parent d3bf823a
......@@ -36,10 +36,13 @@
:loading="loading"
:data="tableData"
>
<vxe-column type="expand" title="尺码" width="120">
<template #default>尺码信息</template>
<template #default="row">
{{row.sizeListDto!=null?'尺码信息':'无尺码'}}
</template>
<template #content="{ row }">
<div style="width: 1024px">
<div style="width: 1024px" v-if="row.sizeListDto!=null">
<el-row>
<el-col :span="24">
<el-table
......@@ -73,10 +76,7 @@
</vxe-colgroup>
</vxe-table>
</el-col>
</el-row>
</div>
</template>
</vxe-column>
......@@ -267,6 +267,12 @@ const handleImportVar = async (row) => {
importVisible.value = true
}
const imporModalHide = () => {
console.log("关闭")
importForm.value.customerName = ''
importForm.value.productName = ''
importForm.value.customerId = ''
importForm.value.productCode = ''
importForm.value.orderItemId = ''
importForm.value.filePaths = []
}
const handleRemove = (file) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment