This commit is contained in:
wangweidong 2026-01-21 17:26:30 +08:00
parent 6564273873
commit 1c2385653a
5 changed files with 23 additions and 17 deletions

View File

@ -109,9 +109,10 @@
<scroll-view class="scrol" scroll-y="true"> <scroll-view class="scrol" scroll-y="true">
<view v-for="(v,i) in fwzlarr" :key='i' :class="i==fwzldex?'act':''" class="cdk" @click="zldex(i)"> <view v-for="(v,i) in fwzlarr" :key='i' :class="i==fwzldex?'act':''" class="cdk" @click="zldex(i)">
<image :src="fwzldex!=i?v.netImmediateFile:v.netPreviewFileSmall" mode="aspectFill"></image> <image :src="fwzldex!=i?v.netImmediateFile:v.netPreviewFileSmall" mode="aspectFill"></image>
<text style="white-space: nowrap;width: 100%;text-overflow: ellipsis;overflow: hidden;">{{v.directiveName}}</text> <text style="white-space: nowrap;width: 100%;text-overflow: ellipsis;overflow: hidden;">{{v.directiveName?.substring(0,4)}}</text>
<view>{{v.directiveName?.substring(4,12)}}</view>
</view> </view>
<view style="width: 13vw;height: 13vw;margin: 7vw 0 0 23.5vw;display: block;background: none;" v-if="fwzlarr.length==0"> <view style="width: 13vw;height: 13vw;margin: 7vw 0 0 23.5vw;display: block;background: none;" v-if="fwzlarr?.length==0||!fwzlarr">
<image src="/static/index/card/zw.png" mode="aspectFill" style="width:13vw;height: 13vw"></image> <image src="/static/index/card/zw.png" mode="aspectFill" style="width:13vw;height: 13vw"></image>
<view style="width: 100%;text-align: center; font-weight: 400; font-size: 1.2vw;color: #555555;margin-top: -3vw;text-align: center;white-space: nowrap;"> <view style="width: 100%;text-align: center; font-weight: 400; font-size: 1.2vw;color: #555555;margin-top: -3vw;text-align: center;white-space: nowrap;">
暂无服务指令 暂无服务指令
@ -347,7 +348,7 @@
<view class=""> <view class="">
<view class="first-line"> <view class="first-line">
<view style="font-size: 1.2vw;"> <view style="font-size: 1.2vw;">
{{ item.nuName }} {{ item.nuName.length>6?item.nuName.substring(0,6)+'.':item.nuName }}
</view> </view>
<view class="first-line-second"> <view class="first-line-second">
{{ item.elderInfo?.name?`入住`:`空闲` }} {{ item.elderInfo?.name?`入住`:`空闲` }}
@ -988,13 +989,13 @@
const shtab = (e)=>{ const shtab = (e)=>{
fwzlindex.value = e; fwzlindex.value = e;
if(e==0){ if(e==0){
fwzlarr.value = zlarr.value.care fwzlarr.value = zlarr.value?.care
} }
if(e==1){ if(e==1){
fwzlarr.value = []; fwzlarr.value = [];
} }
if(e==2){ if(e==2){
fwzlarr.value = zlarr.value.logistics fwzlarr.value = zlarr.value?.logistics
} }
} }
const zldex = (e) =>{ const zldex = (e) =>{
@ -2256,6 +2257,13 @@
color: #333333; color: #333333;
width: 100%; width: 100%;
} }
view{
text-align: center;
font-weight: 400;
font-size: 0.7vw;
color: #555;
width: 100%;
}
} }
.act{ .act{
background: #F2F8FF; background: #F2F8FF;

View File

@ -574,17 +574,15 @@
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
employeeId:uni.getStorageSync('userInfo').employessId, employeeId:uni.getStorageSync('userInfo').employessId,
nuId:uni.getStorageSync('nuId') nuId:uni.getStorageSync('nuId'),
workType:5
}) })
const plsbuy = ref([]) const plsbuy = ref([])
const firstgetqueryCgdList = (nuId) => { const firstgetqueryCgdList = (nuId) => {
form.nuId = nuId; form.nuId = nuId;
queryOrderList(form).then(res => { queryOrderList(form).then(res => {
console.log(res)
if(res.result.records.length>0){ if(res.result.records.length>0){
indexmessage.value = res.result.records[0]; indexmessage.value = res.result.records[0];
// clickLeftMenu(0,res.result.records[0])
}else{ }else{
indexmessage.value = {}; indexmessage.value = {};
} }
@ -838,7 +836,6 @@
nuId:nuId nuId:nuId
} }
queryCountByType(data).then(res=>{ queryCountByType(data).then(res=>{
console.log(res)
hldyobj.value = res.result hldyobj.value = res.result
}) })
} }
@ -848,7 +845,7 @@
const zlfunc = (nuId)=>{ const zlfunc = (nuId)=>{
let data = { let data = {
nuId:nuId, nuId:nuId,
elderId:elderId // elderId:elderId
} }
queryAll(data).then(res=>{ queryAll(data).then(res=>{
console.log(res) console.log(res)
@ -1030,7 +1027,8 @@
leftMenuArray.value = res.result.records; leftMenuArray.value = res.result.records;
// console.log(leftMenuArray.value) // console.log(leftMenuArray.value)
filteredMenu(2).forEach((element : any, index : number) => { filteredMenu(2).forEach((element : any, index : number) => {
if (element.nuId === uni.getStorageSync('NUall').nuId) { // console.log(element.nuId , uni.getStorageSync('NUall').nuId,filteredMenu(2))
if (element.nuId == uni.getStorageSync('NUall').nuId) {
menutarget.value = index; menutarget.value = index;
clickmenu(index) clickmenu(index)
} }

View File

@ -51,7 +51,7 @@
<view class="gray-box-bgc"> <view class="gray-box-bgc">
<scroll-view style="width: 100%;height: 100%;" scroll-y :show-scrollbar="true"> <scroll-view style="width: 100%;height: 100%;" scroll-y :show-scrollbar="true">
<view style="margin-bottom: 10rpx;"> <view style="margin-bottom: 10rpx;">
1服务条款与隐私政策确认登录即表示您已阅读并同意NU 护理单元用户服务协议NU 护理单元隐私信息保护政策其中包含对您权利义务个人信息处理的详细说明 1服务条款与隐私政策确认登录即表示您已阅读并同意护理单元用户服务协议护理单元隐私信息保护政策其中包含对您权利义务个人信息处理的详细说明
</view> </view>
<view style="margin-bottom: 10rpx;"> <view style="margin-bottom: 10rpx;">
2账号使用规范账号仅限本人使用禁止恶意注册转借或泄露请妥善保管账号密码因保管不善导致的账号安全问题由您自行承担责任 2账号使用规范账号仅限本人使用禁止恶意注册转借或泄露请妥善保管账号密码因保管不善导致的账号安全问题由您自行承担责任

View File

@ -59,8 +59,8 @@
<view class="box-any" @touchmove.prevent> <view class="box-any" @touchmove.prevent>
<view class="title-left"> <view class="title-left">
<!-- <image class="back-img" src="/static/left.png" @click="openany=false"></image> --> <!-- <image class="back-img" src="/static/left.png" @click="openany=false"></image> -->
<view v-if="!opentype" class="back-font">NU护理单元隐私信息保护政策</view> <view v-if="!opentype" class="back-font">护理单元隐私信息保护政策</view>
<view v-if="opentype" class="back-font">NU护理单元用户服务协议</view> <view v-if="opentype" class="back-font">护理单元用户服务协议</view>
</view> </view>
<twoseven v-if="!opentype" /> <twoseven v-if="!opentype" />
<oneseven v-if="opentype" /> <oneseven v-if="opentype" />

View File

@ -73,8 +73,8 @@
<view class="box-any" @touchmove.prevent> <view class="box-any" @touchmove.prevent>
<view class="title-left"> <view class="title-left">
<!-- <image class="back-img" src="/static/left.png" @click="openany=false"></image> --> <!-- <image class="back-img" src="/static/left.png" @click="openany=false"></image> -->
<view v-if="!opentype" class="back-font">NU护理单元隐私信息保护政策</view> <view v-if="!opentype" class="back-font">护理单元隐私信息保护政策</view>
<view v-if="opentype" class="back-font">NU护理单元用户服务协议</view> <view v-if="opentype" class="back-font">护理单元用户服务协议</view>
</view> </view>
<twoseven v-if="!opentype" /> <twoseven v-if="!opentype" />
<oneseven v-if="opentype" /> <oneseven v-if="opentype" />