|
@@ -76,7 +76,7 @@
|
|
|
:def-id="activeTab === 'save' ? defId : null"
|
|
:def-id="activeTab === 'save' ? defId : null"
|
|
|
:pro-inst-id="activeTab === 'save' ? proInstId : null"
|
|
:pro-inst-id="activeTab === 'save' ? proInstId : null"
|
|
|
:title="['wait', 'save'].includes(activeTab) ? FlowName : null"
|
|
:title="['wait', 'save'].includes(activeTab) ? FlowName : null"
|
|
|
- @callback="getData(activeTab)"
|
|
|
|
|
|
|
+ @callback="updateList"
|
|
|
@close="visible => (dialogFormVisible = visible)"
|
|
@close="visible => (dialogFormVisible = visible)"
|
|
|
/>
|
|
/>
|
|
|
<news-detail
|
|
<news-detail
|
|
@@ -426,6 +426,12 @@ export default {
|
|
|
this.loading = false
|
|
this.loading = false
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
|
|
+ // 延迟更新列表数据
|
|
|
|
|
+ updateList () {
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
|
+ this.getData(this.activeTab)
|
|
|
|
|
+ }, 1000)
|
|
|
|
|
+ },
|
|
|
// 查询
|
|
// 查询
|
|
|
search () {
|
|
search () {
|
|
|
this.dataList = []
|
|
this.dataList = []
|