Commit 6ce5f21e authored by jingnan's avatar jingnan 👀

入库批量检验保存时接口多次调用bug修改

parent 733e9f1b
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
<template> <template>
<div class="warehouseInTest"> <div class="warehouseInTest">
<dee-as-com <dee-as-com
:key="refreshKey"
ref="applyTable" ref="applyTable"
class="list-table" class="list-table"
:basic-data=" { selectData,selectionRows }" :basic-data=" { selectData,selectionRows }"
...@@ -27,7 +28,8 @@ export default { ...@@ -27,7 +28,8 @@ export default {
}, },
data() { data() {
return { return {
selectionRows: [] selectionRows: [],
refreshKey: 1
} }
}, },
computed: {}, computed: {},
...@@ -36,7 +38,7 @@ export default { ...@@ -36,7 +38,7 @@ export default {
mounted() { mounted() {
this.$bus.$on('refreshBackItem', () => { this.$bus.$on('refreshBackItem', () => {
this.$nextTick(() => { this.$nextTick(() => {
this.$bus.$emit('reloadModuleList') this.refreshKey++
}) })
}) })
}, },
......
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