|
@@ -66,7 +66,7 @@
|
|
|
</view>
|
|
|
<view class="updata">
|
|
|
<view class="text">请上传医师执照或工牌照片 </view>
|
|
|
- <u-upload ref="uUpload1" :show-progress="false" :file-list="fileList" @on-change="progress1" :action="action" max-count="1"></u-upload>
|
|
|
+ <u-upload ref="uUpload1" :show-progress="false" :file-list="fileList" @on-change="progress1" :action="action" max-count="1" @on-choose-fail="uploaderror"></u-upload>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="u-flex u-row-center" style="margin-top: 40rpx;" v-if="yzh == 1">
|
|
@@ -98,6 +98,17 @@
|
|
|
<view class="btn_con">完成</view>
|
|
|
</view>
|
|
|
<u-verification-code :seconds="seconds" ref="uCode" @change="codeChange"></u-verification-code>
|
|
|
+ <u-popup v-model="show" mode="center" borderRadius="20">
|
|
|
+ <view style="width: 600rpx;padding: 24rpx;">
|
|
|
+ <view style="font-size: 34rpx;margin: 30rpx 0;">
|
|
|
+ 在你使用【选择图片】服务之前,请仔细阅读 <text style="color: #0086EC;">《用户隐私保护指引》</text>。如你同意《用户隐私保护指引》,请点击 “同意”开始使用。
|
|
|
+ </view>
|
|
|
+ <view class="u-flex u-row-between">
|
|
|
+ <button id="disagree-btn" style="width: 200rpx;" open-type="agreePrivacyAuthorization" @click="handleDisagree">不同意</button>
|
|
|
+ <button style="width: 200rpx;" open-type="agreePrivacyAuthorization" @agreeprivacyauthorization="tongyi" type="primary">同意</button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </u-popup>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -142,19 +153,33 @@
|
|
|
// refCode: null,
|
|
|
seconds: 60,
|
|
|
ref: '',
|
|
|
- xieyipdf: ''
|
|
|
+ xieyipdf: '',
|
|
|
+ show: false
|
|
|
}
|
|
|
},
|
|
|
onLoad(option) {
|
|
|
this.action = this.$httpUrl + '/api/uploadLocality'
|
|
|
this.getUserInfo()
|
|
|
-
|
|
|
-
|
|
|
- this.$http.agreeUserAgreement().then(res => {
|
|
|
-
|
|
|
+ wx.onNeedPrivacyAuthorization(resolve => {
|
|
|
+ // 需要用户同意隐私授权时
|
|
|
+ // 弹出开发者自定义的隐私授权弹窗
|
|
|
+ console.log(resolve);
|
|
|
+ this.show = true
|
|
|
+ this.resolvePrivacyAuthorization = resolve
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
|
+ // 不同意按钮逻辑
|
|
|
+ handleDisagree(e) {
|
|
|
+ //与小游戏reportPrivacyAuthorization接口类似,不过需要声明buttonId变量为对应的组件id
|
|
|
+ resolvePrivacyAuthorization({ buttonId: 'disagree-btn', event: 'disagree' })
|
|
|
+ },
|
|
|
+ tongyi(e) {
|
|
|
+ this.show = false
|
|
|
+ },
|
|
|
+ uploaderror(e) {
|
|
|
+ // this.show = true
|
|
|
+ },
|
|
|
toxieyi() {
|
|
|
if (this.xieyipdf) {
|
|
|
uni.openDocument({
|
|
@@ -179,6 +204,10 @@
|
|
|
this.tips = text;
|
|
|
},
|
|
|
getCode() {
|
|
|
+ if (!this.name) {
|
|
|
+ this.$u.toast('请输入姓名')
|
|
|
+ return
|
|
|
+ }
|
|
|
if (!this.backCard) {
|
|
|
this.$u.toast('请输入银行卡号')
|
|
|
return
|
|
@@ -192,7 +221,7 @@
|
|
|
files1 = this.$refs.uUpload1.lists.filter(val => {
|
|
|
return val.progress == 100;
|
|
|
})
|
|
|
- // console.log(files1)
|
|
|
+ console.log(files1)
|
|
|
let values = []
|
|
|
if (files1.length != 0) {
|
|
|
files1.forEach(val => {
|
|
@@ -203,22 +232,22 @@
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
- if (values.length == 0) {
|
|
|
- this.$u.toast('请上传证件照')
|
|
|
- return;
|
|
|
- }
|
|
|
+ // if (values.length == 0) {
|
|
|
+ // this.$u.toast('请上传证件照')
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
if (!this.cardholderPhone) {
|
|
|
this.$u.toast('请输入银行预留手机号')
|
|
|
return
|
|
|
}
|
|
|
- if (!this.dwname) {
|
|
|
- this.$u.toast('请输入单位名称')
|
|
|
- return;
|
|
|
- }
|
|
|
- if (!this.ksname) {
|
|
|
- this.$u.toast('请输入科室名称')
|
|
|
- return;
|
|
|
- }
|
|
|
+ // if (!this.dwname) {
|
|
|
+ // this.$u.toast('请输入单位名称')
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
+ // if (!this.ksname) {
|
|
|
+ // this.$u.toast('请输入科室名称')
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
if (this.$refs.uCode.canGetCode) {
|
|
|
// 模拟向后端请求验证码
|
|
|
uni.showLoading({
|
|
@@ -292,7 +321,10 @@
|
|
|
}
|
|
|
this.$http.agreeUserAgreement()
|
|
|
}
|
|
|
-
|
|
|
+ if (!this.name) {
|
|
|
+ this.$u.toast('请输入姓名')
|
|
|
+ return
|
|
|
+ }
|
|
|
if (!this.backCard) {
|
|
|
this.$u.toast('请输入银行卡号')
|
|
|
return
|
|
@@ -333,13 +365,13 @@
|
|
|
this.$u.toast('请输入科室名称')
|
|
|
return;
|
|
|
}
|
|
|
- if(this.yzh == 1){
|
|
|
- if (!this.code) {
|
|
|
- this.$u.toast('请输入验证码')
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (this.yzh == 1) {
|
|
|
+ if (!this.code) {
|
|
|
+ this.$u.toast('请输入验证码')
|
|
|
+ return;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// if(!this.$checkMobile(this.phone)){
|
|
|
// this.$refs.uToast.show({
|
|
|
// title: '请输入正确手机号的格式',
|