【国富人寿】链接拼接订单号或者是建议书号

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2023-05-11 17:45:57 +08:00
parent b591827a03
commit 2af19f863d
24 changed files with 218 additions and 216 deletions

View File

@@ -85,7 +85,7 @@ export default {
async mounted() {
if (localStorage.isFrom == 'sale') {
return new Promise((resolve, reject) => {
getOrderDetail({ orderNo: this.$CacheUtils.getLocItem('orderNo') }).then(
getOrderDetail({ orderNo: this.$route.query.orderNo }).then(
res => {
if (res.result == 0) {
//------------------------专为桂/惠企写死--begin---------------//
@@ -121,7 +121,7 @@ export default {
} else {
return new Promise((resolve, reject) => {
getDetail({
orderNo: this.$CacheUtils.getLocItem('proposalNo')
orderNo: this.$route.query.orderNo
}).then(res => {
if (res.result == '0') {
this.recommendType = res.content[0].recmdDTO?res.content[0].recmdDTO.recommendType:'';
@@ -521,10 +521,10 @@ export default {
this.$jump({
flag: 'h5',
extra: {
url: location.origin + '/#/common/calculatePremium'
url: location.origin + '/#/common/calculatePremium?orderNo=' + this.$route.query.orderNo
},
routerInfo: {
path: '/common/calculatePremium'
path: '/common/calculatePremium?orderNo=' + this.$route.query.orderNo
}
})
}