|
@@ -967,6 +967,11 @@ export default {
|
|
|
})
|
|
|
this.getList()
|
|
|
},
|
|
|
+ activated() {
|
|
|
+ if (this.$route.query.id) {
|
|
|
+ this.handleUpdate({fId: this.$route.query.id});
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
handleSizeChange(val) {
|
|
|
console.log(`每页 ${val} 条`);
|
|
@@ -1026,6 +1031,9 @@ export default {
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|
|
|
}).then(() => {
|
|
|
+ if (this.$route.query.id) {
|
|
|
+ this.$router.push({query: {}});
|
|
|
+ }
|
|
|
this.jiGang = false
|
|
|
}).catch(() => {
|
|
|
})
|