小欧追 1 year ago
parent
commit
da2511eda9

+ 16 - 0
https/http.js

@@ -46,4 +46,20 @@ export default {
 	// 获取隐私政策
 	getPrivacy(data){ return http('/api/getPrivacy' , "POST" , data) },
 	
+	// 获取登录人公司
+	getCompName(data){ return http('/api/getCompName' , "GET" , data) },
+	// 勾选个人公司
+	setCompNameTrue(data){ return http('/api/setCompNameTrue' , "GET" , data) },
+	// 获取用户签约状态
+	getApiUserSignStatus(data){ return http('/api/getApiUserSignStatus' , "GET" , data) },
+	// 获取签约协议
+	getUserAgreement(data){ return http('/api/getUserAgreement' , "GET" , data) },
+	// 签署协议
+	agreeUserAgreement(data){ return http('/api/agreeUserAgreement' , "GET" , data) },
+	// 四要素验证(下发验证码)
+	perfectInformation(data){ return http('/api/perfectInformation' , "POST" , data) },
+	// 完善个人信息
+	perfectInformationUpload(data){ return http('/api/perfectInformationUpload' , "POST" , data) },
+	// 小程序转账列表
+	transList(data){ return http('/api/transList' , "GET" , data) },
 }

+ 2 - 2
https/url.js

@@ -1,3 +1,3 @@
-// const baseUrl = 'https://binglitwo.hdlkeji.com/' //测试环境
-const baseUrl = 'https://admin2.speacemedblxm.cn/' //正式
+const baseUrl = 'https://binglitwo.hdlkeji.com/' //测试环境
+// const baseUrl = 'https://admin2.speacemedblxm.cn/' //正式
 export { baseUrl }

+ 1 - 1
main.js

