微信小程序改bug

This commit is contained in:
Teng 2025-10-20 16:59:27 +08:00
parent 233d6b4610
commit 29eab97bd7
28 changed files with 294 additions and 171 deletions

View File

@ -6,18 +6,21 @@
<view style="font-size: 30rpx;">监护人信息</view> <view style="font-size: 30rpx;">监护人信息</view>
</view> </view>
</view> --> </view> -->
<image class="greenbgc" src="https://www.focusnu.com/media/directive/index/greenbgc.png" />
<view class="title-back" :style="{height:`${uni.getStorageSync('moveHeight')+40}px`}"> <view class="title-back" :style="{height:`${uni.getStorageSync('moveHeight')+40}px`}">
<view class="left-father" @click="goBack"> <view class="left-father" @click="goBack">
<image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" /> <image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" />
<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>
<view class="content-weight">监护人基本信息</view> <view class="content-weight">监护人基本信息</view>
</view> </view>
<view class="white-message">
<view>
<view class="one"> <view class="one">
<view class="one-left">与长者关系</view> <view class="one-left">与长者关系</view>
<input class="one-right" maxlength="10" placeholder="请输入与长者关系" v-model="form.relationship" /> <input class="one-right" maxlength="10" placeholder="请输入与长者关系" v-model="form.relationship" />
@ -33,7 +36,8 @@
</view> </view>
<view class="one"> <view class="one">
<view class="one-left">身份证号</view> <view class="one-left">身份证号</view>
<input class="one-right" type="number" maxlength="18" placeholder="请输入身份证号" v-model="form.idCard" /> <input class="one-right" type="number" maxlength="18" placeholder="请输入身份证号"
v-model="form.idCard" />
</view> </view>
<view class="one"> <view class="one">
<view class="one-left">家庭住址</view> <view class="one-left">家庭住址</view>
@ -44,6 +48,8 @@
<input class="one-right" maxlength="40" placeholder="请输入工作单位" v-model="form.workUnit" /> <input class="one-right" maxlength="40" placeholder="请输入工作单位" v-model="form.workUnit" />
</view> </view>
</view> </view>
</view>
</view>
<view style="display: flex;width: 100%;position: fixed;bottom: 20rpx;left: 0;"> <view style="display: flex;width: 100%;position: fixed;bottom: 20rpx;left: 0;">
<view class="finish-button" @click="next"> <view class="finish-button" @click="next">
提交 提交
@ -335,6 +341,7 @@
margin-left: 5%; margin-left: 5%;
border-radius: 35rpx; border-radius: 35rpx;
.content-title { .content-title {
display: flex; display: flex;
align-items: center; align-items: center;
@ -409,6 +416,18 @@
margin: 3rpx 20rpx 0 30rpx; margin: 3rpx 20rpx 0 30rpx;
} }
.white-message {
width: 100%;
margin-top: 20rpx;
padding-top: 20rpx;
padding-bottom: 20rpx;
margin-bottom: 30rpx;
border-radius: 35rpx;
background-color: #fff;
justify-content: space-around;
display: flex;
flex-direction: column;
.one { .one {
width: 90%; width: 90%;
margin-left: 5%; margin-left: 5%;
@ -421,18 +440,30 @@
.one-left { .one-left {
margin-left: 10rpx; margin-left: 10rpx;
font-size: 30rpx; font-size: 30rpx;
// color: red;
color: black;
z-index: 1;
} }
.one-right { .one-right {
margin-right: 10rpx;
font-size: 30rpx; font-size: 30rpx;
height: 100%;
color: #999999; color: #999999;
overflow: hidden; overflow: hidden;
/* 隐藏超出内容 */
white-space: nowrap; white-space: nowrap;
/* 不换行 */
text-overflow: ellipsis; text-overflow: ellipsis;
width: 350rpx; max-width: 380rpx;
display: flex; }
}
} }
.greenbgc {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 700rpx;
} }
</style> </style>

View File

