|
|
|
@ -287,6 +287,9 @@ |
|
|
|
《<text class="atxt" @click="gotopage('prototal')">用户注册协议</text>》 |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<!-- 协议弹框 --> |
|
|
|
<whpop v-model="showPopup" :maskCloseAble="true" :mkey="murl"></whpop> |
|
|
|
|
|
|
|
<!-- 提交按钮 --> |
|
|
|
<view class="vf-button" @click="handleSubmit"> |
|
|
|
@ -310,14 +313,19 @@ |
|
|
|
import UCheckbox from "../../../uview-ui/components/u-checkbox/u-checkbox"; |
|
|
|
import UCheckboxGroup from "../../../uview-ui/components/u-checkbox-group/u-checkbox-group"; |
|
|
|
import { checkLogin,returnAccountId } from '@/core/app' |
|
|
|
|
|
|
|
import whpop from '../../login/components/WhPopup' |
|
|
|
|
|
|
|
// |
|
|
|
//const citydata = cityjson |
|
|
|
|
|
|
|
export default { |
|
|
|
components: {UCheckboxGroup, UCheckbox}, |
|
|
|
components: {UCheckboxGroup, UCheckbox, whpop}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
// 协议 |
|
|
|
showPopup: false, |
|
|
|
murl: '', |
|
|
|
// 银行卡类型选择 |
|
|
|
radio_check: '', |
|
|
|
// 机构简介 |
|
|
|
desc: "", |
|
|
|
@ -827,6 +835,14 @@ |
|
|
|
readpri() { |
|
|
|
this.isTick = true; |
|
|
|
}, |
|
|
|
/** |
|
|
|
* 阅读注册协议和隐私 |
|
|
|
*/ |
|
|
|
gotopage(str){ |
|
|
|
//this.$toast(str) |
|
|
|
this.murl = str |
|
|
|
this.showPopup = ! this.showPopup |
|
|
|
}, |
|
|
|
handleSubmit() { |
|
|
|
|
|
|
|
const app = this |
|
|
|
|