@@ -40,7 +40,7 @@ Vue.mixin({
 			let curRoute = routes[routes.length - 1].route //获取当前页面路由
 			console.log(curRoute)
 			if(!uni.getStorageSync('token')){
-				if(!(curRoute == 'pages/login/login' || curRoute == 'pages/login/agreement' || curRoute == 'pages/login/forget' || curRoute == 'pages/login/perfect')){
+				if(!(curRoute == 'pages/login/login' || curRoute == 'pages/login/agreement' || curRoute == 'pages/login/forget' || curRoute == 'pages/login/perfect' || curRoute == 'pages/login/change-gongsi')){
 					uni.reLaunch({
 						url: '/pages/login/login'
 					});

+ 13 - 0
pages.json

@@ -30,6 +30,12 @@
 			}
 		},
 		{
+			"path": "pages/index/jilu",
+			"style": {
+				"navigationBarTitleText": "转账记录"
+			}
+		},
+		{
 			"path": "pages/index/wenjuan",
 			"style": {
 				"navigationBarTitleText": "问卷调查"
@@ -86,6 +92,13 @@
 			}
 		},
 		{
+			"path": "pages/login/change-gongsi",
+			"style": {
+				"navigationBarTitleText": "选择公司",
+				"navigationStyle":"custom"
+			}
+		},
+		{
 			"path": "pages/login/perfect",
 			"style": {
 				"navigationBarTitleText": "完善信息",

+ 86 - 81
pages/index/index.vue

@@ -1,81 +1,86 @@
-<template>
-	<view class="index">
-		<view class="headImg">
-			<image :src="data.bjt" mode=""></image>
-		</view>
-		<view class="con" v-html="xmjs">
-			111
-		</view>
-		<tabBar :pagePath="'/pages/index/index'"></tabBar>
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-			data:{},
-			current: 0,
-			list: [
-				
-			  ],
-			xmjs:''
-			}
-		},
-		onLoad(option) {
-			this.configInfo()
-			this.getUserInfo()
-		},
-		methods: {
-			getUserInfo(){
-				this.$http.getUserInfo()
-				.then(res=>{
-					if(res.data.code==200){
-						// 是否信息完整
-						if(res.data.result.completeInformation != 2){
-							uni.navigateTo({
-							  url: '/pages/login/perfect',
-							})
-						}
-					}
-				})
-			},
-			configInfo(){
-				this.$http.configInfo()
-				.then(res=>{
-					if(res.data.code==200){
-						console.log(res)
-						this.data=res.data.result
-						let str = res.data.result.xmjs
-						this.xmjs = str.replace(/\<img/gi, '<img style="max-width:100%;height:auto" ').replace(/\<p>/gi, '<p style="word-break:break-all;">');
-						// console.log(this.data)
-					}
-				})
-			},
-			onChange(index) {
-			      uniLinkTo(this.vuex_tab_page[index], 'tab')
-			    }
-		}
-	}
-</script>
-
-<style lang="scss">
-	.index{
-		padding-bottom: 120rpx;
-		.headImg{
-			width: 100%;
-			height: 350rpx;
-			image{
-				width: 100%;
-				height: 100%;
-			}
-		}
-		.con{
-			width:680rpx;
-			margin: 24rpx auto;
-			padding:32rpx;
-			background-color: #fff;
-			border-radius: 24rpx;
-		}
-	}
-</style>
+<template>
+	<view class="index">
+		<view class="headImg">
+			<image :src="data.bjt" mode=""></image>
+		</view>
+		<view class="con" v-html="xmjs">
+			111
+		</view>
+		<tabBar :pagePath="'/pages/index/index'"></tabBar>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				data: {},
+				current: 0,
+				list: [
+
+				],
+				xmjs: ''
+			}
+		},
+		onLoad(option) {
+			this.configInfo()
+			this.getUserInfo()
+		},
+		methods: {
+			getUserInfo() {
+				this.$http.getUserInfo().then(res => {
+					if (res.data.code == 200) {
+						// 是否信息完整
+						if (res.data.result.completeInformation != 2) {
+							// uni.navigateTo({
+							// 	url: '/pages/login/perfect',
+							// })
+							uni.reLaunch({
+								url: '/pages/login/login'
+							});
+						}
+					}
+				})
+			},
+			configInfo() {
+				this.$http.configInfo()
+					.then(res => {
+						if (res.data.code == 200) {
+							console.log(res)
+							this.data = res.data.result
+							let str = res.data.result.xmjs
+							this.xmjs = str.replace(/\<img/gi, '<img style="max-width:100%;height:auto" ').replace(/\<p>/gi, '<p style="word-break:break-all;">');
+							// console.log(this.data)
+						}
+					})
+			},
+			onChange(index) {
+				uniLinkTo(this.vuex_tab_page[index], 'tab')
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+	.index {
+		padding-bottom: 120rpx;
+
+		.headImg {
+			width: 100%;
+			height: 350rpx;
+
+			image {
+				width: 100%;
+				height: 100%;
+			}
+		}
+
+		.con {
+			width: 680rpx;
+			margin: 24rpx auto;
+			padding: 32rpx;
+			background-color: #fff;
+			border-radius: 24rpx;
+		}
+	}
+</style>

+ 42 - 0
pages/index/jilu.vue

@@ -0,0 +1,42 @@
+<template>
+	<view class="">
+		<view v-for="(item,index) in list" :key="index" class="u-flex u-row-between" style="height: 126rpx;border-bottom: 2rpx solid #F8F8FB;padding: 0 32rpx;background-color: #fff;">
+			<view class="u-flex-col">
+				<text style="font-size: 28rpx;color: #666666;margin-bottom: 4rpx;">{{item.statusMessage}}</text>
+				<text style="font-size: 24rpx;color: #666666;">{{item.finishedTime}}</text>
+			</view>
+			<view style="font-size: 32rpx;color: #333333;">¥{{item.brokerAmount}}</view>
+		</view>
+		<view style="height: 80vh;" v-if="list.length == 0" class="u-flex-col u-col-center u-row-center">
+			<image style="width: 176rpx;height: 176rpx;margin-bottom: 40rpx;" src="../../static/img/jilu-not.png" mode=""></image>
+			<text style="font-size: 28rpx;color: #CCCCCC;">您当前还没有</text>
+			<text style="font-size: 28rpx;color: #CCCCCC;">转账记录</text>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				page: 1,
+				list: []
+			}
+		},
+		onLoad() {
+			this.getdata()
+		},
+		methods: {
+			getdata() {
+				this.$http.transList({
+					pageNo: this.page
+				}).then(res => {
+					this.list = this.list.concat(res.data.result.records)
+				})
+			}
+		}
+	}
+</script>
+
+<style lang="scss">
+</style>

+ 172 - 154
pages/index/my.vue

