diff --git a/src/components/ebiz/proposal/BreadcrumbNavigator.vue b/src/components/ebiz/proposal/BreadcrumbNavigator.vue index a995a8c22..6e824626a 100644 --- a/src/components/ebiz/proposal/BreadcrumbNavigator.vue +++ b/src/components/ebiz/proposal/BreadcrumbNavigator.vue @@ -33,16 +33,17 @@ export default { jump(index) { if (index === this.current || index == 2) return if (this.moveOn) { - this.$jump({ - flag: 'h5', - extra: { - url: location.origin + `/#/${this.routerInfos[index]}`, - needRefresh: '1' - }, - routerInfo: { - path: `/${this.routerInfos[index]}` - } - }) + this.$router.push({ path: '/'+this.routerInfos[index] }) + // this.$jump({ + // flag: 'h5', + // extra: { + // url: location.origin + `/#/${this.routerInfos[index]}`, + // needRefresh: '1' + // }, + // routerInfo: { + // path: `/${this.routerInfos[index]}` + // } + // }) } }, showArrow(index) { diff --git a/src/views/ebiz/common/SelectedProduct.vue b/src/views/ebiz/common/SelectedProduct.vue index 58de8318c..cbcde7a84 100644 --- a/src/views/ebiz/common/SelectedProduct.vue +++ b/src/views/ebiz/common/SelectedProduct.vue @@ -23,7 +23,7 @@
- + 编辑 删除
@@ -386,6 +386,21 @@ export default { this.$toast(resultData.resultMessage) } }, + //编辑 + editInsure(index){ + let isProposal = localStorage.isFrom == 'proposal' ? true : false + if (isProposal) { + this.$jump({ + flag: 'h5', + extra: { + url: location.origin + '/#/common/calculatePremium?orderNo='+this.$CacheUtils.getLocItem('proposalNo')+'&insuanceId='+this.chooseProducts[index].insuanceId + }, + routerInfo: { + path: '/common/calculatePremium?orderNo='+this.$CacheUtils.getLocItem('proposalNo')+'&insuanceId='+this.chooseProducts[index].insuanceId + } + }) + } + }, //下一步 async nextStep() { if (!this.$route.query.salePageFlag) {