xinelu-applet-ui/pagesB/register/register.vue

1037 lines
25 KiB
Vue
Raw Normal View History

2023-09-25 10:02:56 +08:00
<template>
2023-09-25 11:02:05 +08:00
<view class="register">
2023-10-09 13:21:22 +08:00
<view class="head" @tap="Face">
2023-10-11 14:22:12 +08:00
<image class="Facecollection" :src="query.headPictureUrl" v-if="query.headPictureUrl"></image>
2024-01-03 17:03:57 +08:00
<image class="Facecollection" mode="" :src="require('@/pagesB/images/Facecollection.png')" v-else></image>
2024-01-04 17:11:25 +08:00
<!-- <span>人脸采集</span> -->
2023-09-25 11:02:05 +08:00
</view>
<view class="form">
2023-10-10 13:21:23 +08:00
<u-form :model="query" ref="uForm">
2024-01-19 10:30:00 +08:00
<span>身份证号</span>
<u-form-item prop="cardNo" :border-bottom="false">
<u-input v-model="query.cardNo" placeholder="请输入身份证号" @blur="searchfun_close" />
</u-form-item>
2023-09-26 11:09:18 +08:00
<span>姓名</span>
2023-10-09 13:21:22 +08:00
<u-form-item prop="name" :border-bottom="false">
2023-10-10 13:21:23 +08:00
<u-input v-model="query.patientName" placeholder="请输入姓名" />
2023-09-26 11:09:18 +08:00
</u-form-item>
2024-01-19 10:30:00 +08:00
<span>手机号</span>
<u-form-item prop="phone" :border-bottom="false">
<u-input v-model="query.phone" placeholder="请输入手机号" :disabled="true" />
</u-form-item>
2023-10-09 13:21:22 +08:00
<view class="name">
性别
<view class="sex">
2023-10-11 14:22:12 +08:00
<u-radio-group v-model="query.sexname" size='30'>
2023-10-10 13:21:23 +08:00
<u-radio @change='sexchange' v-for="(item, index) in sexlist" :key="index" :name="item.name"
active-color="#26A888" :disabled="item.disabled">
2023-10-09 13:21:22 +08:00
{{item.name}}
</u-radio>
</u-radio-group>
</view>
</view>
<view class="name">
出生日期
<view class="select" @tap='timeshow=true'>
2023-10-10 13:21:23 +08:00
<text v-if="query.birthDate==''">请选择出生日期</text>
<text v-else class="testitem">{{query.birthDate}}</text>
2023-12-11 16:16:39 +08:00
<image src="@/static/huijiantou.png" mode=""></image>
2023-10-09 13:21:22 +08:00
</view>
</view>
2023-10-17 16:20:03 +08:00
<span>户主身份证号</span>
<u-form-item prop="householdCardNo" :border-bottom="false">
<u-input v-model="query.householdCardNo" placeholder="请输入身份证号" />
</u-form-item>
<view class="name">
与户主关系
<view class="select" @click="showNation = true;">
<text v-if="!householdRelationship">请选择与户主关系</text>
<text v-else class="testitem">{{householdRelationship}}</text>
2023-12-11 16:16:39 +08:00
<image src="@/static/huijiantou.png" mode=""></image>
2023-10-17 16:20:03 +08:00
</view>
</view>
2023-10-09 13:21:22 +08:00
<view class="name">
所属区域
2023-10-12 10:40:40 +08:00
<view class="select" @tap='showPicker'>
2023-10-10 13:21:23 +08:00
<text v-if="!address">请选择所属区域</text>
2023-12-19 14:41:16 +08:00
<text v-else class="testitem"
style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">{{address}}</text>
2023-12-11 16:16:39 +08:00
<!-- <image src="@/static/huijiantou.png" mode=""></image> -->
2023-10-09 13:21:22 +08:00
</view>
</view>
<span>详细地址</span>
<u-form-item prop="address" :border-bottom="false">
<u-input :clearable='false' v-model="query.address" type="text" placeholder='小区、单元、门牌号'
maxlength='40' />
2023-09-26 11:09:18 +08:00
</u-form-item>
2024-01-12 14:47:43 +08:00
<view class="name">
2023-10-09 13:21:22 +08:00
所在位置
2024-01-04 17:28:37 +08:00
<view class="selectdata" @tap='getlocation'>
2023-10-10 13:21:23 +08:00
<text v-if="query.locationName ==''">请选择所在位置</text>
2023-12-19 14:41:16 +08:00
<text class="testitem"
style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">{{query.locationName}}</text>
2023-10-09 13:21:22 +08:00
</view>
2024-01-12 14:47:43 +08:00
</view>
2023-10-09 13:21:22 +08:00
<view class="name">
基础疾病
<view class="select" @tap="godisease">
2023-10-10 13:21:23 +08:00
<!-- <text v-if="!query.diseaseInfoList">请选择基础疾病</text> -->
<ld-select :multiple="true" :list="options" label-key="label" value-key="value"
2023-10-12 10:40:40 +08:00
placeholder="请选择" v-model="value2" @change="selectChange" @cancel="cancel"
2023-10-10 13:21:23 +08:00
@confirm="confirm"></ld-select>
<!-- <text v-else v-for="(item,index) in query.diseaseInfoList">{{item.diseaseName}}</text>
2023-12-11 16:16:39 +08:00
<image src="@/static/huijiantou.png" mode=""></image> -->
2023-10-09 13:21:22 +08:00
</view>
</view>
2023-09-26 11:09:18 +08:00
</u-form>
2023-09-25 11:02:05 +08:00
</view>
2023-10-09 13:21:22 +08:00
<view class="bottom">
2023-10-12 11:10:09 +08:00
<view class="radio-content">
<view class="radio-right" @tap="changeRadio">
<view class="radio" :class="selected == 2 ? 'radio-default':''">
<view :class="selected == 2 ? 'radio-active':''"></view>
</view>
</view>
2024-01-04 17:11:25 +08:00
<view class="agreement">我已阅读并同意<text style="color: #26A888;" @tap='maskshow=true'>用户协议与隐私政策</text>
2023-10-09 13:21:22 +08:00
</view>
</view>
2023-10-10 13:21:23 +08:00
<view class="sbumit" @tap="submit">
2023-10-09 13:21:22 +08:00
提交
</view>
</view>
<u-mask :show="maskshow" class='mask' @click='maskshow=false'>
<view class="Agreement">
<view class="title">
用户协议与隐私政策
</view>
<scroll-view scroll-y="true" class="scroll-Y" style="">
<contenttext></contenttext>
</scroll-view>
<view class="cancel" @tap='maskshow=false'>
取消
</view>
<view class="determine" @tap='tapradio'>
2024-01-04 17:11:25 +08:00
已阅读并同意
2023-10-09 13:21:22 +08:00
</view>
</view>
</u-mask>
<u-picker mode="time" v-model="timeshow" :params="params" @confirm='timechange' @canel='timeshow=false'>
</u-picker>
2023-10-11 14:22:12 +08:00
<view class="">
<m-city style='z-index: 10076;' :provinceData="list" headTitle="地区选择" ref="cityPicker"
2024-01-19 10:30:00 +08:00
@funcValue="getpickerParentValue" pickerSize="3">
2023-10-11 14:22:12 +08:00
</m-city>
</view>
2023-10-17 16:20:03 +08:00
<u-select v-model="showNation" :list="actions" @confirm="nationSelect"></u-select>
2023-10-27 14:28:57 +08:00
<u-toast ref="uToast" />
2023-09-25 11:02:05 +08:00
</view>
2023-09-25 10:02:56 +08:00
</template>
<script>
2024-01-19 10:30:00 +08:00
import {
detail,
} from '@/api/pages/homepage/homepage.js'
2023-10-12 10:40:40 +08:00
import {
getCurrentUser,
} from '@/api/pages/homepage/homepage.js'
2023-10-09 13:21:22 +08:00
import {
AppIdentification
} from '@/api/pagesB/AppIdentification/index.js'
import {
getRegionAndStreetInfo,
getNurseType,
information
} from '@/api/pagesB/information/index.js'
2024-02-03 11:23:04 +08:00
import contenttext from '../text.vue';
2023-10-09 13:21:22 +08:00
import {
getSubordinateRegions,
} from '@/api/pagesB/modifyAddress/modifyAddress.js';
2023-10-11 14:22:12 +08:00
import gkcity from "@/components/m-city/m-city.vue";
2023-10-10 13:21:23 +08:00
import ldSelect from '../../components/ld-select/ld-select.vue';
import {
registerdata
} from '@/api/pages/register/register.js'
2024-01-22 12:48:40 +08:00
import {
getSex,
getBirthday
} from '@/api/conversion.js'
2023-12-19 14:41:16 +08:00
import {
mapMutations
} from "vuex";
2023-09-25 10:02:56 +08:00
export default {
2023-10-09 13:21:22 +08:00
components: {
contenttext,
2023-10-10 13:21:23 +08:00
ldSelect,
"m-city": gkcity,
},
// components: {ldSelect},
2023-09-26 11:09:18 +08:00
onReady() {
this.$refs.uForm.setRules(this.rules);
},
2023-09-25 11:02:05 +08:00
data() {
return {
2023-12-19 14:41:16 +08:00
SOCKETURL: '',
2023-10-17 16:20:03 +08:00
showNation: false, //户主关系
actions: [{
value: '1',
label: '户主本人'
},
{
value: '2',
label: '配偶'
},
{
value: '3',
label: '子女'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '4',
label: '(外)孙子女'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '5',
label: '父母'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '6',
label: '(外)祖父母'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '7',
label: '兄弟姐妹'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '8',
label: '儿媳'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '9',
label: '女婿'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '10',
label: '孙子女'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '11',
label: '侄子女'
2023-10-27 14:28:57 +08:00
}, {
2023-10-17 16:20:03 +08:00
value: '12',
label: '曾孙子女'
2023-10-27 14:28:57 +08:00
}, , {
2023-10-17 16:20:03 +08:00
value: '13',
label: '祖父母'
2023-10-27 14:28:57 +08:00
}, , {
2023-10-17 16:20:03 +08:00
value: '99',
label: '其他'
},
],
2023-09-26 11:09:18 +08:00
tipsText: '',
2023-10-10 13:21:23 +08:00
value2: [],
2023-10-09 13:21:22 +08:00
timeshow: false, //出生日期
params: {
year: true,
month: true,
day: true,
hour: false,
minute: false,
second: false
},
sexlist: [{
name: '男',
disabled: false
},
{
name: '女',
disabled: false
}
],
2023-10-12 11:10:09 +08:00
selected: 1,
2023-10-10 13:21:23 +08:00
options: [{
value: '1',
label: '高血压'
}, {
value: '2',
label: '高血糖'
}, {
value: '3',
label: '高血脂'
2023-11-09 16:15:09 +08:00
}, ],
2023-10-09 13:21:22 +08:00
arealist: [], //区街道list
list: [{
id: "",
localName: "请选择",
children: [],
}, ],
maskshow: false, //用户协议
getNurseTypelist: [], //护理类型数组
medicalcarelist: [], //医疗护理数组
address: '', //页面所属区域
query: { //信息请求数组
2023-10-10 13:21:23 +08:00
headPictureUrl: '',
2023-10-09 13:21:22 +08:00
couponId: null,
patientName: "",
cardNo: "",
2024-01-12 14:47:43 +08:00
phone: "",
2023-10-09 13:21:22 +08:00
address: "",
areaCode: "",
2024-01-09 11:34:28 +08:00
homeLongitude: '',
homeLatitude: '',
2023-10-09 13:21:22 +08:00
nurseTypeIdList: [],
diseaseInfoList: [],
patientId: '',
2024-01-09 11:34:28 +08:00
locationName: '',
2023-10-09 13:21:22 +08:00
sex: '',
2023-10-12 10:40:40 +08:00
sexname: '',
2023-10-09 13:21:22 +08:00
birthDate: '',
2023-10-27 10:54:45 +08:00
cityCode: '',
2023-10-27 14:28:57 +08:00
householdCardNo: '',
householdRelationship: '',
2023-10-09 13:21:22 +08:00
},
2023-10-27 14:28:57 +08:00
householdRelationship: '',
2023-10-09 13:21:22 +08:00
timer: null,
addresslength: null,
patientDiseaseInfoList: [], //获取个人信息
2023-09-26 11:09:18 +08:00
rules: {
2023-10-10 13:21:23 +08:00
patientName: [{
2023-09-26 11:09:18 +08:00
required: true,
message: '请输入姓名',
trigger: ['change', 'blur'],
}],
2023-10-10 13:21:23 +08:00
sex: [{
required: true,
message: '请选择性别',
trigger: ['change', 'blur'],
}],
address: [{
required: true,
message: '请输入详细地址',
trigger: ['change', 'blur'],
}],
birthDate: [{
required: true,
message: '请选择出生日期',
trigger: ['change', 'blur'],
}],
2023-09-26 11:09:18 +08:00
phone: [{
required: true,
message: '请输入手机号',
trigger: ['change', 'blur'],
}, {
validator: (rule, value, callback) => {
return uni.$u.test.mobile(value);
},
message: '手机号码不正确',
trigger: ['blur'],
}],
2023-10-10 13:21:23 +08:00
cardNo: [{
2023-09-26 11:09:18 +08:00
required: true,
message: '请输入身份证号',
trigger: ['change', 'blur'],
}, {
validator: (rule, value, callback) => {
return uni.$u.test.idCard(value);
},
message: '请输入正确的身份证号',
trigger: ['blur'],
2023-10-17 16:20:03 +08:00
}],
2023-09-26 11:09:18 +08:00
}
2023-09-25 11:02:05 +08:00
}
},
2023-10-10 13:21:23 +08:00
// onload(){
// },
2023-10-11 14:22:12 +08:00
// onUnload() {
// // 移除监听事件
// uni.$off('code');
2023-10-10 13:21:23 +08:00
// },
2023-09-25 11:02:05 +08:00
methods: {
2024-01-19 10:30:00 +08:00
searchfun_close() {
const idCardReg = /(^\d{15}$)|(^\d{17}([0-9]|X)$)/;
if (!idCardReg.test(this.query.cardNo)) {} else {
// 身份证号码合法
detail(this.query.cardNo).then(res => {
if (res.code == 200 && res.data) {
this.actions.forEach(e => {
if (e.value == res.data.relationshipWithHouseholder) {
this.householdRelationship = e.label
}
})
let gender = res.data.gender == '2' ? '女' : res.data.gender == '1' ? '男' : ''
let sex = res.data.gender == '2' ? 'FEMALE' : res.data.gender == '1' ? 'MALE' : ''
this.query = {
headPictureUrl: '',
couponId: null,
homeLongitude: '',
homeLatitude: '',
nurseTypeIdList: [],
diseaseInfoList: [],
householdCardNo: '',
cardNo: this.query.cardNo,
patientName: res.data.residentName,
sexname: gender,
sex: sex,
nation: res.data.nation,
address: res.data.address,
phone: res.data.phone,
birthDate: res.data.birthday,
householdRelationship: res.data.relationshipWithHouseholder,
locationName: '',
homeLongitude: '',
homeLatitude: '',
areaCode: '',
}
2024-01-22 12:48:40 +08:00
} else {
let sex = getSex(this.query.cardNo)
sex == '女' ? this.query.sex = 'FEMALE' : sex == '男' ? this.query.sex = 'MALE' : ''
this.query.sexname = sex
this.query.birthDate = getBirthday(this.query.cardNo)
2024-01-19 10:30:00 +08:00
}
})
}
},
2024-01-04 09:00:39 +08:00
//获取当前位置
getAddress() {
let that = this;
uni.getLocation({
type: 'wgs84',
success: (res) => {
let location = res.latitude + ',' + res.longitude
//调用逆解析接口
uni.request({
url: 'https://apis.map.qq.com/ws/geocoder/v1/?location=location', //腾讯官方逆解析接口,可直接复制
data: {
location: location,
'key': "Q4DBZ-UIMC2-B63UX-CUZ6A-S3UT7-TBF3V", //自己申请的Key
},
method: "GET",
success(res) {
2024-01-19 10:30:00 +08:00
if (!uni.getStorageSync("region") || !uni.getStorageSync("location")) {
var address = res.data.result.address_component.city
if (address == '德州市') {
uni.setStorageSync("region", 1)
} else if (address == '东营市') {
uni.setStorageSync("region", 2)
} else if (address == '济南市') {
uni.setStorageSync("region", 3)
}
uni.setStorageSync('location', res.data.result.address_component
.city)
}
2024-01-04 09:00:39 +08:00
},
fail: res => {
console.log(res.errMsg, '解析失败返回的错误信息');
}
})
},
//失败
fail: (res) => {
uni.showToast({
icon: 'none',
title: '获取地址失败,请打开定位',
})
}
})
},
2023-12-19 14:41:16 +08:00
...mapMutations(['scoket']),
2023-10-17 16:20:03 +08:00
// 与户主关系
nationSelect(e) {
console.log(e)
this.query.householdRelationship = e[0].value
this.householdRelationship = e[0].label
// console.log(this.query.householdRelationship)
// this.$refs.uForm.validateField('nation')
},
2023-10-09 13:21:22 +08:00
onChange(e) {
2023-10-12 10:40:40 +08:00
this.selected = e
2023-10-10 13:21:23 +08:00
// console.log(e)
// this.allChecked = !this.allChecked;
// this.selected = e.detail.value;
},
// 下拉框多选
selectChange(val) {
2023-10-17 16:20:03 +08:00
console.log(val, '999');
2023-10-10 13:21:23 +08:00
},
2023-10-12 10:40:40 +08:00
cancel() {},
2023-10-10 13:21:23 +08:00
confirm(e) {
2023-10-17 16:20:03 +08:00
this.query.diseaseList = e.map(Number)
console.log(e, '打印e')
2023-10-10 13:21:23 +08:00
},
submit() {
var that = this
that.query.openid = uni.getStorageSync('openid');
2023-10-27 10:54:45 +08:00
that.query.cityCode = uni.getStorageSync('region');
2023-10-11 14:22:12 +08:00
if (that.query.sexname == '男') {
2023-10-10 13:21:23 +08:00
that.query.sex = 'MALE';
2023-10-11 14:22:12 +08:00
} else if (that.query.sexname == '女') {
2023-10-10 13:21:23 +08:00
that.query.sex = 'FEMALE';
2023-11-07 14:54:22 +08:00
}
2023-11-09 16:15:09 +08:00
if (that.selected == 1) {
that.$refs.uToast.show({
title: '请审核并同意用户协议',
type: 'error'
})
return
} else if (that.query.sex == "") {
that.$refs.uToast.show({
title: '请选择性别',
type: 'error'
})
return
2024-01-12 14:47:43 +08:00
} else if (!that.query.locationName) {
that.$refs.uToast.show({
title: '请选择所在位置',
type: 'error'
})
return
} else if (!that.query.birthDate) {
2023-11-09 16:15:09 +08:00
that.$refs.uToast.show({
title: '请选择出生日期',
type: 'error'
})
return
}
2023-10-10 13:21:23 +08:00
that.$refs.uForm.validate(valid => {
if (valid) {
2023-11-14 17:25:43 +08:00
if (that.addresslength) {
if (that.addresslength.length > 2) {
registerdata(that.query).then(res => {
if (res.code == 200) {
getCurrentUser(that.query.openid).then(res => {
uni.setStorageSync('patientId', res.data.id);
2023-12-19 14:41:16 +08:00
uni.setStorageSync('patientName', res.data
.patientName);
2023-11-14 17:25:43 +08:00
uni.setStorageSync("userinfo", res.data)
2024-01-03 12:40:18 +08:00
uni.setStorageSync("region", 2)
2023-12-19 14:41:16 +08:00
that.scoket();
2023-11-14 17:25:43 +08:00
that.$refs.uToast.show({
title: '注册成功',
type: 'success',
back: 1,
})
})
} else {
that.$refs.uToast.show({
title: res.msg,
type: 'error',
})
}
2023-11-09 16:15:09 +08:00
})
2023-12-19 14:41:16 +08:00
} else {
2023-11-09 16:15:09 +08:00
that.$refs.uToast.show({
2023-11-14 17:25:43 +08:00
title: '所属区域应选择所在的区或街道,请重新选择!',
type: 'error'
2023-11-09 16:15:09 +08:00
})
}
2023-11-14 17:25:43 +08:00
}
2023-11-09 16:15:09 +08:00
}
2023-10-10 13:21:23 +08:00
});
},
2023-10-12 11:10:09 +08:00
//切换
changeRadio() {
2023-10-13 18:11:04 +08:00
if (this.selected == 1) {
this.selected = 2;
} else {
this.selected = 1;
}
2023-10-12 11:10:09 +08:00
},
2023-10-10 13:21:23 +08:00
// 性别
sexchange(e) {
if (e == '男') {
this.query.sex = 'MALE';
} else if (e == '女') {
this.query.sex = 'FEMALE';
}
},
// 人脸采集
Face() {
2024-01-04 17:11:25 +08:00
// uni.navigateTo({
// url: '/pagesB/facecollection/facecollection'
// })
2023-10-10 13:21:23 +08:00
},
//性别
sexchange(e) {
if (e == '男') {
this.query.sex = 'MALE';
} else if (e == '女') {
this.query.sex = 'FEMALE';
}
},
//选择出生日期
timechange(e) {
this.query.birthDate = e.year + '-' + e.month + '-' + e.day
},
//获取所在位置
2024-01-04 17:28:37 +08:00
getlocation() {
2023-10-10 13:21:23 +08:00
var that = this;
uni.chooseLocation({
success: function(location) {
that.query.locationName = location.address
that.query.homeLongitude = location.longitude;
that.query.homeLatitude = location.latitude;
2023-11-08 16:11:22 +08:00
},
fail(err) {
console.log(err)
2023-10-10 13:21:23 +08:00
}
});
},
//区街道
areaInfo() {
2024-01-19 10:30:00 +08:00
// getSubordinateRegions().then(res => {
// this.list = res.data;
// })
this.list = [{
areaCode: "370500000000",
areaLevel: 2,
areaName: "东营市",
id: 255903,
parentId: 188870,
}, {
areaCode: "371400000000",
areaLevel: 2,
areaName: "德州市",
id: 398888,
parentId: 188870,
}]
2023-10-10 13:21:23 +08:00
},
// 三级地址联动回调
getpickerParentValue(e) {
e = e.filter(ele => ele.localName != '暂不选择')
e = e.filter(ele => ele.localName != '暂无需选择')
this.addresslength = e
this.address = ''
this.query.areaCode = ''
if (e && e.length >= 1) {
e.forEach(el => {
this.address = this.address + el.localName
2023-10-09 13:21:22 +08:00
})
2023-10-10 13:21:23 +08:00
this.query.areaCode = e[e.length - 1].id
} else {
2023-10-09 13:21:22 +08:00
this.address = ''
this.query.areaCode = ''
2023-10-10 13:21:23 +08:00
}
},
// 显示三级地址联动
showPicker() {
this.$refs.cityPicker.show();
2023-10-09 13:21:22 +08:00
},
2023-10-10 13:21:23 +08:00
//点击所需服务
addnurseType(item) {
if (this.query.nurseTypeIdList.findIndex(e => e == item.id) == -1) {
this.query.nurseTypeIdList.push(item.id)
} else {
this.query.nurseTypeIdList = this.query.nurseTypeIdList.filter(e => e != item.id)
2023-10-09 13:21:22 +08:00
}
},
2023-10-12 11:10:09 +08:00
godisease(item) {},
2023-10-10 13:21:23 +08:00
tapradio() {
2023-10-13 18:11:04 +08:00
this.selected = 2;
2023-10-10 13:21:23 +08:00
this.maskshow = false;
},
},
//进入界面加载
onLoad(options) {
2023-10-11 14:22:12 +08:00
let that = this
2023-10-17 16:20:03 +08:00
uni.$on('headPictureUrl', (res) => {
this.query.headPictureUrl = res.tempImg
uni.$off('headPictureUrl')
})
2024-01-19 10:30:00 +08:00
this.getAddress()
2023-10-13 18:11:04 +08:00
// this.query.headPictureUrl = options.headPictureUrl
2023-10-11 14:22:12 +08:00
// this.query.couponId = Number(options.couponId)
// const value = uni.getStorageSync('patientId');
// if (value) {
// that.query.patientId = value
// }
2023-10-10 13:21:23 +08:00
this.areaInfo()
},
//带参返回
// 从地图选点插件返回后在页面的onShow生命周期函数中能够调用插件接口取得选点结果对象
onShow() {
var that = this
const invitationPatientId = uni.getStorageSync('invitationPatientId')
if (invitationPatientId) {
that.query.source = 'FRIEND_INVITATION'
that.query.invitationPatientId = Number(invitationPatientId)
} else {
that.query.source = 'REGISTER_YOURSELF'
that.query.invitationPatientId = null
}
2023-10-27 14:28:57 +08:00
this.query.phone = uni.getStorageSync("phone")
2023-10-10 13:21:23 +08:00
// const chooseLocation = requirePlugin('chooseLocation');
// const location = chooseLocation.getLocation(); // 如果点击确认选点按钮则返回选点结果对象否则返回null
// if (location) {
// that.query.locationName = location.address
// that.chooseLocation = location.address
// that.query.homeLongitude = location.longitude;
// that.query.homeLatitude = location.latitude;
// }
},
}
2023-09-25 10:02:56 +08:00
</script>
2023-10-12 11:10:09 +08:00
<style lang="scss">
2023-09-26 11:09:18 +08:00
.register {
2023-10-12 11:10:09 +08:00
padding-bottom: 100rpx;
2023-09-25 11:02:05 +08:00
display: flex;
flex-direction: column;
2023-09-26 11:09:18 +08:00
justify-content: center;
2023-09-25 11:02:05 +08:00
align-items: center;
2023-10-13 18:11:04 +08:00
background: #fff;
2023-11-09 16:15:09 +08:00
::v-deep .select-modal .select-dialog {
height: 370rpx !important;
2023-11-09 15:54:09 +08:00
}
2023-10-12 10:40:40 +08:00
.Agreement {
width: 100%;
background-color: #fff;
text-align: center;
height: 1000rpx;
position: absolute;
top: 5%;
font-size: 30rpx;
.title {
height: 100rpx;
line-height: 100rpx;
border-bottom: 1px solid #eeeeee;
font-size: 34rpx;
margin: 0px auto;
2023-10-10 13:21:23 +08:00
width: 100%;
text-align: center;
2023-10-12 10:40:40 +08:00
}
.scroll-Y {
height: 830rpx;
overflow-y: scroll;
text-align: left;
text-indent: 2em;
}
.cancel {
height: 70rpx;
line-height: 70rpx;
font-size: 32rpx;
background-color: #F4F5F7;
2023-10-10 13:21:23 +08:00
position: absolute;
2023-10-12 10:40:40 +08:00
border-top: 1rpx solid #000000;
bottom: 0;
right: 0;
width: 50%;
color: #000000;
2023-10-10 13:21:23 +08:00
}
2023-10-12 10:40:40 +08:00
.determine {
height: 70rpx;
line-height: 70rpx;
font-size: 32rpx;
width: 50%;
color: #F4F5F7;
background: #26A888;
position: absolute;
bottom: 0;
left: 0;
}
}
.radio-content {
margin: 50rpx auto;
width: 70%;
text-align: center;
font-size: 28rpx;
position: relative;
.agreement {
position: absolute;
top: 50%;
left: 20%;
transform: translateY(-50%);
color: #878987;
}
.radio-right {
height: 100rpx;
.radio {
display: inline-block;
width: 50rpx;
height: 50rpx;
border-radius: 70%;
border: 2rpx solid #178ffb;
2023-10-10 13:21:23 +08:00
position: absolute;
2023-10-12 10:40:40 +08:00
top: 50%;
left: 5%;
2023-10-10 13:21:23 +08:00
transform: translateY(-50%);
2023-10-12 10:40:40 +08:00
.radio-active {
width: 16rpx;
height: 16rpx;
border-radius: 50%;
background-color: #178ffb;
2023-10-10 13:21:23 +08:00
position: absolute;
2023-10-12 10:40:40 +08:00
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
2023-10-10 13:21:23 +08:00
}
}
}
2023-10-12 10:40:40 +08:00
}
2023-09-26 11:09:18 +08:00
.head {
margin-top: 60rpx;
display: flex;
flex-direction: column;
align-items: center;
span {
margin-top: 48rpx;
}
2023-09-25 11:02:05 +08:00
}
2023-09-26 11:09:18 +08:00
.form {
margin-top: 106rpx;
2023-10-12 10:40:40 +08:00
2023-10-09 13:21:22 +08:00
::v-deep .u-input {
width: 630rpx;
height: 63rpx;
background: #F6F6F6;
color: #8E8E8E;
// border: 1rpx solid red;
// margin: 12rpx auto;
border: none;
border-radius: 5rpx;
2023-10-11 14:22:12 +08:00
2023-10-10 13:21:23 +08:00
.u-input__input {
2023-10-09 13:21:22 +08:00
font-size: 26rpx;
font-weight: 400;
color: #000000 !important;
padding-left: 20rpx;
2023-10-10 13:21:23 +08:00
}
2023-10-09 13:21:22 +08:00
2023-10-13 18:11:04 +08:00
}
2023-10-17 16:20:03 +08:00
::v-deep .u-radio.data-v-643b3322 {
2023-10-13 18:11:04 +08:00
padding-left: 32rpx;
2023-10-17 16:20:03 +08:00
padding-top: 7rpx;
2023-10-09 13:21:22 +08:00
}
2023-10-10 13:21:23 +08:00
::v-deep.input-placeholder {
color: #8E8E8E !important;
font-size: 20rpx;
font-weight: 400;
}
::v-deep.uni-input-placeholder {
2023-10-09 13:21:22 +08:00
color: #8E8E8E !important;
font-size: 20rpx;
}
2023-10-10 13:21:23 +08:00
2023-10-09 13:21:22 +08:00
.name {
// padding: 25rpx 30rpx 0 30rpx;
font-size: 30rpx;
font-weight: 400;
color: #333333;
line-height: 38rpx;
2023-10-10 13:21:23 +08:00
.sex {
2023-10-09 13:21:22 +08:00
width: 630rpx;
height: 63rpx;
background: #F6F6F6;
margin: 12rpx 0 12rpx 0;
border: none;
border-radius: 5rpx;
}
2023-10-17 16:20:03 +08:00
::v-deep .u-radio[data-v-643b3322] {
2023-10-13 18:11:04 +08:00
margin-top: 8rpx !important;
margin-left: 30rpx !important;
2023-10-09 13:21:22 +08:00
}
::v-deep .u-input {
width: 630rpx;
height: 63rpx;
background: #F6F6F6;
margin: 12rpx auto;
border: none;
border-radius: 5rpx;
}
.select {
width: 630rpx;
height: 63rpx;
background: #F6F6F6;
2023-10-10 13:21:23 +08:00
margin: 20rpx 0 20rpx 0;
2023-10-09 13:21:22 +08:00
// border: 1rpx solid #F6F6F6;
border-radius: 5rpx;
display: flex;
position: relative;
2023-11-10 17:26:40 +08:00
.testitem {
font-size: 26rpx;
font-weight: 400;
color: #000000;
}
text {
padding-left: 20rpx;
line-height: 63rpx;
font-size: 20rpx;
font-weight: 400;
color: #8E8E8E;
}
image {
width: 9rpx;
height: 17rpx;
position: absolute;
right: 40rpx;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
}
2023-12-19 14:41:16 +08:00
2023-11-10 17:26:40 +08:00
.selectdata {
width: 636rpx;
height: 63rpx;
background: #F6F6F6;
margin: 12rpx auto;
border-radius: 5rpx;
display: flex;
position: relative;
2023-11-15 09:17:59 +08:00
// white-space: nowrap;
// overflow: hidden;
// text-overflow: ellipsis;
2023-11-10 17:26:40 +08:00
2023-10-10 13:21:23 +08:00
.testitem {
font-size: 26rpx;
font-weight: 400;
color: #000000;
}
2023-10-09 13:21:22 +08:00
text {
padding-left: 20rpx;
line-height: 63rpx;
font-size: 20rpx;
font-weight: 400;
color: #8E8E8E;
}
image {
width: 9rpx;
height: 17rpx;
position: absolute;
right: 40rpx;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
}
}
2023-09-26 11:09:18 +08:00
/deep/ .u-input--border {
margin: 0 0 12rpx 0;
width: 600rpx;
background: #F6F6F6;
border-radius: 5rpx !important;
border: 0;
input {
color: #8E8E8E !important;
font-size: 22rpx !important;
}
}
span {
color: #333333;
font-size: 30rpx;
}
2023-09-25 11:02:05 +08:00
}
2023-10-10 13:21:23 +08:00
.bottom {
2023-10-09 13:21:22 +08:00
position: relative;
width: 100%;
2023-10-10 13:21:23 +08:00
2023-10-12 11:10:09 +08:00
.radio-content {
width: 100%;
height: 100rpx;
text-align: center;
margin: 0 auto;
display: flex;
align-items: center;
2023-10-09 13:21:22 +08:00
2023-10-10 13:21:23 +08:00
.agreement {
2023-10-12 11:10:09 +08:00
color: #333333;
width: 80%;
text-align: left;
padding-left: 20rpx;
}
.radio-right {
width: 20%;
.radio {
display: inline-block;
width: 30rpx;
height: 30rpx;
border-radius: 70%;
border: 2rpx solid #26A888;
position: relative;
float: right;
.radio-active {
width: 15rpx;
height: 15rpx;
border-radius: 50%;
background-color: #178ffb;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
2023-10-09 13:21:22 +08:00
}
}
2023-10-10 13:21:23 +08:00
.sbumit {
2023-10-09 13:21:22 +08:00
width: 496rpx;
height: 61rpx;
line-height: 61rpx;
text-align: center;
background: #26A888;
border-radius: 5rpx;
font-size: 31rpx;
font-weight: 500;
color: #FFFFFF;
left: 50%;
position: relative;
2023-10-12 11:10:09 +08:00
margin-top: 100rpx;
2023-10-09 13:21:22 +08:00
// -webkit-transform: translateY(-50%);
transform: translateX(-50%);
bottom: 20rpx;
}
2023-09-25 11:02:05 +08:00
}
2023-10-09 13:21:22 +08:00
2023-10-10 13:21:23 +08:00
// .btn {
// width: 496rpx;
// height: 61rpx;
// background: #26A888;
// border-radius: 5rpx;
// font-size: 31rpx;
// color: #FFFFFF;
// line-height: 61rpx;
// text-align: center;
// position: absolute;
// bottom: 72rpx;
// }
2023-09-25 11:02:05 +08:00
}
2023-09-26 11:09:18 +08:00
.Facecollection {
width: 266rpx;
height: 266rpx;
}
/deep/ .u-form-item__message {
padding-left: 0 !important;
2023-09-25 11:02:05 +08:00
}
2023-12-19 14:41:16 +08:00
</style>