@@ -1,157 +1,175 @@
-<template>
-	<view class="my">
-		<u-navbar back-text=" " title=" " :background="{backgroundColor: 'transparent'}"></u-navbar>
-		<image class="myBGC" src="../../static/img/myBGC.png" mode=""></image>
-		<view class="info flex">
-			<view class="text">
-				<view class="name">
-					{{data.name}}
-				</view>
-				<view>{{data.dwname}}</view>
-			</view>
-			<image :src="data.avatar" mode=""></image>
-		</view>
-		<view class="con" >
-			<view class="li flex">
-				<view class="label">科室名称</view>
-				<text>{{data.ksname}}</text>				
-			</view>
-			<view class="li flex">
-				<view class="label">联系方式</view>
-				<text>{{data.phone}}</text>				
-			</view>
-			<view class="li flex">
-				<view class="label">身份证号</view>
-				<text>{{data.card}}</text>				
-			</view>
-			<!-- <view class="li flex">
-				<view class="label">本月问卷提交次数</view>
-				<text>{{count}}</text>				
-			</view> -->
-		</view>
-		<view class="con" >
-			<view class="li flex" @click="password()">
-				<image src="../../static/img/my1.png" mode=""></image>
-				<text>修改密码</text>				
-			</view>
-			<view class="li flex" @click="out()">
-				<image src="../../static/img/my2.png" mode=""></image>
-				<text>退出登录</text>				
-			</view>
-		</view>
-		<u-modal v-model="show" @confirm="confirm" :show-cancel-button="true" @cancel="cancel" content="您确定要退出登录状态吗?"></u-modal>
-		<tabBar :pagePath="'/pages/index/my'"></tabBar>
-	</view>
-</template>
-
-<script>
-	export default {
-		data() {
-			return {
-				show:false,
-				data:{},
-				// count:0
-			}
-		},
-		onLoad(option) {
-			this.getUserInfo()
-		},
-		// onShow() {
-		// 	this.$http.getTopicNum().then(res => {
-		// 		this.count = res.data.result
-		// 	})
-		// },
+<template>
+	<view class="my">
+		<u-navbar back-text=" " title=" " :background="{backgroundColor: 'transparent'}"></u-navbar>
+		<image class="myBGC" src="../../static/img/myBGC.png" mode=""></image>
+		<view class="info flex">
+			<view class="text">
+				<view class="name">
+					{{data.name}}
+				</view>
+				<view>{{data.dwname}}</view>
+			</view>
+			<image :src="data.avatar" mode=""></image>
+		</view>
+		<view class="con">
+			<view class="li flex">
+				<view class="label">科室名称</view>
+				<text>{{data.ksname}}</text>
+			</view>
+			<view class="li flex">
+				<view class="label">联系方式</view>
+				<text>{{data.phone}}</text>
+			</view>
+			<view class="li flex">
+				<view class="label">身份证号</view>
+				<text>{{data.card ? data.card.replace(/(\d{6})\d{8}(\d{4})/, '$1********$2') : ''}}</text>
+			</view>
+			<!-- <view class="li flex">
+				<view class="label">本月问卷提交次数</view>
+				<text>{{count}}</text>				
+			</view> -->
+		</view>
+		<view class="con">
+			<view class="li flex" @click="tozhuanzhang()" v-if="data.yzh == 1">
+				<image src="../../static/img/zhuanzhang.png" mode=""></image>
+				<text>转账记录</text>
+			</view>
+			<view class="li flex" @click="password()">
+				<image src="../../static/img/my1.png" mode=""></image>
+				<text>修改密码</text>
+			</view>
+			<view class="li flex" @click="out()">
+				<image src="../../static/img/my2.png" mode=""></image>
+				<text>退出登录</text>
+			</view>
+		</view>
+		<u-modal v-model="show" @confirm="confirm" :show-cancel-button="true" @cancel="cancel" content="您确定要退出登录状态吗?"></u-modal>
+		<tabBar :pagePath="'/pages/index/my'"></tabBar>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				show: false,
+				data: {},
+				// count:0
+			}
+		},
+		onLoad(option) {
+			this.getUserInfo()
+		},
+		// onShow() {
+		// 	this.$http.getTopicNum().then(res => {
+		// 		this.count = res.data.result
+		// 	})
+		// },
 		methods: {
-			password(){
+			tozhuanzhang(){
 				uni.navigateTo({
-				  url: '/pages/user/password',
+					url:"/pages/index/jilu"
 				})
-			},
-			out(){
-				this.show = true
-			},
-			confirm(){
-				uni.removeStorageSync('token');
-				uni.reLaunch({
-					url: '/pages/login/login'
-				});
-			},
-			cancel(){
-				this.show = false
-			},
-			getUserInfo(){
-				this.$http.getUserInfo().then(res=>{
-					if(res.data.code==200){
-						console.log(res)
-						this.data=res.data.result
-						// console.log(this.data)
-					}
-				})
-			},
-
-		}
-	}
-</script>
-
-<style lang="scss">
-	.my{
-		height: 100%;
-		position: relative;
-		background: #F5F8FF;
-		.myBGC{
-			position: absolute;
-			width: 100%;
-			top: 0;
-			height: 600rpx;
-		}
-		.info{
-			position: relative;
-			z-index: 1;
-			width:680rpx;
-			margin: 24rpx auto;
-			.text{
-				flex: 1;
-				color: rgba(0,0,0,0.6);
-				font-size: 28rpx;
-				.name{
-					font-size: 44rpx;
-					font-family: PingFang SC-Semibold, PingFang SC;
-					font-weight: 600;
-					color: rgba(0,0,0,0.8);
-					margin-bottom: 10rpx;
-				}
-			}
-			image{
-				width: 120rpx;
-				height: 120rpx;
-				opacity: 1;
-				border: 1px solid #FFFFFF;
-				border-radius: 50%;
-				box-shadow: 0px 0px 20rpx 0px rgba(0,0,0,0.05), inset 0px 2rpx 2rpx 0px rgba(255,255,255,0.25);
-			}
-		}
-		.con{
-			z-index: 1;
-			position: relative;
-			width:680rpx;
-			margin: 24rpx auto;
-			padding: 32rpx 32rpx 0;
-			background: linear-gradient(180deg, #F2F9FB 0%, #FFFFFF 100%);
-			box-shadow: 0px 0px 20rpx 0px rgba(0,0,0,0.05), inset 0px 2rpx 2rpx 0px rgba(255,255,255,0.25);
-			border-radius: 24rpx;
-			.li{
-				padding-bottom: 32rpx;
-				font-size: 28rpx;
-				color: rgba(0,0,0,0.6);
-				.label{
-					margin-right: 20rpx;
-				}
-				image{
-					width: 40rpx;
-					height: 40rpx;
-					margin-right: 20rpx;
-				}
-			}
-		}
-	}
-</style>
+			},
+			password() {
+				uni.navigateTo({
+					url: '/pages/user/password',
+				})
+			},
+			out() {
+				this.show = true
+			},
+			confirm() {
+				uni.removeStorageSync('token');
+				uni.reLaunch({
+					url: '/pages/login/login'
+				});
+			},
+			cancel() {
+				this.show = false
+			},
+			getUserInfo() {
+				this.$http.getUserInfo().then(res => {
+					if (res.data.code == 200) {
+						console.log(res)
+						this.data = res.data.result
+						// console.log(this.data)
+					}
+				})
+			},
+
+		}
+	}
+</script>
+
+<style lang="scss">
+	.my {
+		height: 100%;
+		position: relative;
+		background: #F5F8FF;
+
+		.myBGC {
+			position: absolute;
+			width: 100%;
+			top: 0;
+			height: 600rpx;
+		}
+
+		.info {
+			position: relative;
+			z-index: 1;
+			width: 680rpx;
+			margin: 24rpx auto;
+
+			.text {
+				flex: 1;
+				color: rgba(0, 0, 0, 0.6);
+				font-size: 28rpx;
+
+				.name {
+					font-size: 44rpx;
+					font-family: PingFang SC-Semibold, PingFang SC;
+					font-weight: 600;
+					color: rgba(0, 0, 0, 0.8);
+					margin-bottom: 10rpx;
+				}
+			}
+
+			image {
+				width: 120rpx;
+				height: 120rpx;
+				opacity: 1;
+				border: 1px solid #FFFFFF;
+				border-radius: 50%;
+				box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.05), inset 0px 2rpx 2rpx 0px rgba(255, 255, 255, 0.25);
+			}
+		}
+
+		.con {
+			z-index: 1;
+			position: relative;
+			width: 680rpx;
+			margin: 24rpx auto;
+			padding: 32rpx 32rpx 0;
+			background: linear-gradient(180deg, #F2F9FB 0%, #FFFFFF 100%);
+			box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.05), inset 0px 2rpx 2rpx 0px rgba(255, 255, 255, 0.25);
+			border-radius: 24rpx;
+
+			.li {
+				padding-bottom: 32rpx;
+				font-size: 28rpx;
+				color: rgba(0, 0, 0, 0.6);
+
+				.label {
+					margin-right: 20rpx;
+				}
+
+				image {
+					width: 40rpx;
+					height: 40rpx;
+					margin-right: 20rpx;
+				}
+			}
+		}
+	}
+</style>

