From e7f3af42dc54f52bf1e7afa30179e08ab78e930b Mon Sep 17 00:00:00 2001 From: "liu.xiaofeng@ebiz-digits.com" Date: Thu, 28 Dec 2023 14:44:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BB=BA=E8=AE=AE=E4=B9=A6=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E6=96=B0=E5=A2=9E=E5=92=8C=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E5=AD=98=E5=82=A8branchType=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E7=94=A8=E4=BA=8E=E6=98=BE=E7=A4=BAGBC=E7=9A=84?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/proposal/List.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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)