This commit is contained in:
parent
858f8a68e9
commit
2e63fd90d9
|
|
@ -143,6 +143,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-text {
|
.bottom-text {
|
||||||
margin-top: -15rpx;
|
margin-top: -8rpx;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -143,6 +143,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-text {
|
.bottom-text {
|
||||||
margin-top: -15rpx;
|
margin-top: -8rpx;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -143,6 +143,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-text {
|
.bottom-text {
|
||||||
margin-top: -15rpx;
|
margin-top: -8rpx;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -143,6 +143,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-text {
|
.bottom-text {
|
||||||
margin-top: -15rpx;
|
margin-top: -8rpx;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -118,7 +118,7 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="one" style="position: relative;" @click="showmarry = true">
|
<view class="one" style="position: relative;" @click="showmarry = true">
|
||||||
<view class="one-left">医保类型</view>
|
<view class="one-left">医保类型</view>
|
||||||
<input disabled style="cursor: not-allowed;pointer-events: none;" class="one-right" type="text"
|
<input disabled style="cursor: not-allowed;pointer-events: none;color: #312b2b;" class="one-right" type="text"
|
||||||
placeholder="请选择医保类型" v-model="form.medicalTypename" />
|
placeholder="请选择医保类型" v-model="form.medicalTypename" />
|
||||||
<!-- <image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" /> -->
|
<!-- <image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" /> -->
|
||||||
<!-- <image class="triangle-down" src="https://www.focusnu.com/media/directive/login/xia.png" /> -->
|
<!-- <image class="triangle-down" src="https://www.focusnu.com/media/directive/login/xia.png" /> -->
|
||||||
|
|
@ -127,7 +127,7 @@
|
||||||
value-name="value" @confirm="confirmmarry"></u-select>
|
value-name="value" @confirm="confirmmarry"></u-select>
|
||||||
<view class="one" style="position: relative;" @click="showlevel = true" v-if="showlevellist.length">
|
<view class="one" style="position: relative;" @click="showlevel = true" v-if="showlevellist.length">
|
||||||
<view class="one-left">失能等级</view>
|
<view class="one-left">失能等级</view>
|
||||||
<input disabled style="cursor: not-allowed;pointer-events: none;" class="one-right" type="text"
|
<input disabled style="cursor: not-allowed;pointer-events: none;color: #312b2b;" class="one-right" type="text"
|
||||||
:placeholder="showlevellist.length>0?'请选择失能等级':'无'" v-model="form.disabilityReimbursementTypename" />
|
:placeholder="showlevellist.length>0?'请选择失能等级':'无'" v-model="form.disabilityReimbursementTypename" />
|
||||||
<!-- <image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" /> -->
|
<!-- <image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" /> -->
|
||||||
<!-- <image class="triangle-down" src="https://www.focusnu.com/media/directive/login/xia.png" /> -->
|
<!-- <image class="triangle-down" src="https://www.focusnu.com/media/directive/login/xia.png" /> -->
|
||||||
|
|
@ -375,22 +375,30 @@
|
||||||
} else if (JSON.parse(JSON.parse(uploadRes.data).result.data).data.back) {
|
} else if (JSON.parse(JSON.parse(uploadRes.data).result.data).data.back) {
|
||||||
let father = JSON.parse(JSON.parse(uploadRes.data).result.data).data.back.data;
|
let father = JSON.parse(JSON.parse(uploadRes.data).result.data).data.back.data;
|
||||||
let regex = /[\u4E00-\u9FA5\uF900-\uFA2D]{1,}/;
|
let regex = /[\u4E00-\u9FA5\uF900-\uFA2D]{1,}/;
|
||||||
if(!regex.test(father.validPeriod)||father.validPeriod.indexOf('长期')){
|
console.log(regex.test(father.validPeriod))
|
||||||
|
if(!regex.test(father.validPeriod)){
|
||||||
textArray[6] = father.issueAuthority;
|
textArray[6] = father.issueAuthority;
|
||||||
textArray[7] = father.validPeriod;
|
textArray[7] = father.validPeriod;
|
||||||
backImge.value = filePath;
|
backImge.value = filePath;
|
||||||
savephoto(filePath, 1);
|
savephoto(filePath, 1);
|
||||||
}else{
|
}else{
|
||||||
uni.showToast({
|
if(father.validPeriod.indexOf('长期')>-1){
|
||||||
title: '识别失败',
|
textArray[6] = father.issueAuthority;
|
||||||
icon: 'none',
|
textArray[7] = father.validPeriod;
|
||||||
duration: 2000
|
backImge.value = filePath;
|
||||||
})
|
}else{
|
||||||
|
textArray[7] = "";
|
||||||
|
uni.showToast({
|
||||||
|
title: '识别失败',
|
||||||
|
icon: 'none',
|
||||||
|
duration: 2000
|
||||||
|
})
|
||||||
|
}
|
||||||
uping.value = true;
|
uping.value = true;
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uni.hideLoading()
|
||||||
} else {
|
} else {
|
||||||
uni.hideLoading()
|
uni.hideLoading()
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
<view style="font-size: 30rpx;">入职登记表</view>
|
<view style="font-size: 30rpx;">入职登记表</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view :style="{height:`${uni.getStorageSync('moveHeight') + 30}px`}"></view>
|
<view :style="{height:`${uni.getStorageSync('moveHeight') + 40}px`}"></view>
|
||||||
<view class="white-content">
|
<view class="white-content">
|
||||||
<view class="content-title">
|
<view class="content-title">
|
||||||
<view class="shu"></view>
|
<view class="shu"></view>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
:src="`https://www.focusnu.com/media/directive/index/jumpImge/yuangongruzhu.png`" />
|
:src="`https://www.focusnu.com/media/directive/index/jumpImge/yuangongruzhu.png`" />
|
||||||
|
|
||||||
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;">
|
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;">
|
||||||
{{ uni.getStorageSync('isstaffchange') ? '变更信息已提交' : '提交成功' }}
|
提交成功
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="small-title">
|
<view class="small-title">
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
:src="`https://www.focusnu.com/media/directive/index/jumpImge/yuangongruzhu.png`" />
|
:src="`https://www.focusnu.com/media/directive/index/jumpImge/yuangongruzhu.png`" />
|
||||||
|
|
||||||
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;">
|
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;">
|
||||||
{{ uni.getStorageSync('isstaffchange') ? '变更信息已提交' : '提交成功' }}
|
提交成功
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="small-title">
|
<view class="small-title">
|
||||||
|
|
|
||||||
|
|
@ -966,7 +966,7 @@
|
||||||
.fuwu-button-bottom {
|
.fuwu-button-bottom {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50%;
|
height: 50%;
|
||||||
margin-top: -15rpx;
|
margin-top: -8rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<image style="width: 200rpx;height:200rpx"
|
<image style="width: 200rpx;height:200rpx"
|
||||||
:src="special?`https://www.focusnu.com/media/directive/index/jumpImge/jigou.png`: `https://www.focusnu.com/media/directive/index/jumpImge/jiameng.png`" />
|
:src="special?`https://www.focusnu.com/media/directive/index/jumpImge/jigou.png`: `https://www.focusnu.com/media/directive/index/jumpImge/jiameng.png`" />
|
||||||
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;text-align: center;">
|
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;text-align: center;">
|
||||||
{{ uni.getStorageSync('isstaffchange') ? '变更信息已提交' : '提交成功' }}
|
提交成功
|
||||||
</view>
|
</view>
|
||||||
<view class="white-font">
|
<view class="white-font">
|
||||||
尊敬的用户,您的机构{{ uni.getStorageSync('isstaffchange') ? `变更`:`加盟` }}申请已成功提交,请耐心等待审核结果!
|
尊敬的用户,您的机构{{ uni.getStorageSync('isstaffchange') ? `变更`:`加盟` }}申请已成功提交,请耐心等待审核结果!
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,10 @@
|
||||||
<!-- <view class="white-content"> -->
|
<!-- <view class="white-content"> -->
|
||||||
<image style="width: 200rpx;height:200rpx" :src="isjianhu?`https://www.focusnu.com/media/directive/index/jumpImge/jianhu.png`: `https://www.focusnu.com/media/directive/index/jumpImge/addold.png`" />
|
<image style="width: 200rpx;height:200rpx" :src="isjianhu?`https://www.focusnu.com/media/directive/index/jumpImge/jianhu.png`: `https://www.focusnu.com/media/directive/index/jumpImge/addold.png`" />
|
||||||
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;">
|
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;">
|
||||||
{{ uni.getStorageSync('isstaffchange') ? '变更信息已提交' : '提交成功' }}
|
提交成功
|
||||||
</view>
|
</view>
|
||||||
<view class="white-font">
|
<view class="white-font">
|
||||||
尊敬的用户,您已成功{{ ischange? '修改':"添加" }}{{ isjianhu?`监护人`: `长者` }}信息{{ ischange? ',请等待机构审核':"" }}
|
尊敬的用户,您已成功{{ uni.getStorageSync('isstaffchange') ? '修改':"添加" }}{{ isjianhu?`监护人`: `长者` }}信息{{ uni.getStorageSync('isstaffchange') ? ',请等待机构审核':"" }}
|
||||||
</view>
|
</view>
|
||||||
<view class="bottom-font">
|
<view class="bottom-font">
|
||||||
<!-- <text style="color: #068DFF;">{{ seconds }}秒后</text>自动跳转到长者端 ... -->
|
<!-- <text style="color: #068DFF;">{{ seconds }}秒后</text>自动跳转到长者端 ... -->
|
||||||
|
|
|
||||||
|
|
@ -1126,7 +1126,7 @@
|
||||||
.fuwu-button-bottom {
|
.fuwu-button-bottom {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50%;
|
height: 50%;
|
||||||
margin-top: -15rpx;
|
margin-top: -8rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue