You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.1 KiB
75 lines
2.1 KiB
<template>
|
|
<view class="fwxy">
|
|
<view class="xyt">服务协议</view>
|
|
<view class="line"></view>
|
|
<view class="xyc">
|
|
<text class="text">欢迎使用微信支付付款码服务!</text>
|
|
<text class="text">
|
|
本协议由财付通支付科技有限公司(下称“财付通”)与您签订。在使用本服务前,您应阅读并接受本协议、《财付通服务协议》和《微信支付用户服务协议》 (下称“关联协议”)。财付通提醒您认真阅读并充分理解本协议和关联协议各条款,特别是免除、限制责任或权利条款、争议解决和法律适用条款。请您审慎阅读并选择是否接受本协议和关联协议(未成年人应在监护人陪同下阅读)。
|
|
</text>
|
|
<text class="text">
|
|
除非您接受本协议和关联协议所有条款,否则您无权使用本服务。您一经使用本服务即视为对本协议和关联协议的理解和接受。
|
|
</text>
|
|
|
|
<text class="text">
|
|
一、微信支付付款码服务
|
|
</text>
|
|
|
|
微信支付付款码服务,指您在微信客户端点击“我—钱包—收付款”或“微信—右上角‘+’—收付款”即可以获取付款条码(二维码、一维码),商家设备扫描您手机的付款条码(二维码、一维码)后,即可向财付通发起交易扣款请求,财付通有权在一定额度内无需校验您的支付密码、短信动态码或其他交易指令验证要素,即可从您的支付
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.fwxy{
|
|
min-height: 70vh;
|
|
margin: 10vh auto;
|
|
width: 78vw;
|
|
|
|
.xyt{
|
|
font-size: 46rpx;
|
|
font-weight: 800;
|
|
text-align: center;
|
|
line-height: 1.6;
|
|
}
|
|
.line{
|
|
border-bottom: 2rpx solid #666;
|
|
width: 100%;
|
|
height: 2rpx;
|
|
background-color: #666;
|
|
margin:16rpx 20rpx 16rpx;
|
|
|
|
}
|
|
.xyc{
|
|
font-size: 32rpx;
|
|
line-height: 1.4;
|
|
color: #666;
|
|
overflow: auto;
|
|
|
|
// auto换行
|
|
word-wrap: break-word;
|
|
white-space: normal;
|
|
|
|
text-indent: 120rpx;
|
|
padding: 32rpx;
|
|
|
|
.text{
|
|
line-height: 1.4;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|