mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-12 18:26:43 +08:00
回执签收增加一个字段
This commit is contained in:
@@ -201,7 +201,8 @@ export default {
|
|||||||
let data = {
|
let data = {
|
||||||
contNo: window.localStorage.getItem('contNo'),
|
contNo: window.localStorage.getItem('contNo'),
|
||||||
baseEncryp: this.base64,
|
baseEncryp: this.base64,
|
||||||
pdfAddresss: window.localStorage.getItem('insurance-policyUrl')
|
pdfAddresss: window.localStorage.getItem('insurance-policyUrl'),
|
||||||
|
orderNo: localStorage.orderNo
|
||||||
}
|
}
|
||||||
|
|
||||||
submit(data).then(res => {
|
submit(data).then(res => {
|
||||||
@@ -683,6 +684,19 @@ export default {
|
|||||||
// // pdfurl: res.data.content.content
|
// // pdfurl: res.data.content.content
|
||||||
// })
|
// })
|
||||||
// 获取签名信息
|
// 获取签名信息
|
||||||
|
function repeat(func, times, wait) {
|
||||||
|
console.log(func)
|
||||||
|
// for (let i = 0; i < times; i++) {
|
||||||
|
// setTimeout(() => {
|
||||||
|
// if (typeof func == 'string') {
|
||||||
|
// alert(func)
|
||||||
|
// }
|
||||||
|
// }, wait)
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
repeat('123', 3, 1000)
|
||||||
|
// const repeatFunc = repeat(alert, 4, 3000)
|
||||||
|
// repeatFunc('helloWord')
|
||||||
},
|
},
|
||||||
beforeRouteLeave(to, from, next) {
|
beforeRouteLeave(to, from, next) {
|
||||||
document.body.style.backgroundColor = ''
|
document.body.style.backgroundColor = ''
|
||||||
|
|||||||
@@ -106,9 +106,8 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
let that = this
|
|
||||||
// 获取保单详情
|
// 获取保单详情
|
||||||
that.getPolicyDetail()
|
this.getPolicyDetail()
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
[Collapse.name]: Collapse,
|
[Collapse.name]: Collapse,
|
||||||
|
|||||||
@@ -57,8 +57,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="list flex justify-content-c align-items-c">
|
<div v-else class="list text-center">
|
||||||
<img :src="src" />
|
<img :src="src" />
|
||||||
|
<div class="mt20" v-if="errMessage != ''">{{ errMessage }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -76,7 +77,8 @@ export default {
|
|||||||
// 无数据时候显示
|
// 无数据时候显示
|
||||||
isShow: false,
|
isShow: false,
|
||||||
// 图片路径
|
// 图片路径
|
||||||
src: this.$assetsUrl + 'images/background.png'
|
src: this.$assetsUrl + 'images/background.png',
|
||||||
|
errMessage: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -118,6 +120,7 @@ export default {
|
|||||||
console.log(this.policyListDTOList)
|
console.log(this.policyListDTOList)
|
||||||
} else {
|
} else {
|
||||||
this.isShow = true
|
this.isShow = true
|
||||||
|
this.errMessage = res.resultMessage
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user