first commit
This commit is contained in:
66
pages/protocol/mianze.vue
Normal file
66
pages/protocol/mianze.vue
Normal 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>
|
||||
Reference in New Issue
Block a user