|
@@ -92,6 +92,7 @@ export default {
|
|
|
organId: null,
|
|
|
pageType: this.$route.query.type,
|
|
|
id: this.$route.query.id,
|
|
|
+ pageInfo: this.$route.query.pageInfo,
|
|
|
branchList: [],
|
|
|
useBranchId: [], // 使用的分部编号
|
|
|
result: {
|
|
@@ -217,13 +218,13 @@ export default {
|
|
|
messageTips (title, res) {
|
|
|
if (res.code == 200) {
|
|
|
this.$message.success('修改成功')
|
|
|
- this.$router.push('/vipClassSet/branchActive')
|
|
|
+ this.$router.push({ path: '/vipClassSet/branchActive', query: { rules: this.pageInfo } })
|
|
|
} else {
|
|
|
this.$message.error(res.msg)
|
|
|
}
|
|
|
},
|
|
|
onCancel () {
|
|
|
- this.$router.push('/vipClassSet/branchActive')
|
|
|
+ this.$router.push({ path: '/vipClassSet/branchActive', query: { rules: this.pageInfo } })
|
|
|
},
|
|
|
resetForm () {
|
|
|
this.result = {
|