+ 19 - 2
pages/login/agreement.vue

@@ -8,13 +8,30 @@
 	export default {
 		data() {
 			return {
-				data: ''
+				data: '',
+				type: 0
 			}
 		},
 		onLoad(option) {
-			this.configInfo()
+			this.type = option.type
+			if (option.type == 1) {
+				this.geixieyi()
+			} else {
+				this.configInfo()
+			}
 		},
 		methods: {
+			geixieyi() {
+				// this.$http.getUserAgreement().then(res => {
+				// 	uni.openDocument({
+				// 		filePath: res.data.result.url,
+				// 		fileType:'pdf',
+				// 		fail: (e) => {
+				// 			console.log(e);
+				// 		}
+				// 	})
+				// })
+			},
 			configInfo() {
 				this.$http.getPrivacy().then(res => {
 					if (res.data.code == 200) {

+ 96 - 0
pages/login/change-gongsi.vue

@@ -0,0 +1,96 @@
+<template>
+	<view class="change-gongsi">
+		<u-navbar :background="{background:'rgba(0,0,0,0)'}" :border-bottom="false" :is-fixed="false"></u-navbar>
+		<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>
+		</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;">
+			<u-icon name="arrow-down-fill"></u-icon>
+		</view>
+		<view class="" @click="next" style="line-height: 80rpx;background: #167FFF;border-radius: 40rpx;text-align: center;font-size: 28rpx;color: #FFFFFF;width: 558rpx;margin: 0 auto;">
+			下一步
+		</view>
+		<u-select v-model="show" label-name="compName" value-name="id" :list="list" @confirm="confirm"></u-select>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				show: false,
+				list: [],
+				gongsiname: '',
+				gongsivalue: '',
+				type: 1
+			}
+		},
+		onLoad(option) {
+			this.type = option.type
+			this.getdata()
+		},
+		methods: {
+			getdata() {
+				this.$http.getCompName({
+					type: this.type
+				}).then(res => {
+					this.list = res.data.result
+				})
+			},
+			next() {
+				if (!this.gongsiname || !this.gongsivalue) {
+					this.$u.toast('请选择公司')
+					return
+				}
+				uni.showLoading({
+					mask: true,
+					title: '请稍后'
+				})
+				this.$http.setCompNameTrue({
+					id: this.gongsivalue
+				}).then(res => {
+					uni.hideLoading()
+
+					if (res.data.code == 200) {
+						this.$u.toast("切换成功")
+						setTimeout(() => {
+							this.getUserInfo()
+						}, 800)
+					} else {
+						this.$u.toast(res.data.message)
+					}
+				})
+			},
+			confirm(e) {
+				this.gongsiname = e[0].label
+				this.gongsivalue = e[0].value
+			},
+			getUserInfo() {
+				this.$http.getUserInfo().then(res => {
+					if (res.data.code == 200) {
+						// 是否信息完整
+						uni.setStorageSync('doctorAndSpecialist', res.data.result.doctorAndSpecialist);
+						if (res.data.result.completeInformation != 2) {
+							uni.navigateTo({
+								url: '/pages/login/perfect',
+							})
+						} else {
+							uni.reLaunch({
+								url: '/pages/index/index',
+							})
+						}
+					}else{
+						this.$u.toast(res.data.message)
+					}
+				})
+			},
+		}
+	}
+</script>
+
+<style lang="scss">
+	.change-gongsi {}
+</style>

+ 30 - 29
pages/login/login.vue

@@ -82,36 +82,37 @@
 					})
 					return;
 				}
