小欧追 1 năm trước cách đây
mục cha
commit
886e4e4cd9
2 tập tin đã thay đổi với 59 bổ sung27 xóa
  1. 1 1
      pages/login/change-gongsi.vue
  2. 58 26
      pages/login/perfect.vue

+ 1 - 1
pages/login/change-gongsi.vue

@@ -4,7 +4,7 @@
 		<image style="position: fixed;top: 0;left: 0;width: 750rpx;height: 100vh;z-index: -1;" src="../../static/img/group.png" mode=""></image>
 		<view class="u-flex-col" style="padding: 96rpx;">
 			<text style="font-size: 56rpx;font-weight: 500;">你好,</text>
-			<text style="font-size: 32rpx;">欢迎使用病例评比</text>
+			<text style="font-size: 32rpx;">欢迎使用病例收集及调研问卷项目</text>
 		</view>
 		<view @click="show = true" class="u-flex u-row-between" style="margin: 200rpx 96rpx;height: 100rpx;border-bottom: 2rpx solid rgba(0, 0, 0, 0.08);">
 			<input :disabled="true" v-model="gongsiname" type="text" placeholder="请选择公司" class="u-flex-1" style="font-size: 28rpx;">

+ 58 - 26
pages/login/perfect.vue

@@ -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: '请输入正确手机号的格式',