Commit 16170c5b authored by tanghao's avatar tanghao

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

parent d3bf823a
...@@ -36,10 +36,13 @@ ...@@ -36,10 +36,13 @@
:loading="loading" :loading="loading"
:data="tableData" :data="tableData"
> >
<vxe-column type="expand" title="尺码" width="120"> <vxe-column type="expand" title="尺码" width="120">
<template #default>尺码信息</template> <template #default="row">
{{row.sizeListDto!=null?'尺码信息':'无尺码'}}
</template>
<template #content="{ row }"> <template #content="{ row }">
<div style="width: 1024px"> <div style="width: 1024px" v-if="row.sizeListDto!=null">
<el-row> <el-row>
<el-col :span="24"> <el-col :span="24">
<el-table <el-table
...@@ -73,10 +76,7 @@ ...@@ -73,10 +76,7 @@
</vxe-colgroup> </vxe-colgroup>
</vxe-table> </vxe-table>
</el-col> </el-col>
</el-row> </el-row>
</div> </div>
</template> </template>
</vxe-column> </vxe-column>
...@@ -267,6 +267,12 @@ const handleImportVar = async (row) => { ...@@ -267,6 +267,12 @@ const handleImportVar = async (row) => {
importVisible.value = true importVisible.value = true
} }
const imporModalHide = () => { const imporModalHide = () => {
console.log("关闭")
importForm.value.customerName = ''
importForm.value.productName = ''
importForm.value.customerId = ''
importForm.value.productCode = ''
importForm.value.orderItemId = ''
importForm.value.filePaths = [] importForm.value.filePaths = []
} }
const handleRemove = (file) => { 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