-				this.$http.passwordLogin({ sf: parseFloat(this.current) + 1, phone: this.phone, password: this.password })
-					.then(res => {
-						if (res.data.code == 200) {
-							uni.setStorageSync('token', res.data.result.token);
-							this.getUserInfo()
-						} else {
-							this.$refs.uToast.show({
-								title: res.data.message,
-								type: 'error ',
-							})
-						}
-					})
+				this.$http.passwordLogin({ sf: parseFloat(this.current) + 1, phone: this.phone, password: this.password }).then(res => {
+					if (res.data.code == 200) {
+						uni.setStorageSync('token', res.data.result.token);
+						uni.navigateTo({
+							url:"/pages/login/change-gongsi?type=" + (parseInt(this.current) + 1)
+						})
+						// this.getUserInfo()
+					} else {
+						this.$refs.uToast.show({
+							title: res.data.message,
+							type: 'error ',
+						})
+					}
+				})
 			},
 			getUserInfo() {
-				this.$http.getUserInfo()
-					.then(res => {
-						if (res.data.code == 200) {
-							// 是否信息完整
-							uni.setStorageSync('doctorAndSpecialist', res.data.result.doctorAndSpecialist);
-							if (res.data.result.completeInformation != 2) {
-								uni.navigateTo({
-									url: '/pages/login/perfect',
-								})
-							} else {
-								uni.reLaunch({
-									url: '/pages/index/index',
-								})
-							}
+				this.$http.getUserInfo().then(res => {
+					if (res.data.code == 200) {
+						// 是否信息完整
+						uni.setStorageSync('doctorAndSpecialist', res.data.result.doctorAndSpecialist);
+						if (res.data.result.completeInformation != 2) {
+							uni.navigateTo({
+								url: '/pages/login/perfect',
+							})
+						} else {
+							uni.reLaunch({
+								url: '/pages/index/index',
+							})
 						}
-					})
+					}
+				})
 			},
 			agreement() {
 				uni.navigateTo({
@@ -196,8 +197,8 @@
 
 		.agreement {
 			position: fixed;
-			bottom: 70rpx;
-			left: 0;
+			bottom: 70rpx;
+			left: 0;
 			width: 750rpx;
 			text-align: center;
 			font-size: 24rpx;

+ 228 - 71
pages/login/perfect.vue

@@ -19,6 +19,27 @@
 					</view>
 					<u-input v-model="card" maxlength="18" :clearable="false" type="text" :border="border" placeholder="请输入身份证号" />
 				</view>
+				<view class="input flex">
+					<view class="icon">
+						<image src="../../static/img/li7.png" mode=""></image>
+					</view>
+					<u-input v-model="backCard" :clearable="false" type="number" :border="border" placeholder="请输入银行账户卡号" />
+				</view>
+				<view class="input flex">
+					<view class="icon">
+						<image src="../../static/img/li8.png" mode=""></image>
+					</view>
+					<u-input v-model="cardholderPhone" maxlength="11" :clearable="false" type="number" :border="border" placeholder="请输入银行预留手机号" />
+				</view>
+				<view class="input flex" v-if="yzh == 1">
+					<view class="icon">
+						<image src="../../static/img/yzm.png" mode=""></image>
+					</view>
+					<view class="u-flex u-row-between u-flex-1">
+						<u-input v-model="code" maxlength="6" :clearable="false" type="number" :border="border" placeholder="请输入验证码" />
+						<text style="font-size: 28rpx;color: #167FFF;" @click="getCode">{{tips}}</text>
+					</view>
+				</view>
 				<!-- <view class="input flex">
 					<view class="icon">
 						<image src="../../static/img/li3.png" mode=""></image>
@@ -48,36 +69,35 @@
 					<u-upload ref="uUpload1" :show-progress="false" :file-list="fileList" @on-change="progress1" :action="action" max-count="1"></u-upload>
 				</view>
 			</view>
-			<view class="form form1">
-				<view class="input flex">
-					<view class="icon">
-						<image src="../../static/img/li7.png" mode=""></image>
+			<view class="u-flex u-row-center" style="margin-top: 40rpx;" v-if="yzh == 1">
+				<u-checkbox v-model="checkbox" shape="circle">
+					<view class="u-flex" style="font-size: 24rpx;">
+						<text>已阅读并同意</text>
+						<text style="color: #167FFF;" @click.stop="toxieyi">《灵活就业合作伙伴协议》</text>
 					</view>
-					<u-input v-model="backCard" :clearable="false" type="number" :border="border" placeholder="请输入银行账户卡号" />
-				</view>
+				</u-checkbox>
+			</view>
+			<!-- <view class="form form1">
+
 				<view class="input flex">
 					<view class="icon">
 						<image src="../../static/img/li1.png" mode=""></image>
 					</view>
 					<u-input v-model="cardholderName" :clearable="false" type="text" :border="border" placeholder="请输入持卡人姓名" />
 				</view>
-				<view class="input flex">
-					<view class="icon">
-						<image src="../../static/img/li8.png" mode=""></image>
-					</view>
-					<u-input v-model="cardholderPhone" maxlength="11" :clearable="false" type="number" :border="border" placeholder="请输入银行预留手机号" />
-				</view>
+
 				<view class="input flex">
 					<view class="icon">
 						<image src="../../static/img/li4.png" mode=""></image>
 					</view>
 					<u-input v-model="backName" :clearable="false" type="text" :border="border" placeholder="请输入开户行" />
 				</view>
-			</view>
+			</view> -->
 		</view>
 		<view class="btn" @click="completeInformation()">
 			<view class="btn_con">完成</view>
 		</view>
+		<u-verification-code :seconds="seconds" ref="uCode" @change="codeChange"></u-verification-code>
 	</view>
 </template>
 
@@ -98,6 +118,9 @@
 				backName: '',
 				cardholderName: '',
 				cardholderPhone: '',
+				code: '',
+				yzh: 0,
+				doctorAndSpecialist: '',
 				data: {
 					id: '',
 					name: '',
@@ -113,13 +136,121 @@
 					cardPic: '',
 					completeInformation: "2"
 				},
+				checkbox: false,
+
+				tips: '',
+				// refCode: null,
+				seconds: 60,
+				ref: '',
+				xieyipdf: ''
 			}
 		},
 		onLoad(option) {
 			this.action = this.$httpUrl + '/api/uploadLocality'
 			this.getUserInfo()
+
+
+			this.$http.agreeUserAgreement().then(res => {
+
+			})
 		},
 		methods: {
+			toxieyi() {
+				if (this.xieyipdf) {
+					uni.openDocument({
+						filePath: this.xieyipdf
+					})
+					return
+				}
+				uni.downloadFile({
+					url: 'https://binglishouji.oss-cn-hangzhou.aliyuncs.com/temp/隐私协议_1691832165623.pdf',
+					success: (res) => {
+						this.xieyipdf = res.tempFilePath
+						uni.openDocument({
+							filePath: this.xieyipdf
+						})
+					}
+				})
+				// uni.navigateTo({
+				// 	url:"./agreement?type=1"
+				// })
+			},
+			codeChange(text) {
+				this.tips = text;
+			},
+			getCode() {
+				if (!this.backCard) {
+					this.$u.toast('请输入银行卡号')
+					return
+				}
+				if (!this.card) {
+					this.$u.toast('请输入身份证号')
+					return
+				}
+				let files1 = [];
+				// 通过filter,筛选出上传进度为100的文件(因为某些上传失败的文件,进度值不为100,这个是可选的操作)
+				files1 = this.$refs.uUpload1.lists.filter(val => {
+					return val.progress == 100;
+				})
+				// console.log(files1)
+				let values = []
+				if (files1.length != 0) {
+					files1.forEach(val => {
+						if (val.response) {
+							values.push(val.response.result)
+						} else {
+							values.push(val.url)
+						}
+					})
+				}
+				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.$refs.uCode.canGetCode) {
+					// 模拟向后端请求验证码
+					uni.showLoading({
+						title: '正在获取验证码'
+					})
+					this.$http.perfectInformation({
+						"backCard": this.backCard,
+						"card": this.card,
+						"cardPic": values.join(','),
+						"cardholderPhone": this.cardholderPhone,
+						"code": "",
+						"doctorAndSpecialist": this.doctorAndSpecialist,
+						"dwname": this.dwname,
+						"ksname": this.ksname,
+						"name": this.name,
+						"ref": ""
+					}).then(res => {
+						if (res.data.code == 200) {
+							this.ref = res.data.result.ref
+							uni.hideLoading();
+							// 这里此提示会被this.start()方法中的提示覆盖
+							this.$u.toast('验证码已发送');
+							// 通知验证码组件内部开始倒计时
+							this.$refs.uCode.start();
+						} else {
+							this.$u.toast(res.data.message)
+						}
+					})
+				} else {
+					this.$u.toast('倒计时结束后再发送');
+				}
+			},
 			progress1(res, index, lists, name) {
 				// console.log(JSON.parse(res.data))
 				if (JSON.parse(res.data).code == 0) {
@@ -131,30 +262,45 @@
 				}
 			},
 			getUserInfo() {
-				this.$http.getUserInfo()
-					.then(res => {
-						if (res.data.code == 200) {
-							let data = res.data.result
-							console.log()
-							if (data.cardPic) {
-								this.fileList = [{ url: data.cardPic, }]
-							}
-							this.data.id = data.id
-							this.name = data.name
-							this.card = data.card
-							// console.log(this.card);
-							this.phone = data.phone
-							this.contactInformation = data.contactInformation
-							this.dwname = data.dwname
-							this.ksname = data.ksname
-							this.backCard = data.backCard
-							this.backName = data.backName
-							this.cardholderName = data.cardholderName
-							this.cardholderPhone = data.cardholderPhone
+				this.$http.getUserInfo().then(res => {
+					if (res.data.code == 200) {
+						let data = res.data.result
+						if (data.cardPic) {
+							this.fileList = [{ url: data.cardPic }]
 						}
-					})
+						this.data.id = data.id
+						this.name = data.name
+						this.card = data.card
+						this.phone = data.phone
+						this.contactInformation = data.contactInformation
+						this.dwname = data.dwname
+						this.ksname = data.ksname
+						this.backCard = data.backCard
+						this.backName = data.backName
+						this.cardholderName = data.cardholderName
+						this.cardholderPhone = data.cardholderPhone
+						this.yzh = data.yzh
+						this.doctorAndSpecialist = data.doctorAndSpecialist
+					}
+				})
 			},
 			completeInformation() {
+				if (this.yzh == 1) {
+					if (!this.checkbox) {
+						this.$u.toast("请勾选协议")
+						return
+					}
+					this.$http.agreeUserAgreement()
+				}
+
+				if (!this.backCard) {
+					this.$u.toast('请输入银行卡号')
+					return
+				}
+				if (!this.card) {
+					this.$u.toast('请输入身份证号')
+					return
+				}
 				let files1 = [];
 				// 通过filter,筛选出上传进度为100的文件(因为某些上传失败的文件,进度值不为100,这个是可选的操作)
 				files1 = this.$refs.uUpload1.lists.filter(val => {
@@ -163,35 +309,37 @@
 				// console.log(files1)
 				let values = []
 				if (files1.length != 0) {
-					if (files1[0].response) {
-						values = files1.map(item => item.response.result)
-					} else {
-						values = files1.map(item => item.url)
-					}
+					files1.forEach(val => {
+						if (val.response) {
+							values.push(val.response.result)
+						} else {
+							values.push(val.url)
+						}
+					})
 				}
-				// if(files1.length==0){
-				// 	this.$refs.uToast.show({ title: '上传执照或工牌', type: 'error ', })
-				// 	return;
-				// }
-				if (!this.name) {
-					this.$refs.uToast.show({ title: '请输入姓名', type: 'error ', })
+				if (values.length == 0) {
+					this.$u.toast('上传执照或工牌');
 					return;
 				}
-				// console.log(this.card);
-				if (this.card) {
-					if (!this.$checkId(this.card)) {
-						this.$refs.uToast.show({
-							title: '请输入正确身份证格式',
-							type: 'error ',
-						})
-						return;
-					}
+				if (!this.cardholderPhone) {
+					this.$u.toast('请输入银行预留手机号')
+					return
 				}
-
-				// if(this.phone==''){
-				// 	this.$refs.uToast.show({ title: '请输入手机号', type: 'error ', })
-				// 	return;
-				// }
+				if (!this.dwname) {
+					this.$u.toast('请输入单位名称')
+					return;
+				}
+				if (!this.ksname) {
+					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: '请输入正确手机号的格式',
@@ -210,7 +358,7 @@
 				// if (!this.ksname) {
 				// 	this.$refs.uToast.show({ title: '请输入科室名称', type: 'error ', })
 				// 	return;
-				// }
+				// }
 				// return
 				this.data.name = this.name
 				this.data.card = this.card
@@ -224,21 +372,31 @@
 				this.data.cardholderPhone = this.cardholderPhone
 				this.data.cardPic = values.join(',')
 
-				this.$http.completeInformation(this.data)
-					.then(res => {
-						if (res.data.code == 200) {
-							this.$refs.uToast.show({
-								title: '保存完成',
-							})
+				uni.showLoading({
+					mask: true,
+					title: '请稍后'
+				})
+				this.$http.perfectInformationUpload({
+					...this.data,
+					code: this.code,
+					ref: this.ref,
+					doctorAndSpecialist: this.doctorAndSpecialist
+				}).then(res => {
+					uni.hideLoading()
+					if (res.data.code == 200) {
+						this.$u.toast('保存完成')
+						setTimeout(() => {
 							uni.navigateTo({
 								url: '/pages/index/index',
 							})
-						}
-					})
+						}, 800)
+					} else {
+						this.$u.toast(res.data.message)
+					}
+				})
 			}
 		}
 	}
-
 </script>
 
 <style lang="scss">
@@ -325,5 +483,4 @@
 			}
 		}
 	}
-
-</style>
+</style>

BIN
static/img/jilu-not.png


BIN
static/img/yzm.png


BIN
static/img/zhuanzhang.png