Commit a555fcfb authored by wangxl's avatar wangxl

4444

parent 7cd68ff5
...@@ -146,6 +146,7 @@ export default { ...@@ -146,6 +146,7 @@ export default {
if (data) { if (data) {
this.$message.info(data) this.$message.info(data)
this.tableData = [] this.tableData = []
this.$emit('save', true)
} }
}) })
} }
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
<expert-edit v-model="id" @close="closeWindow"></expert-edit> <expert-edit v-model="id" @close="closeWindow"></expert-edit>
</a-modal> </a-modal>
<a-modal v-model="visibleImport" title="专家导入" width="80%" :dialog-style="{ top: '8%' }" :footer="null" destroyOnClose> <a-modal v-model="visibleImport" title="专家导入" width="80%" :dialog-style="{ top: '8%' }" :footer="null" destroyOnClose>
<expert-import /> <expert-import @save="importSave" />
</a-modal> </a-modal>
</div> </div>
</template> </template>
...@@ -155,6 +155,9 @@ export default { ...@@ -155,6 +155,9 @@ export default {
this.pagination.pageSize = pageSize this.pagination.pageSize = pageSize
this.getListByPage() this.getListByPage()
}, },
importSave (value) {
this.visibleImport = false;
},
importExcel () { importExcel () {
this.visibleImport = true; this.visibleImport = true;
}, },
......
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