perry-mall/pages/login/agreement.vue

42 lines
816 B
Vue
Raw Normal View History

2022-02-12 11:33:47 +00:00
<template>
<view>
2022-02-23 11:08:25 +00:00
<!-- 状态栏 -->
<status-nav
:ifTitle="true"
:ifReturn="true"
:ifCenter="true"
:navBarTitle="'登录'"></status-nav>
<!-- 容器 -->
<container-subgroup>
2022-02-24 03:21:51 +00:00
<view slot="content">
<rich-text :nodes="content"></rich-text>
</view>
2022-02-23 11:08:25 +00:00
</container-subgroup>
2022-02-12 11:33:47 +00:00
</view>
</template>
<script>
export default {
data(){
return {
content:'<p>1.用户协议谢谢洗诶诶黑货币的宁波</p>'
}
},
2022-02-25 09:24:06 +00:00
onLoad(options) {
if(uni.getStorageSync('phone_active')){
uni.removeStorageSync('transientUrl');
} else {
uni.setStorageSync('transientUrl',`/pages/login/agreement?invite_code=${options.invite_code}}`);
uni.navigateTo({
url:'/pages/login/login'
})
}
2022-02-12 11:33:47 +00:00
this.$toolAll.tools.escape2Html(this.content)
}
}
</script>
<style>
</style>