mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-12 00:56:43 +08:00
【国富人寿】链接拼接订单号或者是建议书号
This commit is contained in:
@@ -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
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user