Browse Source

认证协议

master
wanghongjun 2 years ago
parent
commit
2bc148ad1f
  1. 18
      pages/user/mycertinfo/orgverify.vue

18
pages/user/mycertinfo/orgverify.vue

@ -288,6 +288,9 @@
</view>
</view>
<!-- 协议弹框 -->
<whpop v-model="showPopup" :maskCloseAble="true" :mkey="murl"></whpop>
<!-- 提交按钮 -->
<view class="vf-button" @click="handleSubmit">
<text>提交认证</text>
@ -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

Loading…
Cancel
Save