Browse Source

:memo: 优化导入数据时刷新列表与自动关闭弹窗

Twelve615 1 year ago
parent
commit
6a5ee545fb

+ 1 - 1
jlsb-vue/src/views/aa/AaCommodityCodeList.vue

@@ -36,7 +36,7 @@
 <!--      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
         <a-button type="primary" icon="import">导入</a-button>
       </a-upload>-->
-      <AaCommodityCodeImportModal></AaCommodityCodeImportModal>
+      <AaCommodityCodeImportModal :load-data="this.loadData"></AaCommodityCodeImportModal>
       <a-button type="primary" icon="" v-has="'aa:commodity:code:sync'" :loading="loadingSyncBtn" @click="asyncOldCode">同步旧防伪码</a-button>
       <!-- 高级查询区域 -->
 <!--      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->

+ 8 - 1
jlsb-vue/src/views/aa/modules/AaCommodityCodeImportModal.vue

@@ -42,6 +42,12 @@ import { downloadCodeImpXls } from '@/api/aaApi'
 const IMP_CODE = `${window._CONFIG['domianURL']}aa/aaCommodityCode/importCodeExcel/`;
 export default {
   name: 'AaCommodityCodeImportModal',
+  props: {
+    //查询
+    loadData: {
+      type: Function
+    }
+  },
   data () {
     return {
       visible: false,
@@ -106,7 +112,8 @@ export default {
           } else {
             this.$message.success(info.file.response.message || `${info.file.name} 文件上传成功`)
           }
-          this.loadData()
+          this.loadData(1)
+          this.handleOk()
         } else {
           this.$message.error(`${info.file.name} ${info.file.response.message}.`);
         }