This commit is contained in:
wangweidong 2026-02-24 15:18:25 +08:00
parent f1c79114f1
commit 090e10289a
8 changed files with 68 additions and 30 deletions

View File

@ -29,7 +29,7 @@
</view>
<view class="second-font">
<text>
您提交的"{{item.comName}}"加盟申请
您提交的"{{item.departName}}"加盟申请
<text style="color: #fa8622;">
正在审核中
</text>
@ -50,19 +50,20 @@
lazy-load="false" />
<view class="white-font">
您提交的
</view>
<view class="second-font">
<text>
"{{item.comName}}"
您提交的"{{item.departName}}"
</text>
</view>
<view class="second-font">
加盟申请
<text style="color: #eb2b59;">
审核不通过
</text>
</view>
<view class="second-font">
</view>
<view class="button-blue-spec" @click="again(item)">
重新提交
@ -226,10 +227,10 @@
</view>
</view>
<!-- <view class="white-content-father-time" v-if="item.status==`2`">
<view class="white-content" style="background-color: transparent;" v-if="item.comName">
<view class="white-content" style="background-color: transparent;" v-if="item.departName">
<view class="white-bgc">
{{item.comName}}
{{item.departName}}
</view>
</view>
@ -256,7 +257,7 @@
</view>
<view style="font-size: 32rpx;margin-top: 50rpx;">
{{menuArray[which]?.comName}}
{{menuArray[which]?.departName}}
</view>
</view>

View File

@ -32,10 +32,10 @@
<view class="gray-font">
<image style="margin-left: 10rpx;height: 25rpx;width: 25rpx;margin-right: 10rpx;"
src="https://www.focusnu.com/media/directive/index/ruzhu/man.png" />
{{ item.guardianName }} |
{{ item.departFzr }} |
<image style="margin-left: 10rpx;height: 25rpx;width: 25rpx;margin-right: 10rpx;"
src="https://www.focusnu.com/media/directive/index/ruzhu/phone.png" />
{{ item.guardianPhone }}
{{ item.departPhone }}
</view>
<view class="gray-font">

View File

@ -231,7 +231,7 @@
<image class="white-content-secondimg-zero"
src="https://www.focusnu.com/media/directive/index/oldmanmenu/bgc.png" lazy-load="false" />
<view class="button-blue-zero" @click="searchjigou(item)">
添加长者信息
添加长者
</view>
</view>
<view class="white-content" style="margin: 0 auto;margin-top: 0rpx;height: 750rpx;"
@ -327,7 +327,7 @@
const content = ref("");
const buttonArray = ref(["护理服务", "医疗服务", "账单查询", "视频监视", "外出申请", "长者信息", "监护人"])
const buttonArray = ref(["护理服务", "医疗服务", "账单查询", "视频影像", "外出申请", "长者信息", "监护人"])
const statusarray = ["loading", "success", "fail"]
const which = ref(0);

View File

@ -44,7 +44,7 @@
{{ item.title }}
</view>
<view class="card-right">
{{ item.createTime.substring(item.createTime.indexOf("-") + 1, item.createTime.indexOf("-") + 6) }}
<!-- {{ item.createTime.substring(item.createTime.indexOf("-") + 1, item.createTime.indexOf("-") + 6) }} -->
<view class="card-dian" v-if="item.izRead==`N`"></view>
</view>
@ -56,6 +56,11 @@
<view class="card-bottom">
{{ item.content }}
</view>
<view class="card-title">
<view class="card-title-font" style="width: 93%;justify-content: flex-end;display: flex;">
{{ item.createTime }}
</view>
</view>
</view>
</view>
@ -464,10 +469,10 @@
.card-right {
position: absolute;
right: 10rpx;
right: 30rpx;
top: 50%;
transform: translateY(-50%);
width: 140rpx;
width: 40rpx;
display: flex;
color: #999999;
}

View File

