uu
This commit is contained in:
parent
e01e6e31b3
commit
49a953aee9
@ -19,7 +19,7 @@
|
|||||||
</u-row>
|
</u-row>
|
||||||
<u-text margin="10rpx 0 0 0" text="温馨提示:具体费用以快递小哥核实为准" color="#999" size="26"></u-text>
|
<u-text margin="10rpx 0 0 0" text="温馨提示:具体费用以快递小哥核实为准" color="#999" size="26"></u-text>
|
||||||
</view>
|
</view>
|
||||||
<buns-privacy-dialog v-model:show="privacyModal.show"> </buns-privacy-dialog>
|
<buns-privacy-dialog v-model:show="privacyModal.show" :content="privacyModal.content" title="快件运单契约条款"> </buns-privacy-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -66,7 +66,7 @@
|
|||||||
methods: {
|
methods: {
|
||||||
async initData(){
|
async initData(){
|
||||||
let res = await apiService.getAgreementTxt()
|
let res = await apiService.getAgreementTxt()
|
||||||
debugger
|
this.privacyModal.content = res?.data || ''
|
||||||
},
|
},
|
||||||
handleAgree() {
|
handleAgree() {
|
||||||
this.modelInfo._agreePrivacy = !this.modelInfo._agreePrivacy
|
this.modelInfo._agreePrivacy = !this.modelInfo._agreePrivacy
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<tpx-dialog type="type-dialog" :show="show" title="快件运单契约条款" @onClose="handleCloseModal()">
|
<tpx-dialog type="type-dialog" :show="show" :title="title" @onClose="handleCloseModal()">
|
||||||
<view style="position: relative;height: calc(70vh); width: 600rpx;">
|
<view style="position: relative;height: calc(70vh); width: 600rpx;">
|
||||||
<tpx-layout>
|
<tpx-layout>
|
||||||
<template v-slot:body>
|
<template v-slot:body>
|
||||||
@ -36,20 +36,19 @@
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
value: {
|
content: {
|
||||||
default () {
|
default () {
|
||||||
return ``
|
return ``
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
title: {
|
||||||
|
default () {
|
||||||
|
return ``
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
content: `
|
|
||||||
《快件服务协议》是探路物流与寄件人《以下简称"您”或“用户”)之间达成的快件寄递服务合同,附则、远单、隐私政策及京东物流发布的各类规则、服务细则、说明、通知等为《快件服务协议》有效组成部分(以下统称为“本协议”),本协议在您下电子运单前通过勾选的形式在线签署。在线签署并下单后,即表示您已接受协议的全部内容,在您与探路物流间发生法律效力。
|
|
||||||
<p>露从今夜白,月是故乡明</p>
|
|
||||||
<p>请您在务必仔细阅读</p>
|
|
||||||
请您在务必仔细阅读、充分理解后再决定勾选并下单尤其是以粗体、红色字体或下划线等方式标识的条款因这些条款可能会明确您应履行的义务或对您的权利有所限制。若您不同意本协议全部或任何内容,您应停止使用寄快递服务。如您对协议内容有任何疑问,您可随时通过京东物流官方网站或拔打京东物流客服热线。
|
|
||||||
`
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user