diff --git a/src/views/ebiz/proposal/List.vue b/src/views/ebiz/proposal/List.vue index 65810b8df..9cf68f260 100644 --- a/src/views/ebiz/proposal/List.vue +++ b/src/views/ebiz/proposal/List.vue @@ -275,8 +275,15 @@ //点我新增 addProposal() { let thisToken = this.$CacheUtils.getLocItem('token') + let thisbranchType = '' + if(this.$CacheUtils.getLocItem('branchType') == '13') { + thisbranchType = this.$CacheUtils.getLocItem('branchType') + } window.localStorage.clear() this.$CacheUtils.setLocItem('token', thisToken) + if(thisbranchType) { + this.$CacheUtils.setLocItem('branchType', thisbranchType) + } this.$jump({ flag: 'h5', extra: { @@ -290,8 +297,15 @@ //编辑 edit(item) { let thisToken = this.$CacheUtils.getLocItem('token') + let thisbranchType = '' + if(this.$CacheUtils.getLocItem('branchType') == '13') { + thisbranchType = this.$CacheUtils.getLocItem('branchType') + } window.localStorage.clear() this.$CacheUtils.setLocItem('token', thisToken) + if(thisbranchType) { + this.$CacheUtils.setLocItem('branchType', thisbranchType) + } //建议书列表 编辑=》制作中的建议书跳转到选择被保险人页面; this.$CacheUtils.setLocItem('proposalNo', item.orderInfoDTO.orderNo) this.$CacheUtils.setLocItem('canMoveOn', 1)