Commit 3c7b4053 authored by chenqikuai's avatar chenqikuai

fix: 修复/backend/client路由所映射的组件由于读取不到rankVal所导致的错误

parent 52ed6511
...@@ -237,7 +237,7 @@ export default Vue.extend({ ...@@ -237,7 +237,7 @@ export default Vue.extend({
}, },
branchDetailMsg() { branchDetailMsg() {
return RouterUtil.getInstance().getBranchDetailMsgFromRankVal( return RouterUtil.getInstance().getBranchDetailMsgFromRankVal(
this.$route.query.rankVal as string (this.$route.query.rankVal as string) || '[]'
) )
}, },
columns() { columns() {
...@@ -368,7 +368,7 @@ export default Vue.extend({ ...@@ -368,7 +368,7 @@ export default Vue.extend({
} }
}, },
async handleSecondSubBranchChange(id: number) { async handleSecondSubBranchChange(id: number) {
this.transferForm.uuidOfTheClientManager = undefined; this.transferForm.uuidOfTheClientManager = undefined
this.transferFormOptions.clientManagerOptions = await StaffService.getInstance() this.transferFormOptions.clientManagerOptions = await StaffService.getInstance()
.queryStaff({ .queryStaff({
second_sub_branch: id, second_sub_branch: id,
......
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