@ -166,6 +166,7 @@
width: 90%; width: 90%;
margin-left: 5%; margin-left: 5%;
border-radius: 35rpx; border-radius: 35rpx;
// background-color: #fff;
.content-title { .content-title {
display: flex; display: flex;

View File

@ -426,7 +426,7 @@
textArray[4] = data.birthDate; textArray[4] = data.birthDate;
textArray[5] = data.idCardAddress; textArray[5] = data.idCardAddress;
textArray[6] = data.issuingAuthority; textArray[6] = data.issuingAuthority;
textArray[7] = `${data.startTime}-${swapLongTerm(data.endTime)}`; textArray[7] = `${data.startTime}-${data.endTime == '长期' ? swapLongTerm(data.endTime) : data.endTime}`;
headImge.value = `${base_url}/sys/common/static/${data.cardZmPath}`; headImge.value = `${base_url}/sys/common/static/${data.cardZmPath}`;
backImge.value = `${base_url}/sys/common/static/${data.cardFmPath}`; backImge.value = `${base_url}/sys/common/static/${data.cardFmPath}`;
fontphoto.value = data.cardZmPath fontphoto.value = data.cardZmPath
@ -440,7 +440,7 @@
textArray[4] = data.birthDate; textArray[4] = data.birthDate;
textArray[5] = data.idCardAddress; textArray[5] = data.idCardAddress;
textArray[6] = data.issuingAuthority; textArray[6] = data.issuingAuthority;
textArray[7] = `${data.startTime}-${swapLongTerm(data.endTime)}`; textArray[7] = `${data.startTime}-${data.endTime == '长期' ? swapLongTerm(data.endTime) : data.endTime}`;
headImge.value = `${base_url}/sys/common/static/${data.cardZmPath}`; headImge.value = `${base_url}/sys/common/static/${data.cardZmPath}`;
backImge.value = `${base_url}/sys/common/static/${data.cardFmPath}`; backImge.value = `${base_url}/sys/common/static/${data.cardFmPath}`;
fontphoto.value = data.cardZmPath fontphoto.value = data.cardZmPath

View File

@ -6,19 +6,21 @@
<view style="font-size: 30rpx;">入职登记表</view> <view style="font-size: 30rpx;">入职登记表</view>
</view> </view>
</view> --> </view> -->
<image class="greenbgc" src="https://www.focusnu.com/media/directive/index/greenbgc.png" />
<view class="title-back" :style="{height:`${uni.getStorageSync('moveHeight')+40}px`}"> <view class="title-back" :style="{height:`${uni.getStorageSync('moveHeight')+40}px`}">
<view class="left-father" @click="goBack"> <view class="left-father" @click="goBack">
<image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" /> <image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" />
<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>
<view class="content-weight">个人信息</view> <view class="content-weight">个人信息</view>
</view> </view>
<view class="white-message">
<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;" class="one-right" type="text"
@ -31,18 +33,21 @@
<view class="one"> <view class="one">
<view class="one-left">联系电话</view> <view class="one-left">联系电话</view>
<input class="one-right" type="number" maxlength="11" placeholder="请输入联系电话" v-model="form.tel" /> <input class="one-right" type="number" maxlength="11" placeholder="请输入联系电话"
v-model="form.tel" />
</view> </view>
<view class="one" style="position: relative;"> <view class="one" style="position: relative;">
<view class="one-left">身高</view> <view class="one-left">身高</view>
<input class="one-right" type="number" maxlength="3" placeholder="请输入身高" v-model="form.height" /> <input class="one-right" type="number" maxlength="3" placeholder="请输入身高"
v-model="form.height" />
<view class="triangle-down-mi"> <view class="triangle-down-mi">
cm cm
</view> </view>
</view> </view>
<view class="one" style="position: relative;"> <view class="one" style="position: relative;">
<view class="one-left">体重</view> <view class="one-left">体重</view>
<input class="one-right" type="number" maxlength="3" placeholder="请输入体重" v-model="form.weight" /> <input class="one-right" type="number" maxlength="3" placeholder="请输入体重"
v-model="form.weight" />
<view class="triangle-down-mi"> <view class="triangle-down-mi">
kg kg
</view> </view>
@ -78,7 +83,8 @@
</view> </view>
<view class="one"> <view class="one">
<view class="one-left">联系人与本人关系</view> <view class="one-left">联系人与本人关系</view>
<input class="one-right" maxlength="10" placeholder="请输入联系人与本人关系" v-model="form.contactRelationship" /> <input class="one-right" maxlength="10" placeholder="请输入联系人与本人关系"
v-model="form.contactRelationship" />
</view> </view>
<view class="one" style="position: relative;" @click="showform = true"> <view class="one" style="position: relative;" @click="showform = true">
<view class="one-left">户口性质</view> <view class="one-left">户口性质</view>
@ -90,6 +96,8 @@
<u-select style="font-size: 35rpx;" v-model="showform" :list="showformlist" <u-select style="font-size: 35rpx;" v-model="showform" :list="showformlist"
@confirm="confirmshowform"></u-select> @confirm="confirmshowform"></u-select>
</view> </view>
</view>
</view>
<view style="display: flex;width: 100%;"> <view style="display: flex;width: 100%;">
<view class="finish-button" @click="next"> <view class="finish-button" @click="next">
确认并继续 确认并继续
@ -416,6 +424,18 @@
} }
.white-message {
width: 100%;
margin-top: 20rpx;
padding-top: 20rpx;
padding-bottom: 20rpx;
margin-bottom: 30rpx;
border-radius: 35rpx;
background-color: #fff;
justify-content: space-around;
display: flex;
flex-direction: column;
}
.one { .one {
width: 90%; width: 90%;
@ -463,4 +483,12 @@
font-size: 30rpx; font-size: 30rpx;
color: #999999; color: #999999;
} }
.greenbgc {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 700rpx;
}
</style> </style>

View File

