first commit

This commit is contained in:
PC-202306242200\Administrator
2026-03-28 23:27:25 +08:00
commit 85b89ccea7
1694 changed files with 168292 additions and 0 deletions

66
pages/protocol/mianze.vue Normal file
View File

@@ -0,0 +1,66 @@
<template>
<view class="xkl-com-bg">
<view style="height: 20rpx;"></view>
<view style="font-size: 34rpx;font-weight: 700; text-align: center;">免责声明</view>
<view style="height: 20rpx;"></view>
<view style="line-height: 46rpx;">
<view style="text-indent: 2em;">
所有参与本次活动的人员务必认真阅读活动协议文件在活动内容选定并提交后即被默认为已阅读理解并同意遵守活动过程所需遵守的一切内容并签署免责声明
</view>
<view style="text-indent: 2em;">
作为此次活动参与者我本人以及其他任何可能代表我本人提起赔偿请求或诉讼的人做出以下声明
</view>
<view style="text-indent: 2em;">
1我自愿参加本次活动并确认本人具有参加本次活动相应的民事行为能力和民事责任能力
</view>
<view style="text-indent: 2em;">
2我确认全面理解并自愿遵守与活动组织方签订的协议并保证不挪用活动方每月支付的月供资金如挪用则相关损失由自己承担
</view>
<view style="text-indent: 2em;">
3我将向活动组织方提供身份证信息及银行账户信息用于核实本人身份及购买车辆事宜保证提交的身份证信息及银行账户信息真实有效并承担因提供不实信息所产生的全部责任由此产生的损失自行承担
</view>
<view style="text-indent: 2em;">
4我本人确认已对活动组织方的协议内容详细阅读并已充分了解并承诺自愿履行上述协议因本人没有如实提供身份信息及其他必须提供的资料引起的损失及纠纷相关责任由本人自行承担
</view>
</view>
<view style="height: 50rpx;"></view>
<u-button type="primary" @click="submit(1)">我已阅读并同意免责声明</u-button>
<view style="height: 50rpx;"></view>
<u-button @click="submit(0)">取消</u-button>
<view style="height: 100rpx;"></view>
</view>
</template>
<script>
let self;
export default {
data() {
return {
shopinfo: {
username: '',
mobile: ''
}
}
},
onLoad() {
self = this;
self.shopinfo = self.$store.state.auth.user;
},
methods: {
submit(status) {
// self.$http.get('/shop/v10/user/trusteeship', {
// status: status
// }).then(res => {
// self.$store.commit('auth/setUser', res.data);
// uni.navigateBack();
// })setBuy
self.$store.commit('policy/setMianze', status);
uni.navigateBack();
},
}
}
</script>
<style lang="scss">
</style>