@ -6,7 +6,7 @@
</view>
</view> -->
<view class="title-back" :style="{height:`${uni.getStorageSync('moveHeight')+40}px`}">
<view class="left-father" @click="goBack">
<view class="left-father" @click="uni.navigateBack()">
<image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" />
<!-- <view style="font-size: 30rpx;">机构加盟</view> -->
</view>
@ -33,7 +33,7 @@
</view>
</view>
<view style="width: 100%;display: flex;justify-content: flex-end;">
<view class="back-right" @click="goBack">
<view class="back-right" @click="jumpSaoyisao">
重新扫码
</view>
@ -53,9 +53,36 @@
import {
getOrgNuId
} from './api.js'
const goBack = () => {
uni.navigateBack()
function isAtLeastTenChars(str) {
return typeof str === "string" && str.length >= 10;
}
async function jumpSaoyisao() {
// uni.navigateTo({
// url: "/pages/oldmanindex/saoyisao"
// })
const res = await uni.scanCode();
// console.log("res",res.result)
if (isAtLeastTenChars(res.result)) {
// console.log("res1111",res.result)
getOrgNuId(res.result).then(res0 => {
if (res0.result) {
// console.log("<><><",res0.result)
item.value = res0.result
} else {
uni.showToast({
title: '扫描的二维码有误',
icon: 'none', //
duration: 2000
});
}
})
} else {
uni.showToast({
title: '扫描的二维码有误',
icon: 'none', //
duration: 2000
});
}
}
const item = ref({});
onLoad((options) => {

View File

@ -44,7 +44,7 @@
{{ item.title }}
</view>
<view class="card-right">
{{ item.createTime.substring(item.createTime.indexOf("-") + 1, item.createTime.indexOf("-") + 6) }}
<!-- {{ item.createTime.substring(item.createTime.indexOf("-") + 1, item.createTime.indexOf("-") + 6) }} -->
<view class="card-dian" v-if="item.izRead==`N`"></view>
</view>
@ -56,6 +56,11 @@
<view class="card-bottom">
{{ item.content }}
</view>
<view class="card-title">
<view class="card-title-font" style="width: 93%;justify-content: flex-end;display: flex;">
{{ item.createTime }}
</view>
</view>
</view>
</view>
@ -465,10 +470,10 @@
.card-right {
position: absolute;
right: 10rpx;
right: 30rpx;
top: 50%;
transform: translateY(-50%);
width: 140rpx;
width: 40rpx;
display: flex;
color: #999999;
}

View File

@ -29,7 +29,7 @@
lazy-load="false" />
<view class="second-font" style="margin-top: 350rpx;">
<text>
{{item.comName}}邀请您加入
{{item.departName}}邀请您加入
</text>
</view>
<view style="margin-top: 60rpx;color: #999999;">
@ -54,7 +54,7 @@
</view>
<view class="second-font">
<text>
您提交的"{{item.comName}}"
您提交的"{{item.departName}}"
入驻申请
<text style="color: #fa8622;">
正在审核中
@ -76,7 +76,7 @@
</view>
<view class="second-font">
<text>
您提交的"{{item.comName}}"
您提交的"{{item.departName}}"
入驻申请
<text style="color: #eb2b59;">
审核不通过
@ -219,7 +219,7 @@
<!-- <view class="white-content-father-time" v-if=" item.applyStatus==`2` || item.applyType == `2`">
<view class="white-content" style="background-color: transparent;">
<view class="white-bgc">
{{ item.comName }}
{{ item.departName }}
</view>
</view>
@ -240,7 +240,7 @@
</view>
</view>
<view style="font-size: 32rpx;margin-top: 50rpx;">
{{menuArray[which]?.comName}}
{{menuArray[which]?.departName}}
</view>
</view>
<downMenu :itemTarget="0" />

View File

@ -33,10 +33,10 @@
<view class="gray-font">
<image style="margin-left: 10rpx;height: 25rpx;width: 25rpx;margin-right: 10rpx;"
src="https://www.focusnu.com/media/directive/index/ruzhu/man.png" />
{{ item.comLegalPerson }} |
{{ item.orgLeader }} |
<image style="margin-left: 10rpx;height: 25rpx;width: 25rpx;margin-right: 10rpx;"
src="https://www.focusnu.com/media/directive/index/ruzhu/phone.png" />
{{ item.tel }}
{{ item.orgLeaderPhone }}
</view>
<view class="gray-font">
<image style="margin-left: 10rpx;height: 25rpx;width: 25rpx;margin-right: 10rpx;"