@ -127,7 +127,7 @@
<view class="left-button-bottom"> <view class="left-button-bottom">
<view class=""> <view class="">
<view style="font-size: 27rpx;"> <view style="font-size: 30rpx;">
仓库 仓库
</view> </view>
<view style="font-size: 23rpx;color: #999999;margin-top: 5rpx;" class=""> <view style="font-size: 23rpx;color: #999999;margin-top: 5rpx;" class="">
@ -152,7 +152,7 @@
<view class="left-button-bottom"> <view class="left-button-bottom">
<view class=""> <view class="">
<view style="font-size: 27rpx;"> <view style="font-size: 30rpx;">
单元 单元
</view> </view>
<view style="font-size: 23rpx;color: #999999;margin-top: 5rpx;" class=""> <view style="font-size: 23rpx;color: #999999;margin-top: 5rpx;" class="">
@ -301,7 +301,7 @@
const ceshi = () => { const ceshi = () => {
// console.log("666666") // console.log("666666")
// uni.navigateTo({ // uni.navigateTo({
// url:"/pages/addstaff/successpush" // url:"/pages/login/index"
// }) // })
} }
@ -1024,6 +1024,7 @@
align-items: center; align-items: center;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
font-size: 30rpx;
.middle-small-img { .middle-small-img {
width: 65rpx; width: 65rpx;

View File

@ -11,9 +11,9 @@
> >
一键登录 一键登录
</button> --> </button> -->
<button class="button-blue" @click="loginIt"> <view class="button-blue" @click="loginIt">
一键登录 一键登录
</button> </view>
<view class="under-container-title" @click="isTarget = !isTarget"> <view class="under-container-title" @click="isTarget = !isTarget">
<view class="radio-father"> <view class="radio-father">
<view :class="isTarget ? 'radio-circle-target' : 'radio-circle'"></view> <view :class="isTarget ? 'radio-circle-target' : 'radio-circle'"></view>

View File

@ -21,7 +21,8 @@
<view class="list-father"> <view class="list-father">
<view v-for="(item,index) in institution" :key="index" class="card-father" @click="targetIndex=index"> <view v-for="(item,index) in institution" :key="index" class="card-father" @click="targetIndex=index">
<view :class="targetIndex==index ? `card-target` : `card`"> <view :class="targetIndex==index ? `card-target` : `card`">
<image class="card-img" :src="targetIndex==index ?`https://www.focusnu.com/media/directive/index/jigou/bluewuzi.png`: `https://www.focusnu.com/media/directive/index/jigou/wuzi.png`" /> <image class="card-img"
:src="targetIndex==index ?`https://www.focusnu.com/media/directive/index/jigou/bluewuzi.png`: `https://www.focusnu.com/media/directive/index/jigou/wuzi.png`" />
<view v-if="targetIndex==index" class="abs-father"> <view v-if="targetIndex==index" class="abs-father">
<image class="abs-img" src="https://www.focusnu.com/media/directive/index/jigou/bar.png" /> <image class="abs-img" src="https://www.focusnu.com/media/directive/index/jigou/bar.png" />
<!-- <view class="abs-dui"></view> --> <!-- <view class="abs-dui"></view> -->
@ -34,7 +35,8 @@
</view> </view>
</view> </view>
<view class="under-container-title"> <view class="under-container-title">
<view style="margin-left: 60rpx;" :class="isTarget ? 'radio-circle-target' : 'radio-circle'" @click="isTarget = !isTarget"></view> <view style="margin-left: 60rpx;" :class="isTarget ? 'radio-circle-target' : 'radio-circle'"
@click="isTarget = !isTarget"></view>
<view style="margin-left: 17rpx;" class="radio-circle-font" @click="isTarget = !isTarget">阅读并同意</view> <view style="margin-left: 17rpx;" class="radio-circle-font" @click="isTarget = !isTarget">阅读并同意</view>
<view class="radio-circle-blue" @click="jumpToPro"> <view class="radio-circle-blue" @click="jumpToPro">
护理单元使用条款 护理单元使用条款
@ -149,7 +151,7 @@
left: "0" left: "0"
}, },
]) ])
const jumpToPro = () =>{ const jumpToPro = () => {
uni.navigateTo({ uni.navigateTo({
url: "/pages/login/protocol" url: "/pages/login/protocol"
}); });
@ -161,7 +163,7 @@
width: 100%; width: 100%;
min-height: 100vh; min-height: 100vh;
position: relative; position: relative;
background-color: rgb(236,238,244); background-color: rgb(236, 238, 244);
.select { .select {
position: absolute; position: absolute;
@ -245,6 +247,7 @@
background-color: #fff; background-color: #fff;
border-bottom-left-radius: 30rpx; border-bottom-left-radius: 30rpx;
border-bottom-right-radius: 30rpx; border-bottom-right-radius: 30rpx;
.card-father { .card-father {
display: flex; display: flex;
width: 45%; width: 45%;
@ -263,6 +266,7 @@
justify-content: center; justify-content: center;
align-items: center; align-items: center;
} }
.card-target { .card-target {
width: 100%; width: 100%;
height: 250rpx; height: 250rpx;
@ -271,20 +275,23 @@
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
border: 2rpx solid #0083FF ; border: 2rpx solid #0083FF;
position: relative; position: relative;
// overflow: hidden; // overflow: hidden;
.abs-father{ .abs-father {
width: 70rpx; width: 70rpx;
height: 70rpx; height: 70rpx;
position: absolute; position: absolute;
bottom: -4rpx; bottom: -4rpx;
right: -4rpx; right: -4rpx;
.abs-img{
.abs-img {
width: 70rpx; width: 70rpx;
height: 70rpx; height: 70rpx;
} }
.abs-dui{
.abs-dui {
width: 30rpx; width: 30rpx;
height: 30rpx; height: 30rpx;
position: absolute; position: absolute;
@ -295,16 +302,19 @@
} }
} }
} }
.card-img { .card-img {
width: 150rpx; width: 150rpx;
height: 150rpx; height: 150rpx;
} }
.card-name{
color: #888FA9 ; .card-name {
color: #888FA9;
margin: 20rpx 0; margin: 20rpx 0;
} }
} }
} }
.under-container-title { .under-container-title {
display: flex; display: flex;
margin-top: 40rpx; margin-top: 40rpx;
@ -314,6 +324,7 @@
font-weight: 500; font-weight: 500;
width: 100%; width: 100%;
position: relative; position: relative;
.radio-circle { .radio-circle {
position: relative; position: relative;
margin-top: 2rpx; margin-top: 2rpx;
@ -345,6 +356,7 @@
background-color: #00C9FF; background-color: #00C9FF;
border-radius: 50%; border-radius: 50%;
} }
.radio-circle-blue { .radio-circle-blue {
color: #0083FF; color: #0083FF;
margin-top: 3rpx; margin-top: 3rpx;
@ -356,6 +368,7 @@
margin-top: 3rpx; margin-top: 3rpx;
} }
} }
.button-blue { .button-blue {
width: 80%; width: 80%;
margin-left: 10%; margin-left: 10%;
@ -370,12 +383,14 @@
color: #007CFF; color: #007CFF;
font-size: 33rpx; font-size: 33rpx;
} }
.bgc-height{
.bgc-height {
height: 150rpx; height: 150rpx;
width: 100%; width: 100%;
// background: url(`https://www.focusnu.com/media/directive/index/jigou/bgc.png`); // background: url(`https://www.focusnu.com/media/directive/index/jigou/bgc.png`);
background-image: url('https://www.focusnu.com/media/directive/index/jigou/bgc.png'); background-image: url('https://www.focusnu.com/media/directive/index/jigou/bgc.png');
background-size: 100% auto; /* 宽度占满,高度自动 */ background-size: 100% auto;
/* 宽度占满,高度自动 */
background-position: top center; background-position: top center;
background-repeat: no-repeat; background-repeat: no-repeat;
// margin-top: -50rpx; // margin-top: -50rpx;

View File

@ -700,7 +700,7 @@
} }
.box-font { .box-font {
font-size: 26rpx; font-size: 30rpx;
} }
} }
} }
@ -947,6 +947,7 @@
bottom: 40rpx; bottom: 40rpx;
width: 100%; width: 100%;
padding: 0 40rpx; padding: 0 40rpx;
font-size: 30rpx;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
@ -969,6 +970,7 @@
justify-content: space-between; justify-content: space-between;
padding: 0 60rpx; padding: 0 60rpx;
align-items: center; align-items: center;
font-size: 30rpx;
.right-button-img { .right-button-img {
width: 70rpx; width: 70rpx;
@ -993,6 +995,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
font-size: 30rpx;
} }
.fuwu-button-bottom { .fuwu-button-bottom {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -113,7 +113,7 @@ const _sfc_main = {
} }
}, },
fail: (e) => { fail: (e) => {
common_vendor.index.__f__("log", "at pages/addoldman/IDcard.vue:186", "????", e); common_vendor.index.__f__("log", "at pages/addoldman/IDcard.vue:192", "????", e);
} }
}); });
} else { } else {
@ -190,14 +190,14 @@ const _sfc_main = {
keys.forEach((key) => { keys.forEach((key) => {
form[key] = data[key] || ""; form[key] = data[key] || "";
}); });
common_vendor.index.__f__("log", "at pages/addoldman/IDcard.vue:318", "????", common_vendor.index.getStorageSync("allinfo")); common_vendor.index.__f__("log", "at pages/addoldman/IDcard.vue:324", "????", common_vendor.index.getStorageSync("allinfo"));
} }
}); });
return (_ctx, _cache) => { return (_ctx, _cache) => {
return { return {
a: common_vendor.o(goBack), a: common_vendor.o(goBack),
b: `${common_vendor.index.getStorageSync("moveHeight") + 40}px`, b: `${common_vendor.index.getStorageSync("moveHeight") + 40}px`,
c: `${common_vendor.index.getStorageSync("moveHeight") + 30}px`, c: `${common_vendor.index.getStorageSync("moveHeight") + 40}px`,
d: form.relationship, d: form.relationship,
e: common_vendor.o(($event) => form.relationship = $event.detail.value), e: common_vendor.o(($event) => form.relationship = $event.detail.value),
f: form.name, f: form.name,

View File

@ -1 +1 @@
<view class="container data-v-5fcb8e22"><view class="title-back data-v-5fcb8e22" style="{{'height:' + b}}"><view class="left-father data-v-5fcb8e22" bindtap="{{a}}"><image class="back-img data-v-5fcb8e22" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-5fcb8e22" style="font-size:30rpx">监护人信息</view></view></view><view class="data-v-5fcb8e22" style="{{'height:' + c}}"></view><view class="white-content data-v-5fcb8e22"><view class="content-title data-v-5fcb8e22"><view class="shu data-v-5fcb8e22"></view><view class="content-weight data-v-5fcb8e22">监护人基本信息</view></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">与长者关系</view><input class="one-right data-v-5fcb8e22" maxlength="10" placeholder="请输入与长者关系" value="{{d}}" bindinput="{{e}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">姓名</view><input class="one-right data-v-5fcb8e22" maxlength="5" placeholder="请输入姓名" value="{{f}}" bindinput="{{g}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">电话</view><input class="one-right data-v-5fcb8e22" type="number" maxlength="11" placeholder="请输入电话" value="{{h}}" bindinput="{{i}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">身份证号</view><input class="one-right data-v-5fcb8e22" type="number" maxlength="18" placeholder="请输入身份证号" value="{{j}}" bindinput="{{k}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">家庭住址</view><input class="one-right data-v-5fcb8e22" maxlength="30" placeholder="请输入家庭住址" value="{{l}}" bindinput="{{m}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">工作单位</view><input class="one-right data-v-5fcb8e22" maxlength="40" placeholder="请输入工作单位" value="{{n}}" bindinput="{{o}}"/></view></view><view class="data-v-5fcb8e22" style="display:flex;width:100%;position:fixed;bottom:20rpx;left:0"><view class="finish-button data-v-5fcb8e22" bindtap="{{p}}"> 提交 </view></view></view> <view class="container data-v-5fcb8e22"><image class="greenbgc data-v-5fcb8e22" src="https://www.focusnu.com/media/directive/index/greenbgc.png"/><view class="title-back data-v-5fcb8e22" style="{{'height:' + b}}"><view class="left-father data-v-5fcb8e22" bindtap="{{a}}"><image class="back-img data-v-5fcb8e22" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-5fcb8e22" style="font-size:30rpx">监护人信息</view></view></view><view class="data-v-5fcb8e22" style="{{'height:' + c}}"></view><view class="white-content data-v-5fcb8e22"><view class="content-title data-v-5fcb8e22"><view class="shu data-v-5fcb8e22"></view><view class="content-weight data-v-5fcb8e22">监护人基本信息</view></view><view class="white-message data-v-5fcb8e22"><view class="data-v-5fcb8e22"><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">与长者关系</view><input class="one-right data-v-5fcb8e22" maxlength="10" placeholder="请输入与长者关系" value="{{d}}" bindinput="{{e}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">姓名</view><input class="one-right data-v-5fcb8e22" maxlength="5" placeholder="请输入姓名" value="{{f}}" bindinput="{{g}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">电话</view><input class="one-right data-v-5fcb8e22" type="number" maxlength="11" placeholder="请输入电话" value="{{h}}" bindinput="{{i}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">身份证号</view><input class="one-right data-v-5fcb8e22" type="number" maxlength="18" placeholder="请输入身份证号" value="{{j}}" bindinput="{{k}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">家庭住址</view><input class="one-right data-v-5fcb8e22" maxlength="30" placeholder="请输入家庭住址" value="{{l}}" bindinput="{{m}}"/></view><view class="one data-v-5fcb8e22"><view class="one-left data-v-5fcb8e22">工作单位</view><input class="one-right data-v-5fcb8e22" maxlength="40" placeholder="请输入工作单位" value="{{n}}" bindinput="{{o}}"/></view></view></view></view><view class="data-v-5fcb8e22" style="display:flex;width:100%;position:fixed;bottom:20rpx;left:0"><view class="finish-button data-v-5fcb8e22" bindtap="{{p}}"> 提交 </view></view></view>

View File

@ -99,7 +99,19 @@
border-radius: 10rpx; border-radius: 10rpx;
margin: 3rpx 20rpx 0 30rpx; margin: 3rpx 20rpx 0 30rpx;
} }
.one.data-v-5fcb8e22 { .white-message.data-v-5fcb8e22 {
width: 100%;
margin-top: 20rpx;
padding-top: 20rpx;
padding-bottom: 20rpx;
margin-bottom: 30rpx;
border-radius: 35rpx;
background-color: #fff;
justify-content: space-around;
display: flex;
flex-direction: column;
}
.white-message .one.data-v-5fcb8e22 {
width: 90%; width: 90%;
margin-left: 5%; margin-left: 5%;
height: 100rpx; height: 100rpx;
@ -108,17 +120,27 @@
align-items: center; align-items: center;
margin-bottom: 10rpx; margin-bottom: 10rpx;
} }
.one .one-left.data-v-5fcb8e22 { .white-message .one .one-left.data-v-5fcb8e22 {
margin-left: 10rpx; margin-left: 10rpx;
font-size: 30rpx; font-size: 30rpx;
color: black;
z-index: 1;
} }
.one .one-right.data-v-5fcb8e22 { .white-message .one .one-right.data-v-5fcb8e22 {
margin-right: 10rpx;
font-size: 30rpx; font-size: 30rpx;
height: 100%;
color: #999999; color: #999999;
overflow: hidden; overflow: hidden;
/* 隐藏超出内容 */
white-space: nowrap; white-space: nowrap;
/* 不换行 */
text-overflow: ellipsis; text-overflow: ellipsis;
width: 350rpx; max-width: 380rpx;
display: flex; }
.greenbgc.data-v-5fcb8e22 {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 700rpx;
} }

View File

@ -288,7 +288,7 @@ const _sfc_main = {
textArray[4] = data.birthDate; textArray[4] = data.birthDate;
textArray[5] = data.idCardAddress; textArray[5] = data.idCardAddress;
textArray[6] = data.issuingAuthority; textArray[6] = data.issuingAuthority;
textArray[7] = `${data.startTime}-${compontent_public_long.swapLongTerm(data.endTime)}`; textArray[7] = `${data.startTime}-${data.endTime == "长期" ? compontent_public_long.swapLongTerm(data.endTime) : data.endTime}`;
headImge.value = `${request_index.base_url}/sys/common/static/${data.cardZmPath}`; headImge.value = `${request_index.base_url}/sys/common/static/${data.cardZmPath}`;
backImge.value = `${request_index.base_url}/sys/common/static/${data.cardFmPath}`; backImge.value = `${request_index.base_url}/sys/common/static/${data.cardFmPath}`;
fontphoto.value = data.cardZmPath; fontphoto.value = data.cardZmPath;
@ -302,7 +302,7 @@ const _sfc_main = {
textArray[4] = data.birthDate; textArray[4] = data.birthDate;
textArray[5] = data.idCardAddress; textArray[5] = data.idCardAddress;
textArray[6] = data.issuingAuthority; textArray[6] = data.issuingAuthority;
textArray[7] = `${data.startTime}-${compontent_public_long.swapLongTerm(data.endTime)}`; textArray[7] = `${data.startTime}-${data.endTime == "长期" ? compontent_public_long.swapLongTerm(data.endTime) : data.endTime}`;
headImge.value = `${request_index.base_url}/sys/common/static/${data.cardZmPath}`; headImge.value = `${request_index.base_url}/sys/common/static/${data.cardZmPath}`;
backImge.value = `${request_index.base_url}/sys/common/static/${data.cardFmPath}`; backImge.value = `${request_index.base_url}/sys/common/static/${data.cardFmPath}`;
fontphoto.value = data.cardZmPath; fontphoto.value = data.cardZmPath;

View File

@ -205,7 +205,7 @@ const _sfc_main = {
return { return {
a: common_vendor.o(goBack), a: common_vendor.o(goBack),
b: `${common_vendor.index.getStorageSync("moveHeight") + 40}px`, b: `${common_vendor.index.getStorageSync("moveHeight") + 40}px`,
c: `${common_vendor.index.getStorageSync("moveHeight") + 30}px`, c: `${common_vendor.index.getStorageSync("moveHeight") + 40}px`,
d: form.maritalStatus, d: form.maritalStatus,
e: common_vendor.o(($event) => form.maritalStatus = $event.detail.value), e: common_vendor.o(($event) => form.maritalStatus = $event.detail.value),
f: common_vendor.o(($event) => showmarry.value = true), f: common_vendor.o(($event) => showmarry.value = true),

View File

@ -1 +1 @@
<view class="container data-v-5da0d94e"><view class="title-back data-v-5da0d94e" style="{{'height:' + b}}"><view class="left-father data-v-5da0d94e" bindtap="{{a}}"><image class="back-img data-v-5da0d94e" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-5da0d94e" style="font-size:30rpx">入职登记表</view></view></view><view class="data-v-5da0d94e" style="{{'height:' + c}}"></view><view class="white-content data-v-5da0d94e"><view class="content-title data-v-5da0d94e"><view class="shu data-v-5da0d94e"></view><view class="content-weight data-v-5da0d94e">个人信息</view></view><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{f}}"><view class="one-left data-v-5da0d94e">婚否</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择婚否" value="{{d}}" bindinput="{{e}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{i}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{g}}" u-i="5da0d94e-0" bind:__l="__l" bindupdateModelValue="{{h}}" u-p="{{i}}"></u-select><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">联系电话</view><input class="one-right data-v-5da0d94e" type="number" maxlength="11" placeholder="请输入联系电话" value="{{j}}" bindinput="{{k}}"/></view><view class="one data-v-5da0d94e" style="position:relative"><view class="one-left data-v-5da0d94e">身高</view><input class="one-right data-v-5da0d94e" type="number" maxlength="3" placeholder="请输入身高" value="{{l}}" bindinput="{{m}}"/><view class="triangle-down-mi data-v-5da0d94e"> cm </view></view><view class="one data-v-5da0d94e" style="position:relative"><view class="one-left data-v-5da0d94e">体重</view><input class="one-right data-v-5da0d94e" type="number" maxlength="3" placeholder="请输入体重" value="{{n}}" bindinput="{{o}}"/><view class="triangle-down-mi data-v-5da0d94e"> kg </view></view><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{r}}"><view class="one-left data-v-5da0d94e">健康状况</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择健康状况" value="{{p}}" bindinput="{{q}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{v}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{s}}" u-i="5da0d94e-1" bind:__l="__l" bindupdateModelValue="{{t}}" u-p="{{v}}"></u-select><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{y}}"><view class="one-left data-v-5da0d94e">政治面貌</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择政治面貌" value="{{w}}" bindinput="{{x}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{B}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{z}}" u-i="5da0d94e-2" bind:__l="__l" bindupdateModelValue="{{A}}" u-p="{{B}}"></u-select><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">紧急联系人</view><input class="one-right data-v-5da0d94e" maxlength="5" placeholder="请输入紧急联系人" value="{{C}}" bindinput="{{D}}"/></view><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">紧急联系人电话</view><input class="one-right data-v-5da0d94e" maxlength="11" type="number" placeholder="请输入紧急联系人电话" value="{{E}}" bindinput="{{F}}"/></view><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">联系人与本人关系</view><input class="one-right data-v-5da0d94e" maxlength="10" placeholder="请输入联系人与本人关系" value="{{G}}" bindinput="{{H}}"/></view><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{K}}"><view class="one-left data-v-5da0d94e">户口性质</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择户口性质" value="{{I}}" bindinput="{{J}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{N}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{L}}" u-i="5da0d94e-3" bind:__l="__l" bindupdateModelValue="{{M}}" u-p="{{N}}"></u-select></view><view class="data-v-5da0d94e" style="display:flex;width:100%"><view class="finish-button data-v-5da0d94e" bindtap="{{O}}"> 确认并继续 </view></view></view> <view class="container data-v-5da0d94e"><image class="greenbgc data-v-5da0d94e" src="https://www.focusnu.com/media/directive/index/greenbgc.png"/><view class="title-back data-v-5da0d94e" style="{{'height:' + b}}"><view class="left-father data-v-5da0d94e" bindtap="{{a}}"><image class="back-img data-v-5da0d94e" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-5da0d94e" style="font-size:30rpx">入职登记表</view></view></view><view class="data-v-5da0d94e" style="{{'height:' + c}}"></view><view class="white-content data-v-5da0d94e"><view class="content-title data-v-5da0d94e"><view class="shu data-v-5da0d94e"></view><view class="content-weight data-v-5da0d94e">个人信息</view></view><view class="white-message data-v-5da0d94e"><view class="data-v-5da0d94e"><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{f}}"><view class="one-left data-v-5da0d94e">婚否</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择婚否" value="{{d}}" bindinput="{{e}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{i}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{g}}" u-i="5da0d94e-0" bind:__l="__l" bindupdateModelValue="{{h}}" u-p="{{i}}"></u-select><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">联系电话</view><input class="one-right data-v-5da0d94e" type="number" maxlength="11" placeholder="请输入联系电话" value="{{j}}" bindinput="{{k}}"/></view><view class="one data-v-5da0d94e" style="position:relative"><view class="one-left data-v-5da0d94e">身高</view><input class="one-right data-v-5da0d94e" type="number" maxlength="3" placeholder="请输入身高" value="{{l}}" bindinput="{{m}}"/><view class="triangle-down-mi data-v-5da0d94e"> cm </view></view><view class="one data-v-5da0d94e" style="position:relative"><view class="one-left data-v-5da0d94e">体重</view><input class="one-right data-v-5da0d94e" type="number" maxlength="3" placeholder="请输入体重" value="{{n}}" bindinput="{{o}}"/><view class="triangle-down-mi data-v-5da0d94e"> kg </view></view><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{r}}"><view class="one-left data-v-5da0d94e">健康状况</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择健康状况" value="{{p}}" bindinput="{{q}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{v}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{s}}" u-i="5da0d94e-1" bind:__l="__l" bindupdateModelValue="{{t}}" u-p="{{v}}"></u-select><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{y}}"><view class="one-left data-v-5da0d94e">政治面貌</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择政治面貌" value="{{w}}" bindinput="{{x}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{B}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{z}}" u-i="5da0d94e-2" bind:__l="__l" bindupdateModelValue="{{A}}" u-p="{{B}}"></u-select><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">紧急联系人</view><input class="one-right data-v-5da0d94e" maxlength="5" placeholder="请输入紧急联系人" value="{{C}}" bindinput="{{D}}"/></view><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">紧急联系人电话</view><input class="one-right data-v-5da0d94e" maxlength="11" type="number" placeholder="请输入紧急联系人电话" value="{{E}}" bindinput="{{F}}"/></view><view class="one data-v-5da0d94e"><view class="one-left data-v-5da0d94e">联系人与本人关系</view><input class="one-right data-v-5da0d94e" maxlength="10" placeholder="请输入联系人与本人关系" value="{{G}}" bindinput="{{H}}"/></view><view class="one data-v-5da0d94e" style="position:relative" bindtap="{{K}}"><view class="one-left data-v-5da0d94e">户口性质</view><input disabled style="cursor:not-allowed;pointer-events:none" class="one-right data-v-5da0d94e" type="text" placeholder="请选择户口性质" value="{{I}}" bindinput="{{J}}"/><image class="triangle-down data-v-5da0d94e" src="https://www.focusnu.com/media/directive/login/xia.png"/></view><u-select wx:if="{{N}}" class="data-v-5da0d94e" style="font-size:35rpx" bindconfirm="{{L}}" u-i="5da0d94e-3" bind:__l="__l" bindupdateModelValue="{{M}}" u-p="{{N}}"></u-select></view></view></view><view class="data-v-5da0d94e" style="display:flex;width:100%"><view class="finish-button data-v-5da0d94e" bindtap="{{O}}"> 确认并继续 </view></view></view>

View File

@ -102,6 +102,18 @@
.line.data-v-5da0d94e { .line.data-v-5da0d94e {
margin: 10rpx 0; margin: 10rpx 0;
} }
.white-message.data-v-5da0d94e {
width: 100%;
margin-top: 20rpx;
padding-top: 20rpx;
padding-bottom: 20rpx;
margin-bottom: 30rpx;
border-radius: 35rpx;
background-color: #fff;
justify-content: space-around;
display: flex;
flex-direction: column;
}
.one.data-v-5da0d94e { .one.data-v-5da0d94e {
width: 90%; width: 90%;
margin-left: 5%; margin-left: 5%;
@ -143,3 +155,10 @@
font-size: 30rpx; font-size: 30rpx;
color: #999999; color: #999999;
} }
.greenbgc.data-v-5da0d94e {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 700rpx;
}

File diff suppressed because one or more lines are too long

View File

@ -451,6 +451,7 @@
align-items: center; align-items: center;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
font-size: 30rpx;
} }
.middle-view .middle-small .middle-small-img.data-v-1cf27b2a { .middle-view .middle-small .middle-small-img.data-v-1cf27b2a {
width: 65rpx; width: 65rpx;

View File

@ -1 +1 @@
<view class="login-container data-v-d08ef7d4"><image class="title-imge data-v-d08ef7d4" src="https://www.focusnu.com/media/directive/login/icon.png"/><image class="photo-imge data-v-d08ef7d4" src="https://www.focusnu.com/media/directive/login/bgc.png"/><view class="under-container data-v-d08ef7d4"><button class="button-blue data-v-d08ef7d4" bindtap="{{a}}"> 一键登录 </button><view class="under-container-title data-v-d08ef7d4" bindtap="{{d}}"><view class="radio-father data-v-d08ef7d4"><view class="{{['data-v-d08ef7d4', b]}}"></view></view><text class="radio-circle-font data-v-d08ef7d4"> 我已阅读并同意 </text><text class="radio-circle-blue data-v-d08ef7d4" catchtap="{{c}}"> 《NU护理单元使用条款》 </text><text class="radio-circle-font data-v-d08ef7d4"> 并授权NU </text><text style="margin-top:10rpx" class="radio-circle-font data-v-d08ef7d4"> 获取本机号码。账号仅限特定人群登录并进行账号鉴权。 </text></view></view><transition wx:if="{{h}}" class="data-v-d08ef7d4" u-s="{{['d']}}" u-i="d08ef7d4-0" bind:__l="__l" u-p="{{h}}"><view wx:if="{{e}}" class="overlay data-v-d08ef7d4" bindtap="{{f}}" style="{{'background-color:' + g}}"/></transition><transition wx:if="{{l}}" class="data-v-d08ef7d4" u-s="{{['d']}}" u-i="d08ef7d4-1" bind:__l="__l" u-p="{{l}}"><view wx:if="{{i}}" class="modal data-v-d08ef7d4"><view class="modal-title data-v-d08ef7d4">使用条款</view><view class="model-p data-v-d08ef7d4"><text class="data-v-d08ef7d4">  为了更好地保障您的合法权益,请阅读并同意</text><text class="data-v-d08ef7d4" style="color:rgb(0,141,255)" bindtap="{{j}}">《NU护理单元使用条款》</text><text class="data-v-d08ef7d4">,同意后将自动登录。</text></view><view class="model-down data-v-d08ef7d4"><view class="model-blue data-v-d08ef7d4" bindtap="{{k}}"> 同意 </view></view></view></transition></view> <view class="login-container data-v-d08ef7d4"><image class="title-imge data-v-d08ef7d4" src="https://www.focusnu.com/media/directive/login/icon.png"/><image class="photo-imge data-v-d08ef7d4" src="https://www.focusnu.com/media/directive/login/bgc.png"/><view class="under-container data-v-d08ef7d4"><view class="button-blue data-v-d08ef7d4" bindtap="{{a}}"> 一键登录 </view><view class="under-container-title data-v-d08ef7d4" bindtap="{{d}}"><view class="radio-father data-v-d08ef7d4"><view class="{{['data-v-d08ef7d4', b]}}"></view></view><text class="radio-circle-font data-v-d08ef7d4"> 我已阅读并同意 </text><text class="radio-circle-blue data-v-d08ef7d4" catchtap="{{c}}"> 《NU护理单元使用条款》 </text><text class="radio-circle-font data-v-d08ef7d4"> 并授权NU </text><text style="margin-top:10rpx" class="radio-circle-font data-v-d08ef7d4"> 获取本机号码。账号仅限特定人群登录并进行账号鉴权。 </text></view></view><transition wx:if="{{h}}" class="data-v-d08ef7d4" u-s="{{['d']}}" u-i="d08ef7d4-0" bind:__l="__l" u-p="{{h}}"><view wx:if="{{e}}" class="overlay data-v-d08ef7d4" bindtap="{{f}}" style="{{'background-color:' + g}}"/></transition><transition wx:if="{{l}}" class="data-v-d08ef7d4" u-s="{{['d']}}" u-i="d08ef7d4-1" bind:__l="__l" u-p="{{l}}"><view wx:if="{{i}}" class="modal data-v-d08ef7d4"><view class="modal-title data-v-d08ef7d4">使用条款</view><view class="model-p data-v-d08ef7d4"><text class="data-v-d08ef7d4">  为了更好地保障您的合法权益,请阅读并同意</text><text class="data-v-d08ef7d4" style="color:rgb(0,141,255)" bindtap="{{j}}">《NU护理单元使用条款》</text><text class="data-v-d08ef7d4">,同意后将自动登录。</text></view><view class="model-down data-v-d08ef7d4"><view class="model-blue data-v-d08ef7d4" bindtap="{{k}}"> 同意 </view></view></view></transition></view>

View File

@ -229,7 +229,7 @@
margin-bottom: 25rpx; margin-bottom: 25rpx;
} }
.white-box-father .white-box .box-font.data-v-f6d04c18 { .white-box-father .white-box .box-font.data-v-f6d04c18 {
font-size: 26rpx; font-size: 30rpx;
} }
.result.data-v-f6d04c18 { .result.data-v-f6d04c18 {
margin: 0 auto; margin: 0 auto;
@ -449,6 +449,7 @@
bottom: 40rpx; bottom: 40rpx;
width: 100%; width: 100%;
padding: 0 40rpx; padding: 0 40rpx;
font-size: 30rpx;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
} }
@ -468,6 +469,7 @@
justify-content: space-between; justify-content: space-between;
padding: 0 60rpx; padding: 0 60rpx;
align-items: center; align-items: center;
font-size: 30rpx;
} }
.big-button-double .right-button .right-button-one .right-button-img.data-v-f6d04c18 { .big-button-double .right-button .right-button-one .right-button-img.data-v-f6d04c18 {
width: 70rpx; width: 70rpx;
@ -488,6 +490,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
font-size: 30rpx;
} }
.fuwu-button .fuwu-button-bottom.data-v-f6d04c18 { .fuwu-button .fuwu-button-bottom.data-v-f6d04c18 {
width: 100%; width: 100%;

View File

@ -5,12 +5,11 @@
}, },
"setting": { "setting": {
"urlCheck": false, "urlCheck": false,
"es6": true, "es6": false,
"postcss": false, "postcss": false,
"minified": true, "minified": true,
"newFeature": true, "newFeature": true,
"bigPackageSizeSupport": true, "bigPackageSizeSupport": true
"enhance": true
}, },
"compileType": "miniprogram", "compileType": "miniprogram",
"libVersion": "latest", "libVersion": "latest",