2025-06-09 17:33:50 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="login-container">
|
|
|
|
|
|
2025-06-19 17:03:31 +08:00
|
|
|
|
<image class="photo-imge" src="https://www.focusnu.com/media/directive/index/workjoin/bgc.png" />
|
|
|
|
|
<image class="old-imge" src="https://www.focusnu.com/media/directive/index/workjoin/ren.png" />
|
2025-06-09 17:33:50 +08:00
|
|
|
|
<view class="under-container" @touchstart.stop @touchmove.stop @touchend.stop>
|
|
|
|
|
<view class="white-card">
|
2025-06-13 13:42:14 +08:00
|
|
|
|
<image class="left-img"
|
2025-06-19 17:03:31 +08:00
|
|
|
|
:src="type=== `1` ? `https://www.focusnu.com/media/directive/index/workjoin/man.png` : `https://www.focusnu.com/media/directive/index/workjoin/bgcren.png`" />
|
2025-06-09 17:33:50 +08:00
|
|
|
|
<view class="card-font">
|
2025-06-13 13:42:14 +08:00
|
|
|
|
<view style="font-size: 30rpx;font-weight: 600;margin: 20rpx 0 30rpx 0;">
|
|
|
|
|
{{type=== `1` ? `机构加盟`:`员工入驻`}}
|
|
|
|
|
</view>
|
2025-06-09 17:33:50 +08:00
|
|
|
|
<view style="color: #666666;font-size: 25rpx;">
|
|
|
|
|
护理院日常护理涵盖生活照料、健康监测、康复护理及心理关怀,为老人提供贴心照护。
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="white-ball" @click="goback">
|
2025-06-19 17:03:31 +08:00
|
|
|
|
<image class="ball-imge" src="https://www.focusnu.com/media/directive/index/workjoin/x.png" />
|
2025-06-09 17:33:50 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="shu-father">
|
|
|
|
|
<view class="shu"></view>
|
|
|
|
|
<view class="shu-font">{{ type==="1" ? `机构加盟审核列表` : `员工入驻审核列表` }}</view>
|
2025-06-13 13:42:14 +08:00
|
|
|
|
|
2025-06-09 17:33:50 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="under-scroll">
|
2025-06-13 13:42:14 +08:00
|
|
|
|
<scroll-view scroll-y refresher-enabled :refresher-triggered="isRefreshing"
|
|
|
|
|
@refresherrefresh="onRefresh" style="height: 100%;width: 100%;">
|
2025-06-09 17:33:50 +08:00
|
|
|
|
<view v-for="(item,index) in workArray" :key="index">
|
|
|
|
|
<view class="white-small">
|
2025-06-11 17:33:34 +08:00
|
|
|
|
<view style="width: 100%;margin-bottom: 80rpx;font-size: 25rpx;">
|
2025-06-13 13:42:14 +08:00
|
|
|
|
{{item.comName}}申请入驻加盟护理单元,提交时间:{{item.updateTime}},审核结果:{{item.status==1 ? "审核中" :item.status==2?`审核完成`:item.status==3?`驳回`:`待提交` }}
|
|
|
|
|
{{item.status==3?`,驳回备注:${item.content}`:``}}
|
|
|
|
|
</view>
|
2025-06-09 17:33:50 +08:00
|
|
|
|
<view class="button-heng">
|
2025-06-13 13:42:14 +08:00
|
|
|
|
<view class="blue-button" v-if="item.status==3||item.status==0" @click="again(item)">
|
|
|
|
|
修改申请
|
2025-06-09 17:33:50 +08:00
|
|
|
|
</view>
|
2025-06-13 13:42:14 +08:00
|
|
|
|
<view class="white-button" @click="jumpToAll(item)">
|
2025-06-09 17:33:50 +08:00
|
|
|
|
查看详情
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</scroll-view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import {
|
|
|
|
|
reactive,
|
|
|
|
|
ref
|
|
|
|
|
} from 'vue';
|
2025-06-13 13:42:14 +08:00
|
|
|
|
import {
|
|
|
|
|
onLoad,
|
|
|
|
|
onPullDownRefresh
|
|
|
|
|
} from '@dcloudio/uni-app'
|
|
|
|
|
import {
|
|
|
|
|
getMessageList
|
|
|
|
|
} from '@/pages/addjigou/api/addjigou.js'
|
2025-06-09 17:33:50 +08:00
|
|
|
|
const type = ref(0)
|
2025-06-11 17:33:34 +08:00
|
|
|
|
const workArray = ref([])
|
2025-06-13 13:42:14 +08:00
|
|
|
|
const isRefreshing = ref(false)
|
|
|
|
|
const onRefresh = () => {
|
|
|
|
|
console.log("下拉刷新被触发")
|
|
|
|
|
isRefreshing.value = true
|
|
|
|
|
getMessageList(uni.getStorageSync('tel')).then(res => {
|
|
|
|
|
workArray.value = [];
|
|
|
|
|
workArray.value = res.result;
|
|
|
|
|
isRefreshing.value = false
|
|
|
|
|
})
|
|
|
|
|
}
|
2025-06-09 17:33:50 +08:00
|
|
|
|
// 页面加载时接收 URL 参数
|
|
|
|
|
onLoad((options) => {
|
2025-06-13 13:42:14 +08:00
|
|
|
|
// options.type 即为你在 URL 里传的 number
|
|
|
|
|
type.value = options.type || ''
|
|
|
|
|
if (type.value) {
|
|
|
|
|
getMessageList(uni.getStorageSync('tel')).then(res => {
|
|
|
|
|
workArray.value = res.result
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-06-09 17:33:50 +08:00
|
|
|
|
})
|
2025-06-13 13:42:14 +08:00
|
|
|
|
|
2025-06-09 17:33:50 +08:00
|
|
|
|
|
|
|
|
|
const goback = () => {
|
|
|
|
|
uni.navigateBack()
|
|
|
|
|
}
|
2025-06-13 13:42:14 +08:00
|
|
|
|
|
|
|
|
|
const again = (item) => {
|
|
|
|
|
uni.setStorageSync("baddata", item)
|
|
|
|
|
uni.setStorageSync('specicalid', item.id);
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/addjigou/name`
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const jumpToAll = (element) => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: `/pages/addjigou/all?element=${JSON.stringify(element)}`
|
|
|
|
|
});
|
|
|
|
|
}
|
2025-06-09 17:33:50 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.login-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: rgb(239, 241, 252);
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
margin-top: 70rpx;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.title-imge {
|
|
|
|
|
width: 100rpx;
|
|
|
|
|
height: 105rpx;
|
|
|
|
|
margin-left: 100rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.title-font {
|
|
|
|
|
font-size: 35rpx;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-left: 105rpx;
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.photo-imge {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0rpx;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.old-imge {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 50%;
|
|
|
|
|
transform: translateX(50%);
|
|
|
|
|
top: 0rpx;
|
|
|
|
|
width: 550rpx;
|
|
|
|
|
height: 750rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.under-container {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: rgb(236, 238, 244);
|
|
|
|
|
box-shadow: 10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.white-card {
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
width: 94%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
height: 320rpx;
|
|
|
|
|
border-radius: 45rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.left-img {
|
|
|
|
|
width: 150rpx;
|
|
|
|
|
height: 250rpx;
|
|
|
|
|
margin-left: 50rpx;
|
|
|
|
|
// margin-top: 35rpx;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-font {
|
|
|
|
|
margin-left: 60rpx;
|
|
|
|
|
// margin-top: 50rpx;
|
|
|
|
|
width: 380rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.white-ball {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 60rpx;
|
|
|
|
|
top: 60rpx;
|
|
|
|
|
width: 75rpx;
|
|
|
|
|
height: 75rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 1rpx solid #b1b1b1;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.ball-imge {
|
|
|
|
|
width: 30rpx;
|
|
|
|
|
height: 30rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shu-father {
|
|
|
|
|
display: flex;
|
|
|
|
|
margin: 30rpx 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.shu {
|
|
|
|
|
background: linear-gradient(to bottom, #00C9FF, #0076FF);
|
|
|
|
|
margin: 0 5%;
|
|
|
|
|
width: 15rpx;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
height: 35rpx;
|
|
|
|
|
margin-right: 3%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shu-font {
|
|
|
|
|
color: #666666;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.under-scroll {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100% - 460rpx);
|
|
|
|
|
|
|
|
|
|
.white-small {
|
|
|
|
|
width: 94%;
|
|
|
|
|
margin-left: 3%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
font-size: 25rpx;
|
|
|
|
|
color: #999999;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-heng {
|
|
|
|
|
// width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 30rpx;
|
|
|
|
|
right: 0;
|
|
|
|
|
|
|
|
|
|
.white-button {
|
|
|
|
|
width: 180rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: linear-gradient(to bottom, #F3F3F5, #DEE4E9);
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
color: black;
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.blue-button {
|
|
|
|
|
width: 180rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: linear-gradient(to right, #00C9FF, #0076FF);
|
|
|
|
|
margin-right: 20rpx;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|