mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 10:26:44 +08:00
【国富人寿】链接拼接订单号或者是建议书号
This commit is contained in:
@@ -661,7 +661,7 @@ export default {
|
||||
// this.cvalidateFlag = (this.activeType == 'KMH'||this.activeType == 'SQY') && this.isFrom != 'proposal'
|
||||
// this.cvalidateStr = this.cvalidateFlag?this.activeType == 'KMH'?'2021-01-01':this.activeType == 'SQY'?'2021-06-01':'':''
|
||||
//GFRS-2552【需求】关于金掌桂投保流程增设指定生效日按钮的申请
|
||||
const orderNo = this.$CacheUtils.getLocItem('orderNo')
|
||||
const orderNo = this.$route.query.orderNo
|
||||
let detailPromise = this.isFrom === 'proposal' ? localStorage.proposalMedical : await getOrderDetail({ orderNo })
|
||||
|
||||
let collect = (data,code) => {
|
||||
@@ -679,6 +679,7 @@ export default {
|
||||
|
||||
|
||||
if (this.isFrom != 'proposal') {
|
||||
// debugger
|
||||
collect(occupationList,detailPromise.orderDTO.insuredDTOs[0].occupationCode)
|
||||
//活动生效日期
|
||||
this.cvalidateStr = detailPromise.orderDTO.orderInfoDTO.cvaliDate
|
||||
@@ -935,7 +936,7 @@ export default {
|
||||
},
|
||||
//特殊处理 GFRS_M0016 GFRS_A0004 GFRS_A0005 赔付比例处理
|
||||
async dogetLimitAndGetRate() {
|
||||
const orderNo = this.$CacheUtils.getLocItem('orderNo')
|
||||
const orderNo = this.$route.query.orderNo
|
||||
let detailPromise = this.isFrom === 'proposal' ? localStorage.proposalMedical : await getOrderDetail({ orderNo })
|
||||
this.chooseProducts.map((item) => {
|
||||
if (
|
||||
@@ -2294,7 +2295,7 @@ export default {
|
||||
productCode: item.productCode,
|
||||
medical: JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo')).medical,
|
||||
isCrossChannel: this.isCrossChannel,
|
||||
orderNo: this.$CacheUtils.getLocItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
})
|
||||
params.trialInfos.push(trialInfo)
|
||||
})
|
||||
@@ -2758,7 +2759,7 @@ export default {
|
||||
|
||||
//建议书需要添加全部投保人信息,电投只需要投保人ID
|
||||
let insuredDTOItem = Object.assign(this.saleInsuredPersonInfo, { riskDTOLst: riskDTOLst })
|
||||
let orderNo = localStorage.isFrom == 'proposal'?this.$CacheUtils.getLocItem('proposalNo'):this.$CacheUtils.getLocItem('orderNo')
|
||||
let orderNo = this.$route.query.orderNo
|
||||
let params = {
|
||||
orderType: 'RISK_ORDER',
|
||||
orderDTO: {
|
||||
|
||||
@@ -91,7 +91,7 @@ export default {
|
||||
})
|
||||
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---------------//
|
||||
@@ -127,7 +127,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:'';
|
||||
@@ -529,10 +529,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
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@@ -357,7 +357,7 @@ export default {
|
||||
let parans = {
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: this.$CacheUtils.getLocItem('proposalNo')
|
||||
orderNo: this.$route.query.proposalOrderNo
|
||||
},
|
||||
insuredDTOs: deletePerson
|
||||
},
|
||||
@@ -390,7 +390,7 @@ export default {
|
||||
let params = {
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: this.$CacheUtils.getLocItem('proposalNo')
|
||||
orderNo: this.$route.query.proposalOrderNo
|
||||
},
|
||||
insuredDTOs: [
|
||||
{
|
||||
|
||||
@@ -560,7 +560,7 @@ export default {
|
||||
if (agentResult.result == '0') {
|
||||
this.agent.name = agentResult.name
|
||||
}
|
||||
params.proposalInfoDTO.proposalNo = this.$CacheUtils.getLocItem('proposalNo')
|
||||
params.proposalInfoDTO.proposalNo = this.$route.query.proposalNo
|
||||
getDemo(params).then(res => {
|
||||
this.formatLocal(res)
|
||||
})
|
||||
|
||||
@@ -473,7 +473,7 @@ export default {
|
||||
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
},
|
||||
orderAccountDTO: {
|
||||
bankName: this.bank,
|
||||
@@ -495,7 +495,7 @@ export default {
|
||||
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
},
|
||||
orderAccountDTO: {
|
||||
accountType: this.radio,
|
||||
@@ -518,7 +518,7 @@ export default {
|
||||
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
},
|
||||
orderAccountDTO: {
|
||||
accountType: this.radio,
|
||||
@@ -543,7 +543,7 @@ export default {
|
||||
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
},
|
||||
orderAccountDTO: {
|
||||
accountType: this.radio,
|
||||
@@ -566,7 +566,7 @@ export default {
|
||||
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
},
|
||||
orderAccountDTO: {
|
||||
accountType: this.radio,
|
||||
@@ -595,10 +595,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/attachmentManagement'
|
||||
url: location.origin + '/#/sale/attachmentManagement?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/attachmentManagement'
|
||||
path: '/sale/attachmentManagement?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -652,7 +652,7 @@ export default {
|
||||
},
|
||||
async created() {
|
||||
this.$store.commit('updateAnswerType', false )
|
||||
let res = await getOrderDetail({ orderNo: localStorage.orderNo })
|
||||
let res = await getOrderDetail({ orderNo: this.$route.query.orderNo })
|
||||
this.$toast.loading({
|
||||
duration: 0, // 持续展示 toast
|
||||
forbidClick: true, // 禁用背景点击
|
||||
|
||||
@@ -134,7 +134,7 @@ export default {
|
||||
openLoading()
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve) => {
|
||||
getOrderDetail1(data).then(res => {
|
||||
@@ -187,13 +187,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
signType: that.appntSign.signType,
|
||||
@@ -215,10 +215,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -243,13 +243,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
signType: that.appntSign.signType,
|
||||
@@ -266,10 +266,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -508,7 +508,7 @@ export default {
|
||||
created() {
|
||||
//如果是从编辑进来的
|
||||
// if (this.$route.query.edit || localStorage.changeCard) {
|
||||
getOrderDetail({ orderNo: localStorage.orderNo }).then((res) => {
|
||||
getOrderDetail({ orderNo: this.$route.query.orderNo }).then((res) => {
|
||||
// console.log(res)
|
||||
if (res.result == 0) {
|
||||
if(res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint == '1'&&res.orderDTO.riskEvaluationDTO.totalScore == null){
|
||||
@@ -648,7 +648,7 @@ export default {
|
||||
// that.saleInsuredPersonInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo'))
|
||||
// }
|
||||
// 获取订单号
|
||||
that.orderNo = window.localStorage.getItem('orderNo')
|
||||
that.orderNo = this.$route.query.orderNo
|
||||
// 获取是投保人还是被保险人
|
||||
that.isAppant = window.localStorage.getItem('accountInformationRadio')
|
||||
// 数据字典获取
|
||||
@@ -1617,7 +1617,7 @@ export default {
|
||||
let data = {
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: this.$route.query.orderNo,
|
||||
productCode: JSON.parse(localStorage.mainRiskCodes)[0],
|
||||
},
|
||||
appntDTO: {
|
||||
@@ -1650,12 +1650,12 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/signatureConfirmation',
|
||||
url: location.origin + '/#/sale/signatureConfirmation?orderNo=' + this.$route.query.orderNo,
|
||||
pullRefresh: '1',
|
||||
backToFirst: '1',
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/signatureConfirmation',
|
||||
path: '/sale/signatureConfirmation?orderNo=' + this.$route.query.orderNo,
|
||||
},
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -206,7 +206,7 @@ export default {
|
||||
getOrderDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail(data).then(res => {
|
||||
@@ -411,13 +411,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sign',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -449,10 +449,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#'+routeUrl
|
||||
url: location.origin + '/#'+ routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: routeUrl
|
||||
path: routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -476,13 +476,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sign',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -515,11 +515,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#' + routeUrl,
|
||||
url: location.origin + '/#' + routeUrl + '?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: routeUrl
|
||||
path: routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -205,7 +205,7 @@ export default {
|
||||
getOrderDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail(data).then(res => {
|
||||
@@ -410,13 +410,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sign',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -441,10 +441,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/signatureOfElectronic'
|
||||
url: location.origin + '/#/sale/signatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/signatureOfElectronic'
|
||||
path: '/sale/signatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -468,13 +468,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sign',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -500,11 +500,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/signatureOfElectronic',
|
||||
url: location.origin + '/#/sale/signatureOfElectronic?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/signatureOfElectronic'
|
||||
path: '/sale/signatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -281,13 +281,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -308,10 +308,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
|
||||
@@ -322,10 +322,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -359,13 +359,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.insuredSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.insuredSign.documentType,
|
||||
@@ -400,10 +400,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
// }
|
||||
@@ -456,13 +456,13 @@ export default {
|
||||
orderType: that.changeCard ? 'SIGNNEW_ORDER' : 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -494,12 +494,12 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/SignatureConfirmation'
|
||||
url: location.origin + '/#/sale/SignatureConfirmation?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path:
|
||||
'/sale/signatureConfirmation?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&saleInsuredInfo=' +
|
||||
@@ -530,10 +530,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -562,13 +562,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.insuredSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.insuredSign.documentType,
|
||||
@@ -589,10 +589,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic'
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/SignatureOfElectronic'
|
||||
path: '/sale/SignatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -626,13 +626,13 @@ export default {
|
||||
orderType: that.changeCard ? 'SIGNNEW_ORDER' : 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -671,11 +671,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url,
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -694,13 +694,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.insuredSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.insuredSign.documentType,
|
||||
@@ -718,11 +718,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic',
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/SignatureOfElectronic'
|
||||
path: '/sale/SignatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -152,7 +152,7 @@ export default {
|
||||
flag: '', // 根据险种编号判断页面是否展示8-10题的标识;因为选择投保'分红/万能/投资连结保险',页面需要展示1-10题,
|
||||
idType: '', // 证件类型
|
||||
idNo: '', // 证件号码
|
||||
orderNo: localStorage.lastOrderNo, // 从缓存中获取投保单号
|
||||
orderNo: '', //
|
||||
fillDate: utils.formatDate(new Date(), 'yyyy年MM月dd日'), // 获取当前日期
|
||||
appntSign: {}, // 投保人签名信息
|
||||
tipsPolicyUrl: '',
|
||||
@@ -163,6 +163,7 @@ export default {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.orderNo = this.$route.query.orderNo
|
||||
if (!this.isWeixin) {
|
||||
setTimeout(() => {
|
||||
// eslint-disable-next-line no-undef
|
||||
@@ -293,7 +294,7 @@ export default {
|
||||
getOrderDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail(data).then(res => {
|
||||
@@ -495,13 +496,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'tip',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -526,10 +527,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#' + routeUrl
|
||||
url: location.origin + '/#' + routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: routeUrl
|
||||
path: routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -550,13 +551,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'tip',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -582,11 +583,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#' + routeUrl,
|
||||
url: location.origin + '/#' + routeUrl + '?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: routeUrl
|
||||
path: routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -217,7 +217,7 @@ export default {
|
||||
getOrderDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail(data).then(res => {
|
||||
@@ -445,13 +445,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'tip',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -487,10 +487,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#' + routeUrl
|
||||
url: location.origin + '/#' + routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: routeUrl
|
||||
path: routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -514,13 +514,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'tip',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -557,11 +557,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#' + routeUrl,
|
||||
url: location.origin + '/#' + routeUrl + '?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: routeUrl
|
||||
path: routeUrl + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -1429,10 +1429,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + `/#/sale/insuredPerson?${str}`,
|
||||
url: location.origin + `/#/sale/insuredPerson?${str}` + '&orderNo=' + resultData.orderNo,
|
||||
},
|
||||
routerInfo: {
|
||||
path: `/sale/insuredPerson?${str}`,
|
||||
path: `/sale/insuredPerson?${str}` + '&orderNo=' + resultData.orderNo,
|
||||
},
|
||||
})
|
||||
})
|
||||
@@ -1440,10 +1440,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + `/#/sale/insuredPerson?${str}`,
|
||||
url: location.origin + `/#/sale/insuredPerson?${str}` + '&orderNo=' + resultData.orderNo,
|
||||
},
|
||||
routerInfo: {
|
||||
path: `/sale/insuredPerson?${str}`,
|
||||
path: `/sale/insuredPerson?${str}` + '&orderNo=' + resultData.orderNo,
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
@@ -613,7 +613,7 @@ export default {
|
||||
this.specilFlag = this.$route.query.specilFlag
|
||||
//如果是编辑/导航进来
|
||||
// if (this.$route.query.edit) {
|
||||
const orderNo = this.$CacheUtils.getLocItem('orderNo')
|
||||
const orderNo = this.$route.query.orderNo
|
||||
if (orderNo) {
|
||||
getOrderDetail({ orderNo: orderNo }).then((res) => {
|
||||
if (res.result == 0) {
|
||||
@@ -967,7 +967,7 @@ export default {
|
||||
//如果关系是本人
|
||||
if (value.id == 1) {
|
||||
//获取订单详情
|
||||
const orderNo = this.$CacheUtils.getLocItem('orderNo')
|
||||
const orderNo = this.$route.query.orderNo
|
||||
getOrderDetail({ orderNo: orderNo }).then((res) => {
|
||||
if (res.result == 0) {
|
||||
this.isAppnt = true
|
||||
@@ -1789,7 +1789,7 @@ export default {
|
||||
orderType: 'INSURED_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: this.$CacheUtils.getLocItem('orderNo'),
|
||||
orderNo: this.$route.query.orderNo,
|
||||
},
|
||||
appntDTO: {},
|
||||
},
|
||||
@@ -1822,10 +1822,10 @@ export default {
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
forbidSwipeBack: '1',
|
||||
url: location.origin + `/#/common/selectedProduct?${str}`,
|
||||
url: location.origin + `/#/common/selectedProduct?${str}` + '&orderNo=' + this.$route.query.orderNo,
|
||||
},
|
||||
routerInfo: {
|
||||
path: `/common/selectedProduct?${str}`,
|
||||
path: `/common/selectedProduct?${str}` + '&orderNo=' + this.$route.query.orderNo,
|
||||
},
|
||||
})
|
||||
} else {
|
||||
@@ -2064,7 +2064,7 @@ export default {
|
||||
},
|
||||
watch: {
|
||||
async 'withRootUser.value'(n) {
|
||||
const orderNo = this.$CacheUtils.getLocItem('orderNo')
|
||||
const orderNo = this.$route.query.orderNo
|
||||
if (n && orderNo) {
|
||||
const rs = await getOrderDetail({ orderNo: orderNo})
|
||||
this.homeName = getAreaName([
|
||||
|
||||
@@ -692,10 +692,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/answerPage',
|
||||
url: location.origin + '/#/sale/answerPage?orderNo=' + this.$route.query.orderNo,
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/answerPage'
|
||||
path: '/sale/answerPage?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -782,10 +782,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/answerPage',
|
||||
url: location.origin + '/#/sale/answerPage?orderNo=' + this.$route.query.orderNo,
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/answerPage'
|
||||
path: '/sale/answerPage?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@@ -111,7 +111,7 @@ export default {
|
||||
getOrderDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail(data).then(res => {
|
||||
@@ -171,13 +171,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -195,14 +195,14 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#'+ url,
|
||||
url: location.origin + '/#'+ url + '?orderNo=' + that.$route.query.orderNo,
|
||||
pullRefresh: '1',
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path:
|
||||
url +'?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&saleInsuredInfo=' +
|
||||
@@ -240,13 +240,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.insuredSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.insuredSign.documentType,
|
||||
@@ -263,14 +263,14 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#'+ url,
|
||||
url: location.origin + '/#'+ url + '?orderNo=' + this.$route.query.orderNo,
|
||||
pullRefresh: '1',
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path:
|
||||
url +'?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&saleInsuredInfo=' +
|
||||
@@ -313,13 +313,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -336,11 +336,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url,
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -359,13 +359,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.insuredSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.insuredSign.documentType,
|
||||
@@ -381,11 +381,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/signatureConfirmation',
|
||||
url: location.origin + '/#/sale/signatureConfirmation?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/signatureConfirmation'
|
||||
path: '/sale/signatureConfirmation?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -113,7 +113,7 @@ export default {
|
||||
// 提交转核保
|
||||
submit() {
|
||||
let data = {
|
||||
orderNo: this.underWriteData.orderNo
|
||||
orderNo: this.$route.query.orderNo
|
||||
}
|
||||
selfToHuman(data).then(res => {
|
||||
if (res.result == '0') {
|
||||
|
||||
@@ -1034,10 +1034,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + path
|
||||
url: location.origin + '/#/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + path
|
||||
path: '/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -1086,10 +1086,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + path
|
||||
url: location.origin + '/#/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + path
|
||||
path: '/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -1130,10 +1130,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + path
|
||||
url: location.origin + '/#/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + path
|
||||
path: '/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
// if (this.isInsuYearFlag) {
|
||||
@@ -1221,7 +1221,7 @@ export default {
|
||||
console.log(
|
||||
location.origin +
|
||||
'/#/sale/signatureConfirmation?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&saleInsuredInfo=' +
|
||||
@@ -1247,7 +1247,7 @@ export default {
|
||||
url:
|
||||
location.origin +
|
||||
'/#/sale/signatureConfirmation?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&relationToAppnt=' +
|
||||
@@ -1272,7 +1272,7 @@ export default {
|
||||
url:
|
||||
location.origin +
|
||||
'/#/sale/signatureConfirmation?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&relationToAppnt=' +
|
||||
@@ -1305,7 +1305,7 @@ export default {
|
||||
type: '1',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1321,10 +1321,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/payMent'
|
||||
url: location.origin + '/#/sale/payMent?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/payMent'
|
||||
path: '/sale/payMent?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else if (res.uwResult == '07') {
|
||||
@@ -1334,11 +1334,11 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/result',
|
||||
url: location.origin + '/#/sale/result?orderNo=' + this.$route.query.orderNo,
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/result'
|
||||
path: '/sale/result?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else if (res.uwResult == '46') {
|
||||
@@ -1348,11 +1348,11 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/result',
|
||||
url: location.origin + '/#/sale/result?orderNo=' + this.$route.query.orderNo,
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/result'
|
||||
path: '/sale/result?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else if (res.uwResult == '47') {
|
||||
@@ -1361,11 +1361,11 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/result',
|
||||
url: location.origin + '/#/sale/result?orderNo=' + this.$route.query.orderNo,
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/result'
|
||||
path: '/sale/result?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -1374,11 +1374,11 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/result',
|
||||
url: location.origin + '/#/sale/result?orderNo=' + this.$route.query.orderNo,
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/result'
|
||||
path: '/sale/result?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -1394,10 +1394,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/payMent'
|
||||
url: location.origin + '/#/sale/payMent?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/payMent'
|
||||
path: '/sale/payMent?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
},
|
||||
@@ -1413,7 +1413,7 @@ export default {
|
||||
message: '加载中……'
|
||||
})
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: this.$route.query.orderNo,
|
||||
getOtherType: 'RID'
|
||||
}
|
||||
localStorage.setItem('riskName', '')
|
||||
@@ -1871,10 +1871,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + path
|
||||
url: location.origin + '/#/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + path
|
||||
path: '/sale/' + path + '?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -289,7 +289,7 @@ export default {
|
||||
getOrderDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail(data).then(res => {
|
||||
@@ -369,7 +369,7 @@ export default {
|
||||
contNo: window.localStorage.getItem('contNo'),
|
||||
baseEncryp: this.base64,
|
||||
pdfAddresss: window.localStorage.getItem('insurance-policyUrl'),
|
||||
orderNo: localStorage.orderNo
|
||||
orderNo: this.$route.query.orderNo
|
||||
}
|
||||
|
||||
submit(data).then(res => {
|
||||
@@ -379,11 +379,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/serve/result',
|
||||
url: location.origin + '/#/serve/result?orderNo=' + this.$route.query.orderNo,
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/serve/result'
|
||||
path: '/serve/result?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -416,13 +416,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sign',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentStatus: '3',
|
||||
signType: that.signVal,
|
||||
baseEncryp: that.base64,
|
||||
@@ -447,14 +447,14 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#'+ url,
|
||||
url: location.origin + '/#'+ url + '?orderNo=' + that.$route.query.orderNo,
|
||||
pullRefresh: '1',
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path:
|
||||
url +'?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&saleInsuredInfo=' +
|
||||
@@ -474,12 +474,12 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#' + url,
|
||||
url: location.origin + '/#' + url + '?orderNo=' + that.$route.query.orderNo,
|
||||
pullRefresh: '1',
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: url
|
||||
path: url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -492,13 +492,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sign',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentStatus: '3',
|
||||
signType: that.signVal,
|
||||
baseEncryp: that.base64,
|
||||
@@ -524,14 +524,14 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#'+ url,
|
||||
url: location.origin + '/#'+ url + '?orderNo=' + that.$route.query.orderNo,
|
||||
pullRefresh: '1',
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path:
|
||||
url +'?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
this.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&saleInsuredInfo=' +
|
||||
@@ -551,12 +551,12 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#'+ url,
|
||||
url: location.origin + '/#'+ url + '?orderNo=' + that.$route.query.orderNo,
|
||||
pullRefresh: '1',
|
||||
backToFirst: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: url
|
||||
path: url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -881,7 +881,7 @@ export default {
|
||||
},
|
||||
async created() {
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: this.$route.query.orderNo
|
||||
}
|
||||
getOrderDetail(data).then(res => {
|
||||
if (res.result == '0') {
|
||||
|
||||
@@ -69,7 +69,7 @@ export default {
|
||||
[IndexBar.name]: IndexBar
|
||||
},
|
||||
created(){
|
||||
getOrderDetail({ orderNo: localStorage.orderNo }).then(res => {
|
||||
getOrderDetail({ orderNo: this.$route.query.orderNo }).then(res => {
|
||||
if (res.result == 0) {
|
||||
// let updateAnswerType = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
|
||||
// this.$store.commit('updateAnswerType', updateAnswerType )
|
||||
@@ -153,7 +153,7 @@ methods:{
|
||||
orderType: 'EVALUATION_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: this.$route.query.orderNo,
|
||||
},
|
||||
|
||||
riskEvaluationDTO:{
|
||||
@@ -172,10 +172,10 @@ methods:{
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/answerSuccess',
|
||||
url: location.origin + '/#/sale/answerSuccess?orderNo=' + this.$route.query.orderNo,
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/answerSuccess'
|
||||
path: '/sale/answerSuccess?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
@@ -64,7 +64,7 @@ export default {
|
||||
[CheckboxGroup.name]: CheckboxGroup,
|
||||
},
|
||||
created(){
|
||||
getOrderDetail({ orderNo: localStorage.orderNo }).then(res => {
|
||||
getOrderDetail({ orderNo: this.$route.query.orderNo }).then(res => {
|
||||
if (res.result == 0) {
|
||||
// let updateAnswerType = res.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
|
||||
// this.$store.commit('updateAnswerType', updateAnswerType )
|
||||
@@ -175,10 +175,10 @@ export default {
|
||||
that.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/AccountInformation'
|
||||
url: location.origin + '/#/sale/AccountInformation?orderNo=' + this.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/AccountInformation'
|
||||
path: '/sale/AccountInformation?orderNo=' + this.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@ export default {
|
||||
getOrderDetail() {
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail(data).then(res => {
|
||||
@@ -222,13 +222,13 @@ export default {
|
||||
orderType: that.changeCard ? 'SIGNNEW_ORDER' : 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo:that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -264,12 +264,12 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/SignatureConfirmation'
|
||||
url: location.origin + '/#/sale/SignatureConfirmation?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path:
|
||||
'/sale/signatureConfirmation?orderNo=' +
|
||||
localStorage.orderNo +
|
||||
that.$route.query.orderNo +
|
||||
'&token=' +
|
||||
localStorage.token +
|
||||
'&saleInsuredInfo=' +
|
||||
@@ -318,10 +318,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -352,13 +352,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.insuredSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.insuredSign.documentType,
|
||||
@@ -392,10 +392,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic'
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/SignatureOfElectronic'
|
||||
path: '/sale/SignatureOfElectronic?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -430,13 +430,13 @@ export default {
|
||||
orderType: that.changeCard ? 'SIGNNEW_ORDER' : 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.appntSign.documentType,
|
||||
@@ -485,11 +485,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url,
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
@@ -512,13 +512,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.insuredSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.insuredSign.documentCode,
|
||||
documentStatus: '1',
|
||||
documentType: that.insuredSign.documentType,
|
||||
@@ -552,11 +552,11 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic',
|
||||
url: location.origin + '/#/sale/SignatureOfElectronic' + '?orderNo=' + that.$route.query.orderNo,
|
||||
forbidSwipeBack: '1'
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/SignatureOfElectronic'
|
||||
path: '/sale/SignatureOfElectronic' + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@@ -219,7 +219,7 @@ export default {
|
||||
openLoading()
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
}
|
||||
return new Promise((resolve, reject) => {
|
||||
getOrderDetail1(data).then(res => {
|
||||
@@ -435,13 +435,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sms',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
signType: that.appntSign.signType,
|
||||
@@ -461,10 +461,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/InsuranceTip'
|
||||
url: location.origin + '/#/sale/InsuranceTip?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/InsuranceTip'
|
||||
path: '/sale/InsuranceTip?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
|
||||
@@ -490,13 +490,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'sms',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '3',
|
||||
signType: that.appntSign.signType,
|
||||
@@ -517,10 +517,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/InsuranceTip'
|
||||
url: location.origin + '/#/sale/InsuranceTip?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/InsuranceTip'
|
||||
path: '/sale/InsuranceTip?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -133,7 +133,7 @@ export default {
|
||||
openLoading()
|
||||
let that = this
|
||||
let data = {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$soute.query.orderNo
|
||||
}
|
||||
return new Promise((resolve) => {
|
||||
getOrderDetail1(data).then(res => {
|
||||
@@ -186,13 +186,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
signType: that.appntSign.signType,
|
||||
@@ -213,10 +213,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
@@ -241,13 +241,13 @@ export default {
|
||||
orderType: 'SIGN_ORDER',
|
||||
orderDTO: {
|
||||
orderInfoDTO: {
|
||||
orderNo: window.localStorage.getItem('orderNo')
|
||||
orderNo: that.$route.query.orderNo
|
||||
},
|
||||
ebizSignDTOS: [
|
||||
{
|
||||
signOrRead: 'read',
|
||||
signId: that.appntSign.signId,
|
||||
orderNo: window.localStorage.getItem('orderNo'),
|
||||
orderNo: that.$route.query.orderNo,
|
||||
documentCode: that.appntSign.documentCode,
|
||||
documentStatus: '1',
|
||||
signType: that.appntSign.signType,
|
||||
@@ -263,10 +263,10 @@ export default {
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
url: location.origin + '/#/sale/' + url
|
||||
url: location.origin + '/#/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
},
|
||||
routerInfo: {
|
||||
path: '/sale/' + url
|
||||
path: '/sale/' + url + '?orderNo=' + that.$route.query.orderNo
|
||||
}
|
||||
})
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user