11111111111111
This commit is contained in:
parent
e635a9c6de
commit
ec9c1ae97a
18
pages.json
18
pages.json
|
|
@ -131,7 +131,8 @@
|
|||
{
|
||||
"path": "pages/yuangongindex/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "首页"
|
||||
"navigationBarTitleText": "首页",
|
||||
"enablePullDownRefresh": true
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
@ -232,6 +233,21 @@
|
|||
"enablePullDownRefresh": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/addoldman/jianhurenall",
|
||||
"style": {
|
||||
"navigationBarTitleText": "查看监护人",
|
||||
"enablePullDownRefresh": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/addoldman/oldmanall",
|
||||
"style": {
|
||||
"navigationBarTitleText": "查看长者",
|
||||
"enablePullDownRefresh": true
|
||||
}
|
||||
},
|
||||
|
||||
{
|
||||
"path": "pages/oldmanindex/mine",
|
||||
"style": {
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@
|
|||
})
|
||||
} else {
|
||||
if(uni.getStorageSync('allinfo').name){
|
||||
from.id = uni.getStorageSync('allinfo').id
|
||||
form.id = uni.getStorageSync('allinfo').id
|
||||
changePayer(form).then((res)=>{
|
||||
console.log("res",res)
|
||||
if(res.success){
|
||||
|
|
|
|||
|
|
@ -0,0 +1,332 @@
|
|||
<template>
|
||||
<div class="container">
|
||||
<!-- <u-modal v-model="show" :content="content"></u-modal> -->
|
||||
<model :show="show" @close="show=false" :content="content" />
|
||||
<image class="greenbgc" src="https://www.focusnu.com/media/directive/index/greenbgc.png" />
|
||||
<view class="title-back">
|
||||
<view class="left-father" @click="goBack">
|
||||
<image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" />
|
||||
<view style="font-size: 30rpx;">监护人信息</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="white-content">
|
||||
|
||||
<view class="content-title" style="margin: 20rpx 0;justify-content: space-between;">
|
||||
<view style="display: flex;">
|
||||
<view class="shu"></view>
|
||||
<view class="content-weight">个人信息</view>
|
||||
<image class="shu-img"
|
||||
:src="applyStatus? `https://www.focusnu.com/media/directive/index/${statusarray[applyStatus-1]}.png`:``" />
|
||||
</view>
|
||||
|
||||
<view class="small-blue" @click="changeMessage" v-if="!applyStatus">
|
||||
修改个人信息
|
||||
</view>
|
||||
</view>
|
||||
<view class="white-message">
|
||||
<view>
|
||||
<view v-for="(item,index) in nameArray" :key="index" class="one"
|
||||
@click="openLook(textArray[index])">
|
||||
<view class="one-left">{{item}}</view>
|
||||
<view class="one-right">{{textArray[index] ? textArray[index] : "自动获取" }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
<view style="display: flex;width: 100%;margin-top: 40rpx;"></view>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
reactive
|
||||
} from 'vue'
|
||||
import {
|
||||
onLoad
|
||||
} from '@dcloudio/uni-app';
|
||||
import {
|
||||
base_url
|
||||
} from '@/request/index.js';
|
||||
import {
|
||||
getrel
|
||||
} from '@/pages/addjigou/api/addjigou.js';
|
||||
import model from "@/compontent/public/model.vue"
|
||||
|
||||
const show = ref(false);
|
||||
const content = ref("");
|
||||
|
||||
const statusarray = ["loading", "success", "fail"]
|
||||
|
||||
const nameArray = ["姓名", "电话", "身份证号码", "家庭住址", "工作单位"];
|
||||
const textArray = reactive(["", "", "", "", ""]);
|
||||
|
||||
|
||||
// 本地保存的临时文件路径
|
||||
const tempImagePath = ref('')
|
||||
|
||||
// 拍照并上传
|
||||
function getMessage(url) {
|
||||
if (!url) {
|
||||
return
|
||||
}
|
||||
uni.previewImage({
|
||||
current: url, // 当前显示图片的链接
|
||||
urls: [url], // 可以预览的图片列表
|
||||
indicator: 'default', // 显示面板指示点,'default'|'number'|'none'
|
||||
loop: true, // 是否可循环预览
|
||||
longPressActions: {
|
||||
itemList: ['保存图片'],
|
||||
success: (data) => {
|
||||
console.log('长按操作成功', data)
|
||||
},
|
||||
fail: (err) => {
|
||||
console.error('长按操作失败', err)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
function isAtLeastEightChars(str) {
|
||||
return typeof str === 'string' && str.length >= 12;
|
||||
}
|
||||
const openLook = (res) => {
|
||||
if (isAtLeastEightChars(res)) {
|
||||
content.value = res;
|
||||
show.value = true
|
||||
}
|
||||
}
|
||||
const goBack = () => {
|
||||
uni.navigateBack()
|
||||
}
|
||||
const alldata = ref("");
|
||||
const contentred = ref("")
|
||||
const applyStatus = ref(false);
|
||||
onLoad((options) => {
|
||||
if (options.applyStatus) {
|
||||
applyStatus.value = options.applyStatus
|
||||
}
|
||||
alldata.value = JSON.parse(options.element);
|
||||
|
||||
let data = alldata.value
|
||||
if (data.content) {
|
||||
contentred.value = data.content
|
||||
}
|
||||
textArray[0] = data.guardianName;
|
||||
textArray[1] = data.guardianPhone;
|
||||
textArray[2] = data.guardianIdCard;
|
||||
textArray[3] = data.guardianHomeAddress;
|
||||
textArray[4] = data.guardianWorkUnit;
|
||||
})
|
||||
const changeMessage = () => {
|
||||
uni.navigateTo({
|
||||
url: `/pages/addoldman/IDcard`
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
background-color: #F7F7F7;
|
||||
position: relative;
|
||||
|
||||
.white-content {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
border-radius: 35rpx;
|
||||
|
||||
.content-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100rpx;
|
||||
position: relative;
|
||||
font-weight: 600;
|
||||
|
||||
.content-weight {
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.content-img {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 400rpx;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.white-photo {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
border-radius: 35rpx;
|
||||
background-color: #fff;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
|
||||
.photo {
|
||||
width: 300rpx;
|
||||
height: 200rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.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 {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 10rpx;
|
||||
|
||||
.one-left {
|
||||
margin-left: 10rpx;
|
||||
font-size: 30rpx;
|
||||
// color: red;
|
||||
color: black;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.one-right {
|
||||
margin-right: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
overflow: hidden;
|
||||
/* 隐藏超出内容 */
|
||||
white-space: nowrap;
|
||||
/* 不换行 */
|
||||
text-overflow: ellipsis;
|
||||
max-width: 380rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.photo-left {
|
||||
z-index: 1;
|
||||
|
||||
.photo-weight {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.photo-font {
|
||||
font-size: 28rpx;
|
||||
margin-top: 10rpx;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.gray-font {
|
||||
padding: 20rpx 60rpx;
|
||||
padding-bottom: 35rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.title-back {
|
||||
margin-top: 100rpx;
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.left-father {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 1;
|
||||
|
||||
.back-img {
|
||||
width: 45rpx;
|
||||
height: 40rpx;
|
||||
margin-left: 40rpx;
|
||||
margin-right: 15rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.shu {
|
||||
width: 14rpx;
|
||||
height: 36rpx;
|
||||
background-color: #0097FF;
|
||||
border-radius: 10rpx;
|
||||
margin: 3rpx 20rpx 0 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
margin: 10rpx 0;
|
||||
}
|
||||
|
||||
.shu-img {
|
||||
position: absolute;
|
||||
right: 20rpx;
|
||||
top: 40%;
|
||||
transform: translateY(-40%);
|
||||
width: 150rpx;
|
||||
height: 130rpx;
|
||||
}
|
||||
|
||||
.greenbgc {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 700rpx;
|
||||
}
|
||||
|
||||
.contentred {
|
||||
width: 90%;
|
||||
border: dashed 3rpx #FF4B2F;
|
||||
border-radius: 15rpx;
|
||||
margin: 15rpx 0;
|
||||
margin-left: 5%;
|
||||
padding: 5rpx;
|
||||
|
||||
.contentred-bgc {
|
||||
background-color: rgb(240, 228, 228);
|
||||
border-radius: 15rpx;
|
||||
color: red;
|
||||
padding: 20rpx;
|
||||
padding-bottom: 30rpx;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.small-blue {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 35%;
|
||||
height: 70rpx;
|
||||
// margin: 0rpx auto;
|
||||
// margin-bottom: 80rpx;
|
||||
color: #fff;
|
||||
background: linear-gradient(to right, #00C9FF, #0076FF);
|
||||
border-radius: 30rpx;
|
||||
font-size: 30rpx;
|
||||
z-index: 9999;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -4,7 +4,7 @@
|
|||
<view class="title-back">
|
||||
<view class="left-father" @click="goBack">
|
||||
<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 class="white-content">
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
<view class="line">4.所有上传信息均会被妥善保管,不会用于其他商业用途或传输给第三方。</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="white-content">
|
||||
<view class="white-content" v-if="canshow">
|
||||
|
||||
|
||||
|
||||
|
|
@ -651,6 +651,7 @@
|
|||
const [y, m, d] = str.split(" ")[0].split("-");
|
||||
return `${y}年${parseInt(m)}月${parseInt(d)}日`;
|
||||
}
|
||||
const canshow = ref(true);
|
||||
onLoad(() => {
|
||||
payurl.value = base_url
|
||||
// console.log("cccccccccc", textArray[7])
|
||||
|
|
@ -659,7 +660,7 @@
|
|||
if (uni.getStorageSync('specicalid')) {
|
||||
let data = uni.getStorageSync('baddata')
|
||||
// console.log("????11111111", data)
|
||||
|
||||
canshow.value = false;
|
||||
fontphoto.value = data.idCardPositive
|
||||
endphoto.value = data.idCardNegative
|
||||
// console.log("???????????", fontphoto.value, endphoto.value)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,411 @@
|
|||
<template>
|
||||
<div class="container">
|
||||
<!-- <u-modal v-model="show" :content="content"></u-modal> -->
|
||||
<model :show="show" @close="show=false" :content="content" />
|
||||
<image class="greenbgc" src="https://www.focusnu.com/media/directive/index/greenbgc.png" />
|
||||
<view class="title-back">
|
||||
<view class="left-father" @click="goBack">
|
||||
<image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" />
|
||||
<view style="font-size: 30rpx;">长者信息</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="white-content">
|
||||
|
||||
<view class="content-title" style="margin: 20rpx 0;justify-content: space-between;">
|
||||
<view style="display: flex;">
|
||||
<view class="shu"></view>
|
||||
<view class="content-weight">身份证</view>
|
||||
<image class="shu-img"
|
||||
:src="applyStatus? `https://www.focusnu.com/media/directive/index/${statusarray[applyStatus-1]}.png`:``" />
|
||||
</view>
|
||||
|
||||
<view class="small-blue" @click="changeMessage" v-if="!applyStatus">
|
||||
修改个人信息
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="white-content">
|
||||
|
||||
<view class="white-photo" @click="getMessage(`${base_url}/sys/common/static/${fontphoto}`)">
|
||||
<view class="photo-left">
|
||||
<view class="photo-weight">人像面</view>
|
||||
<view class="photo-font">请上传身份证人像面</view>
|
||||
</view>
|
||||
<view style="position: relative;">
|
||||
<image class="photo"
|
||||
:src="fontphoto ? `${base_url}/sys/common/static/${fontphoto}` : `https://www.focusnu.com/media/directive/index/IDcard.png`" />
|
||||
<image v-if="!fontphoto"
|
||||
style="position: absolute;top: 50%;left: 50%;width: 70rpx;height: 60rpx;transform: translate(-50%,-50%);"
|
||||
src="https://www.focusnu.com/media/directive/index/takephoto.png" />
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="white-photo" style="margin-top: 30rpx;" @click="getMessage(`${base_url}/sys/common/static/${endphoto}`)">
|
||||
<view class="photo-left">
|
||||
<view class="photo-weight">国徽面</view>
|
||||
<view class="photo-font">请上传身份证国徽面</view>
|
||||
</view>
|
||||
<view style="position: relative;">
|
||||
<image class="photo"
|
||||
:src="endphoto ? `${base_url}/sys/common/static/${endphoto}` : `https://www.focusnu.com/media/directive/index/backIDcard.png`" />
|
||||
<image v-if="!endphoto"
|
||||
style="position: absolute;top: 50%;left: 50%;width: 70rpx;height: 60rpx;transform: translate(-50%,-50%);"
|
||||
src="https://www.focusnu.com/media/directive/index/takephoto.png" />
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="content-title" style="margin: 20rpx 0;">
|
||||
<view class="shu"></view>
|
||||
<view class="content-weight">确认身份证信息</view>
|
||||
</view>
|
||||
<view class="white-message">
|
||||
<view>
|
||||
<view v-for="(item,index) in nameArray" :key="index" class="one"
|
||||
@click="openLook(textArray[index])">
|
||||
<view class="one-left">{{item}}</view>
|
||||
<view class="one-right">{{textArray[index] ? textArray[index] : "自动获取" }}</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view style="display: flex;width: 100%;margin-top: 40rpx;"></view>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
reactive
|
||||
} from 'vue'
|
||||
import {
|
||||
onLoad
|
||||
} from '@dcloudio/uni-app';
|
||||
import {
|
||||
base_url
|
||||
} from '@/request/index.js';
|
||||
import {
|
||||
getrel
|
||||
} from '@/pages/addjigou/api/addjigou.js';
|
||||
import model from "@/compontent/public/model.vue"
|
||||
import {
|
||||
swapLongTerm
|
||||
} from '@/compontent/public/long.js'
|
||||
|
||||
const show = ref(false);
|
||||
const content = ref("");
|
||||
|
||||
const statusarray = ["loading", "success", "fail"]
|
||||
|
||||
const nameArray = ["姓名", "性别", "身份证号码", "民族", "出生日期", "住址", "签发机关", "有效期限"];
|
||||
const textArray = reactive(["", "", "", "", "", "", "", ""]);
|
||||
|
||||
const headImge = ref("");
|
||||
|
||||
const headImge0 = ref("");
|
||||
|
||||
const fontphoto0 = ref("")
|
||||
const endphoto0 = ref("")
|
||||
const imgArray = ref(["", "", "", ""])
|
||||
|
||||
const nameArray0 = ["开户行", "开户行卡号"];
|
||||
const textArray0 = reactive(["", "", ]);
|
||||
|
||||
const nameArray1 = ["婚否", "联系电话", "身高", "体重", "健康状态", "政治面貌", "紧急联系人", "紧急联系人电话", "联系人与本人关系", "户口性质", ];
|
||||
const textArray1 = reactive(["", "", "", "", "", "", "", "", "", ""]);
|
||||
|
||||
const backImge = ref("");
|
||||
|
||||
const states = ["待提交", "审核中", "审核通过", "审核未通过"];
|
||||
|
||||
const fontphoto = ref("");
|
||||
const endphoto = ref("");
|
||||
const statesTarget = ref(0);
|
||||
|
||||
// 本地保存的临时文件路径
|
||||
const tempImagePath = ref('')
|
||||
|
||||
// 拍照并上传
|
||||
function getMessage(url) {
|
||||
if (!url) {
|
||||
return
|
||||
}
|
||||
uni.previewImage({
|
||||
current: url, // 当前显示图片的链接
|
||||
urls: [url], // 可以预览的图片列表
|
||||
indicator: 'default', // 显示面板指示点,'default'|'number'|'none'
|
||||
loop: true, // 是否可循环预览
|
||||
longPressActions: {
|
||||
itemList: ['保存图片'],
|
||||
success: (data) => {
|
||||
console.log('长按操作成功', data)
|
||||
},
|
||||
fail: (err) => {
|
||||
console.error('长按操作失败', err)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
function isAtLeastEightChars(str) {
|
||||
return typeof str === 'string' && str.length >= 12;
|
||||
}
|
||||
const openLook = (res) => {
|
||||
if (isAtLeastEightChars(res)) {
|
||||
content.value = res;
|
||||
show.value = true
|
||||
}
|
||||
}
|
||||
const goBack = () => {
|
||||
uni.navigateBack()
|
||||
}
|
||||
const alldata = ref("");
|
||||
const contentred = ref("")
|
||||
const applyStatus = ref(false);
|
||||
onLoad((options) => {
|
||||
if (options.applyStatus) {
|
||||
applyStatus.value = options.applyStatus
|
||||
}
|
||||
alldata.value = JSON.parse(options.element);
|
||||
|
||||
let data = alldata.value
|
||||
if (data.content) {
|
||||
contentred.value = data.content
|
||||
}
|
||||
textArray[0] = data.name;
|
||||
textArray[1] = data.sex;
|
||||
textArray[2] = data.idCard;
|
||||
textArray[3] = data.national;
|
||||
textArray[4] = data.birthDate;
|
||||
textArray[5] = data.idCardAddress;
|
||||
textArray[6] = data.issuingAuthority;
|
||||
textArray[7] = `${data.startTime}-${swapLongTerm(data.endTime)}`;
|
||||
fontphoto.value = data.idCardNegative
|
||||
endphoto.value = data.idCardPositive
|
||||
})
|
||||
const changeMessage = () => {
|
||||
// uni.setStorageSync("baddata", alldata.value)
|
||||
// uni.setStorageSync('specicalid', alldata.value.id);
|
||||
// uni.setStorageSync("backhuancun", {})
|
||||
// uni.navigateTo({
|
||||
// url: `/pages/addstaff/information`
|
||||
// });
|
||||
let item = alldata.value
|
||||
uni.setStorageSync("baddata", item)
|
||||
uni.setStorageSync('specicalid', item.id);
|
||||
uni.setStorageSync("backhuancun", {})
|
||||
let data = {
|
||||
nuId : item.nuId,
|
||||
orgCode : item.orgCode
|
||||
}
|
||||
uni.setStorageSync('oldman', data);
|
||||
uni.navigateTo({
|
||||
url: "/pages/addoldman/oldIDcard"
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
background-color: #F7F7F7;
|
||||
position: relative;
|
||||
|
||||
.white-content {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
border-radius: 35rpx;
|
||||
|
||||
.content-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100rpx;
|
||||
position: relative;
|
||||
font-weight: 600;
|
||||
|
||||
.content-weight {
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.content-img {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 400rpx;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.white-photo {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
border-radius: 35rpx;
|
||||
background-color: #fff;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
|
||||
.photo {
|
||||
width: 300rpx;
|
||||
height: 200rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.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 {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 10rpx;
|
||||
|
||||
.one-left {
|
||||
margin-left: 10rpx;
|
||||
font-size: 30rpx;
|
||||
// color: red;
|
||||
color: black;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.one-right {
|
||||
margin-right: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
overflow: hidden;
|
||||
/* 隐藏超出内容 */
|
||||
white-space: nowrap;
|
||||
/* 不换行 */
|
||||
text-overflow: ellipsis;
|
||||
max-width: 380rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.photo-left {
|
||||
z-index: 1;
|
||||
|
||||
.photo-weight {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.photo-font {
|
||||
font-size: 28rpx;
|
||||
margin-top: 10rpx;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.gray-font {
|
||||
padding: 20rpx 60rpx;
|
||||
padding-bottom: 35rpx;
|
||||
color: #999999;
|
||||
}
|
||||
|
||||
.title-back {
|
||||
margin-top: 100rpx;
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.left-father {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 1;
|
||||
|
||||
.back-img {
|
||||
width: 45rpx;
|
||||
height: 40rpx;
|
||||
margin-left: 40rpx;
|
||||
margin-right: 15rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.shu {
|
||||
width: 14rpx;
|
||||
height: 36rpx;
|
||||
background-color: #0097FF;
|
||||
border-radius: 10rpx;
|
||||
margin: 3rpx 20rpx 0 30rpx;
|
||||
}
|
||||
|
||||
.line {
|
||||
margin: 10rpx 0;
|
||||
}
|
||||
|
||||
.shu-img {
|
||||
position: absolute;
|
||||
right: 20rpx;
|
||||
top: 40%;
|
||||
transform: translateY(-40%);
|
||||
width: 150rpx;
|
||||
height: 130rpx;
|
||||
}
|
||||
|
||||
.greenbgc {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 700rpx;
|
||||
}
|
||||
|
||||
.contentred {
|
||||
width: 90%;
|
||||
border: dashed 3rpx #FF4B2F;
|
||||
border-radius: 15rpx;
|
||||
margin: 15rpx 0;
|
||||
margin-left: 5%;
|
||||
padding: 5rpx;
|
||||
|
||||
.contentred-bgc {
|
||||
background-color: rgb(240, 228, 228);
|
||||
border-radius: 15rpx;
|
||||
color: red;
|
||||
padding: 20rpx;
|
||||
padding-bottom: 30rpx;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.small-blue {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 35%;
|
||||
height: 70rpx;
|
||||
// margin: 0rpx auto;
|
||||
// margin-bottom: 80rpx;
|
||||
color: #fff;
|
||||
background: linear-gradient(to right, #00C9FF, #0076FF);
|
||||
border-radius: 30rpx;
|
||||
font-size: 30rpx;
|
||||
z-index: 9999;
|
||||
}
|
||||
</style>
|
||||
|
|
@ -320,7 +320,7 @@
|
|||
applyStatus.value = options.applyStatus
|
||||
}
|
||||
alldata.value = JSON.parse(options.element);
|
||||
|
||||
// console.log("???")
|
||||
let data = alldata.value
|
||||
if (data.content) {
|
||||
contentred.value = data.content
|
||||
|
|
@ -365,12 +365,17 @@
|
|||
textArray1[3] += 'kg'
|
||||
})
|
||||
const changeMessage = () => {
|
||||
uni.setStorageSync("baddata", alldata.value)
|
||||
uni.setStorageSync('specicalid', alldata.value.id);
|
||||
uni.setStorageSync("backhuancun", {})
|
||||
uni.navigateTo({
|
||||
url: `/pages/addstaff/information`
|
||||
});
|
||||
if(alldata.value.modifyState=='1'){
|
||||
openLook("该信息正在审核中,请等待")
|
||||
}else{
|
||||
uni.setStorageSync("baddata", alldata.value)
|
||||
uni.setStorageSync('specicalid', alldata.value.id);
|
||||
uni.setStorageSync("backhuancun", {})
|
||||
uni.navigateTo({
|
||||
url: `/pages/addstaff/information`
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -12,9 +12,9 @@ export function changemessage(data){
|
|||
}
|
||||
|
||||
//根据手机号获取员工信息
|
||||
export function getMessageList(id){
|
||||
export function getMessageList(orgCode){
|
||||
return request({
|
||||
url: `/api/employessAdvisiory/queryApiEmployessInfo?openId=${uni.getStorageSync('openid')}&status=1,2,3`,
|
||||
url: `/api/employessAdvisiory/queryApiEmployessInfo?openId=${uni.getStorageSync('openid')}&orgCode=${orgCode}`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -259,8 +259,8 @@
|
|||
data.qualificationPath = imgArray[2]
|
||||
data.noCrimeCertificate = imgArray[3]
|
||||
data.endTime = swapLongTerm(data.endTime);
|
||||
data.orgId = uni.getStorageSync('changeyuangongorgId')
|
||||
|
||||
data.orgCode = uni.getStorageSync('changeyuangongorgCode')
|
||||
uni.setStorageSync('changeyuangongorgCode', "");
|
||||
changemessage(data).then(res => {
|
||||
if (res.success) {
|
||||
gopush()
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@
|
|||
</view>
|
||||
<image class="small-ball-img" src="https://www.focusnu.com/media/directive/index/ling.png" />
|
||||
</view>
|
||||
<!-- <view class="small-ball" style="right: 330rpx;" :style="{top:`${moveHeight}px`}" @click="clickSmallball">
|
||||
<image class="small-ball-img" src="https://www.focusnu.com/media/directive/index/saoyisao.png" />
|
||||
</view> -->
|
||||
<!-- <view class="small-ball" style="right: 410rpx;" :style="{top:`${moveHeight}px`}" @click="clickSmallball">
|
||||
<image class="small-ball-img" src="https://www.focusnu.com/media/directive/index/shoudong.png" />
|
||||
</view> -->
|
||||
<view class="index-up">
|
||||
<image class="index-up-img" src="https://www.focusnu.com/media/directive/index/indexgif.gif" mode="widthFix"
|
||||
lazy-load="false" />
|
||||
|
|
@ -23,57 +17,6 @@
|
|||
<view v-for="(item,index) in menuArray" :key="index">
|
||||
<swiper-item>
|
||||
<view class="white-content-father">
|
||||
<!-- <view class="chuo-ball" @click="loadingData" v-if="item.applyStatus==`1`">
|
||||
<image class="ball-img"
|
||||
:src=" `https://www.focusnu.com/media/directive/index/refresh.png`" />
|
||||
</view>
|
||||
<view class="white-content" v-if="item.applyStatus==`1`">
|
||||
<image class="white-content-img"
|
||||
:src="`https://www.focusnu.com/media/directive/index/${statusarray[Number(item.applyStatus) - 1]}.png`"
|
||||
lazy-load="false" />
|
||||
<view class="white-font">
|
||||
您提交的
|
||||
|
||||
</view>
|
||||
<view class="second-font">
|
||||
<text>
|
||||
"{{item.comName}}"
|
||||
</text>
|
||||
</view>
|
||||
<view class="second-font">
|
||||
入驻申请
|
||||
<text style="color: #fa8622;">
|
||||
正在审核中
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="white-content" v-if="item.applyStatus==`3`">
|
||||
<image class="white-content-img"
|
||||
:src="`https://www.focusnu.com/media/directive/index/${statusarray[Number(item.applyStatus) - 1]}.png`"
|
||||
lazy-load="false" />
|
||||
|
||||
<view class="white-font">
|
||||
您提交的
|
||||
|
||||
</view>
|
||||
<view class="second-font">
|
||||
<text>
|
||||
"{{item.comName}}"
|
||||
</text>
|
||||
</view>
|
||||
<view class="second-font">
|
||||
入驻申请
|
||||
<text style="color: #eb2b59;">
|
||||
审核不通过
|
||||
</text>
|
||||
</view>
|
||||
|
||||
<view class="button-blue-spec" @click="again(item)">
|
||||
重新申请
|
||||
</view>
|
||||
|
||||
</view> -->
|
||||
|
||||
<view style="z-index: 1;width: 100%;" v-if="item.applyStatus!=`-1`&& item.elderInfo">
|
||||
<view class="zhiling-box">
|
||||
|
|
@ -118,7 +61,8 @@
|
|||
|
||||
</view>
|
||||
<view class="white-box-father">
|
||||
<view v-for="(item0,index) in buttonArray" :key="index" class="white-box" @click="clickButton(item,index)">
|
||||
<view v-for="(item0,index) in buttonArray" :key="index" class="white-box"
|
||||
@click="clickButton(item,index)">
|
||||
<image class="box-img"
|
||||
:src="`https://www.focusnu.com/media/directive/index/oldmanmenu/${index}.png`" />
|
||||
<view class="box-font">{{item0}}</view>
|
||||
|
|
@ -227,9 +171,7 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
<view class="white-content-father-time" v-if="item.applyStatus!=`-1`">
|
||||
<view class="white-content-father-time" v-if="item.applyStatus!=`-1`&& !item.elderInfo">
|
||||
<view class="white-content" style="background-color: transparent;">
|
||||
<view class="white-bgc">
|
||||
{{ item.departName }}
|
||||
|
|
@ -240,8 +182,6 @@
|
|||
</swiper-item>
|
||||
</view>
|
||||
</swiper>
|
||||
|
||||
|
||||
<view
|
||||
style="z-index:999;position: fixed;bottom: 70rpx; width: 100%;display: flex;justify-content: center;margin-top: -25rpx;height: 100rpx;">
|
||||
<view class="jia-box">
|
||||
|
|
@ -287,11 +227,10 @@
|
|||
|
||||
const content = ref("");
|
||||
|
||||
const buttonArray = ref(["长者信息", "监护人信息", "充值缴费", "退住管理 ", "长者功能", "长者功能", "长者功能"])
|
||||
const buttonArray = ref(["长者信息", "监护人", "充值缴费", "长者功能 ", "长者功能", "长者功能", "长者功能"])
|
||||
const statusarray = ["loading", "success", "fail"]
|
||||
const which = ref(0);
|
||||
|
||||
|
||||
const timeText = ref('') // 21:23:26
|
||||
const dateText = ref('') // 05月22日
|
||||
const weekdayText = ref('') // 周四
|
||||
|
|
@ -336,17 +275,30 @@
|
|||
if (timer) clearInterval(timer)
|
||||
})
|
||||
|
||||
const clickButton = (item,index) => {
|
||||
switch(index){
|
||||
const clickButton = (item, index) => {
|
||||
switch (index) {
|
||||
case 0:
|
||||
queryElders(item.elderId).then(res => {
|
||||
// workArray.value = res.result
|
||||
console.log("AAAAA",res.result[0])
|
||||
console.log("AAAAA", res.result[0])
|
||||
uni.navigateTo({
|
||||
url: `/pages/addoldman/oldmanall?element=${JSON.stringify(res.result[0])}`
|
||||
});
|
||||
})
|
||||
break
|
||||
break
|
||||
case 1:
|
||||
queryElders(item.elderId).then(res => {
|
||||
// workArray.value = res.result
|
||||
console.log("AAAAA", res.result[0])
|
||||
uni.navigateTo({
|
||||
url: `/pages/addoldman/jianhurenall?element=${JSON.stringify(res.result[0])}`
|
||||
});
|
||||
|
||||
})
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
const jumpSaoyisao = () => {
|
||||
uni.navigateTo({
|
||||
url: "/pages/oldmanindex/saoyisao"
|
||||
|
|
@ -511,7 +463,7 @@
|
|||
menuArray.value = []
|
||||
// console.log("res",res)
|
||||
// res.result.forEach((element) => {
|
||||
// if (element.isInvited == 1 || (element.isInvited == 0 && element
|
||||
// if (element.applyType == 1 || (element.applyType == 0 && element
|
||||
// .applyStatus == 2)) {
|
||||
// menuArray.value.push(element)
|
||||
// }
|
||||
|
|
@ -771,16 +723,19 @@
|
|||
|
||||
.white-box-father {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
width: 90%;
|
||||
flex-wrap: wrap;
|
||||
margin-left: 1%;
|
||||
margin-left: 5%;
|
||||
background-color: #fff;
|
||||
margin-top: 30rpx;
|
||||
border-radius: 30rpx;
|
||||
|
||||
.white-box {
|
||||
margin-top: 35rpx;
|
||||
width: 20.7%;
|
||||
margin-left: 3%;
|
||||
height: 237rpx;
|
||||
background-color: #fff;
|
||||
|
||||
border-radius: 35rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@
|
|||
// uni.setStorageSync('platId', res.result.platId);
|
||||
})
|
||||
|
||||
const cardMenu = [`长者信息`, `监护人信息`, `充值缴费`, `退住管理`]
|
||||
const cardMenu = [`充值缴费`, `退住管理`]
|
||||
|
||||
const change = () => {
|
||||
uni.navigateTo({
|
||||
|
|
@ -87,23 +87,24 @@
|
|||
const clickButton = (index) => {
|
||||
switch (index) {
|
||||
case 0:
|
||||
changeData()
|
||||
uni.navigateTo({
|
||||
url: "/pages/oldmanindex/moneylist"
|
||||
})
|
||||
// changeData()
|
||||
|
||||
// uni.navigateTo({
|
||||
// url: `/pages/login/workjoinsuccess`
|
||||
// });
|
||||
break;
|
||||
case 1:
|
||||
loadingData()
|
||||
// loadingData()
|
||||
// uni.navigateTo({
|
||||
// url: `/pages/login/workjoin`
|
||||
// });
|
||||
|
||||
break;
|
||||
case 2:
|
||||
uni.navigateTo({
|
||||
url: "/pages/oldmanindex/moneylist"
|
||||
})
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,26 +5,7 @@
|
|||
<image class="back-img" src="https://www.focusnu.com/media/directive/index/left.png" />
|
||||
<view style="font-size: 30rpx;">机构邀请</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<!-- <view class="zhiling-box" style="margin-top: 30rpx;height: 120rpx;justify-content: flex-start;">
|
||||
<view class="input-all">
|
||||
<image
|
||||
style="position: absolute;left: 20rpx;top: 50%;transform: translateY(-50%);width: 40rpx;height: 40rpx;"
|
||||
src="https://www.focusnu.com/media/directive/index/search.png" />
|
||||
<input style="font-size: 31rpx;" type="text" v-model="supervalue" placeholder="请输入入驻护理机构名称"
|
||||
@confirm="search" />
|
||||
<view @click="clearvalue" v-if="supervalue"
|
||||
style="position: absolute;right: 20rpx;top: 50%;transform: translateY(-50%);width: 40rpx;height: 40rpx;display: flex;justify-content: center;align-items: center;border-radius: 50%;background-color: #EBEBEB;">
|
||||
<image style="width: 20rpx;height: 20rpx;"
|
||||
src="https://www.focusnu.com/media/directive/index/cha.png" />
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="tianjia" @click="search">
|
||||
检索
|
||||
</view>
|
||||
</view> -->
|
||||
<view
|
||||
style="width: 100%;margin-top: 190rpx;display: flex;flex-direction: column;justify-content: center;align-items: center;"
|
||||
v-if="!hulijigouArray.length">
|
||||
|
|
@ -86,33 +67,6 @@
|
|||
<view style="height: 200rpx;">
|
||||
|
||||
</view>
|
||||
<!-- <view class="button-father">
|
||||
<view class="blue-button" @click="apply" v-if="buttonOpen">
|
||||
申请
|
||||
</view>
|
||||
<view class="white-button" v-else>
|
||||
申请
|
||||
</view>
|
||||
|
||||
</view> -->
|
||||
|
||||
<!-- <u-popup v-model="popupshow" mode="bottom" border-radius="40">
|
||||
<view class="popop-father">
|
||||
<image style="width: 100rpx;height: 100rpx;"
|
||||
src="https://www.focusnu.com/media/directive/index/tishi.png" />
|
||||
<view class="popop-font">
|
||||
入驻申请已提交,请到
|
||||
<text style="color: #01A9FF;">
|
||||
"我的-入驻审核"
|
||||
</text>
|
||||
|
||||
查看审核进度
|
||||
</view>
|
||||
<view class="popop-blue" @click="jumpRuzhu()">
|
||||
查看
|
||||
</view>
|
||||
</view>
|
||||
</u-popup> -->
|
||||
<queren :show="querenshow" @close="querenshow=false" @ok="querensecond" />
|
||||
</view>
|
||||
</template>
|
||||
|
|
@ -138,27 +92,7 @@
|
|||
const popupshow = ref(false);
|
||||
const supervalue = ref("");
|
||||
const querenshow = ref(false);
|
||||
// const jumpRuzhu = () => {
|
||||
// popupshow.value = false
|
||||
// uni.navigateTo({
|
||||
// url: "/pages/yuangongindex/workjoin"
|
||||
// })
|
||||
// }
|
||||
const buttonOpen = ref(false);
|
||||
// const clickCard = (index : number) => {
|
||||
// if (hulitarget.value === index) {
|
||||
// hulitarget.value = -1;
|
||||
// buttonOpen.value = false;
|
||||
// } else {
|
||||
// hulitarget.value = index;
|
||||
|
||||
// if (hulijigouArray.value[index].employeesApiEntity?.status == 1 || hulijigouArray.value[index].employeesApiEntity?.status == 2) {
|
||||
// buttonOpen.value = false;
|
||||
// } else {
|
||||
// buttonOpen.value = true;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
const clearvalue = () => {
|
||||
hulitarget.value = -1;
|
||||
supervalue.value = ""
|
||||
|
|
@ -175,7 +109,6 @@
|
|||
getInvited(uni.getStorageSync('openid')).then((res : any) => {
|
||||
if (res.success) {
|
||||
hulijigouArray.value = res.result
|
||||
// console.log("???",res)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
@ -254,18 +187,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.tianjia {
|
||||
width: 120rpx;
|
||||
height: 70rpx;
|
||||
background: linear-gradient(to right, #00C9FF, #0076FF);
|
||||
color: #fff;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 30rpx;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
|
||||
.zhiling-box {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
|
|
@ -398,8 +319,6 @@
|
|||
border-radius: 10rpx;
|
||||
margin-left: 35rpx;
|
||||
margin-top: 25rpx;
|
||||
// margin-top: 20rpx;
|
||||
// margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.applysuccess {
|
||||
|
|
@ -417,7 +336,6 @@
|
|||
border-radius: 10rpx;
|
||||
margin-left: 35rpx;
|
||||
margin-top: 25rpx;
|
||||
// margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.applyfail {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<view class="login-container">
|
||||
<view class="small-ball" :style="{top:`${moveHeight}px`}" @click="clickSmallball">
|
||||
<view class="small-dian" v-if="hong" >
|
||||
<view class="small-dian" v-if="hong">
|
||||
{{ hong }}
|
||||
</view>
|
||||
<image class="small-ball-img" src="https://www.focusnu.com/media/directive/index/ling.png" />
|
||||
|
|
@ -17,18 +17,15 @@
|
|||
<view v-for="(item,index) in menuArray" :key="index">
|
||||
<swiper-item>
|
||||
<view class="white-content-father">
|
||||
<view class="chuo-ball" @click="loadingData" v-if="item.isInvited =='1' && item.applyStatus==`1`">
|
||||
<view class="chuo-ball" @click="loadingData"
|
||||
v-if="item.applyType =='1' && item.applyStatus==`1`">
|
||||
<image class="ball-img"
|
||||
:src=" `https://www.focusnu.com/media/directive/index/refresh.png`" />
|
||||
</view>
|
||||
<view class="white-content" v-if="item.isInvited =='0' && item.applyStatus==`1`">
|
||||
<view class="white-content" v-if="item.applyType =='0' && item.applyStatus==`1`">
|
||||
<image class="white-content-img" style="height: 200rpx;"
|
||||
:src="`https://www.focusnu.com/media/directive/index/yuangonginvited.png`"
|
||||
lazy-load="false" />
|
||||
<!-- <view class="white-font">
|
||||
您提交的
|
||||
|
||||
</view> -->
|
||||
<view class="second-font" style="margin-top: 350rpx;">
|
||||
<text>
|
||||
{{item.comName}}
|
||||
|
|
@ -36,29 +33,20 @@
|
|||
</view>
|
||||
<view class="second-font">
|
||||
邀请您加入
|
||||
<!-- <text style="color: #fa8622;">
|
||||
正在审核中
|
||||
</text> -->
|
||||
</view>
|
||||
<view style="margin-top: 60rpx;color: #999999;">
|
||||
{{ item.orgLeader }} | {{ item.orgLeaderPhone }}
|
||||
</view>
|
||||
<view class="button-double">
|
||||
<view class="double-left" @click="changeStatus(item,false)" >
|
||||
<view class="double-left" @click="changeStatus(item,false)">
|
||||
拒绝
|
||||
</view>
|
||||
<view class="double-right" @click="changeStatus(item,true)">
|
||||
接受
|
||||
</view>
|
||||
</view>
|
||||
<!-- <view class="button-blue" @click="look(item)">
|
||||
查看
|
||||
</view>
|
||||
<view class="button-blue" style="right: ;" @click="look(item)">
|
||||
查看
|
||||
</view> -->
|
||||
</view>
|
||||
<view class="white-content" v-if="item.isInvited =='1' && item.applyStatus==`1`">
|
||||
<view class="white-content" v-if="item.applyType =='1' && item.applyStatus==`1`">
|
||||
<image class="white-content-img"
|
||||
:src="`https://www.focusnu.com/media/directive/index/${statusarray[Number(item.applyStatus) - 1]}.png`"
|
||||
lazy-load="false" />
|
||||
|
|
@ -82,14 +70,13 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
<view class="white-content" v-if="item.isInvited =='1' && item.applyStatus==`3`">
|
||||
<view class="white-content" v-if="item.applyType =='1' && item.applyStatus==`3`">
|
||||
<image class="white-content-img"
|
||||
:src="`https://www.focusnu.com/media/directive/index/${statusarray[Number(item.applyStatus) - 1]}.png`"
|
||||
lazy-load="false" />
|
||||
|
||||
<view class="white-font">
|
||||
您提交的
|
||||
|
||||
</view>
|
||||
<view class="second-font">
|
||||
<text>
|
||||
|
|
@ -102,9 +89,13 @@
|
|||
审核不通过
|
||||
</text>
|
||||
</view>
|
||||
<view class="button-white-spec" @click="jumptolist(item.auditContent)">
|
||||
驳回原因
|
||||
</view>
|
||||
<view class="button-blue-spec" @click="again(item)">
|
||||
重新申请
|
||||
</view>
|
||||
|
||||
</view>
|
||||
|
||||
<view style="z-index: 1;width: 100%;" v-if=" item.applyStatus==`2`">
|
||||
|
|
@ -116,7 +107,8 @@
|
|||
src="https://www.focusnu.com/media/directive/index/mine/more.png" />
|
||||
</view>
|
||||
<view class="white-box-father">
|
||||
<view v-for="(item0,index) in buttonArray" :key="index" class="white-box" @click="clickButton(item,index)">
|
||||
<view v-for="(item0,index) in buttonArray" :key="index" class="white-box"
|
||||
@click="clickButton(item,index)">
|
||||
<image class="box-img"
|
||||
:src="`https://www.focusnu.com/media/directive/index/addstaff/${index}.png`" />
|
||||
<view class="box-font">{{item0}}</view>
|
||||
|
|
@ -130,7 +122,7 @@
|
|||
|
||||
</view>
|
||||
|
||||
<view class="zhiling-box" v-if="item.isInvited =='1' && item.applyStatus==`-1`">
|
||||
<view class="zhiling-box" v-if="item.applyType =='1' && item.applyStatus==`-1`">
|
||||
<view class="zhiling-box">
|
||||
<view class="">
|
||||
暂无信息
|
||||
|
|
@ -157,8 +149,6 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
||||
<view class="white-content-father-time" v-if="item.applyStatus==`2`">
|
||||
<view class="white-content" style="background-color: transparent;">
|
||||
<view class="white-bgc">
|
||||
|
|
@ -171,7 +161,6 @@
|
|||
</view>
|
||||
</swiper>
|
||||
|
||||
|
||||
<view
|
||||
style="z-index:999;position: fixed;bottom: 70rpx; width: 100%;display: flex;justify-content: center;margin-top: -25rpx;height: 100rpx;">
|
||||
<view class="jia-box">
|
||||
|
|
@ -193,11 +182,13 @@
|
|||
reactive,
|
||||
ref,
|
||||
onMounted,
|
||||
onUnmounted
|
||||
onUnmounted,
|
||||
|
||||
} from 'vue';
|
||||
import {
|
||||
onLoad,
|
||||
onShow
|
||||
onShow,
|
||||
onPullDownRefresh
|
||||
} from '@dcloudio/uni-app';
|
||||
import {
|
||||
getMessageList
|
||||
|
|
@ -241,9 +232,8 @@
|
|||
})
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
const clearvalue = () => {
|
||||
supervalue.value = ""
|
||||
}
|
||||
|
|
@ -265,68 +255,15 @@
|
|||
url: `/pages/addjigou/name`
|
||||
});
|
||||
}
|
||||
// const jumpToAll = (element) => {
|
||||
// console.log("????",element.applyStatus)
|
||||
// uni.getStorage({
|
||||
// key: 'openid',
|
||||
// success: function(res) {
|
||||
// getMessageList(res.data).then(res => {
|
||||
// if (res.success) {
|
||||
// uni.navigateTo({
|
||||
// url: `/pages/addstaff/all?element=${JSON.stringify(res.result[0])}&applyStatus=${element.applyStatus}`
|
||||
// });
|
||||
// }
|
||||
|
||||
// })
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
const look = (element) => {
|
||||
uni.navigateTo({
|
||||
url: `/pages/yuangongindex/workjoin`
|
||||
});
|
||||
// uni.getStorage({
|
||||
// key: 'openid',
|
||||
// success: function(res) {
|
||||
// getMessageList(res.data).then(res => {
|
||||
// if (res.success) {
|
||||
// uni.navigateTo({
|
||||
// url: `/pages/addstaff/all?element=${JSON.stringify(res.result[0])}&applyStatus=${element.applyStatus}`
|
||||
// });
|
||||
// }
|
||||
|
||||
// })
|
||||
// }
|
||||
// });
|
||||
}
|
||||
|
||||
const jumptolist = (res) => {
|
||||
if (res) {
|
||||
content.value = res;
|
||||
show.value = true
|
||||
}
|
||||
}
|
||||
|
||||
const again = (item) => {
|
||||
uni.navigateTo({
|
||||
url: "/pages/yuangongindex/searchjigou"
|
||||
})
|
||||
// uni.getStorage({
|
||||
// key: 'openid',
|
||||
// success: function(res) {
|
||||
// getMessageList(res.data).then(res => {
|
||||
// if (res.success) {
|
||||
// uni.setStorageSync("baddata", res.result[0])
|
||||
// uni.setStorageSync('specicalid', res.result[0].id);
|
||||
// uni.setStorageSync("backhuancun", {})
|
||||
// uni.navigateTo({
|
||||
// url: `/pages/addstaff/information`
|
||||
// });
|
||||
// }
|
||||
|
||||
// })
|
||||
// }
|
||||
// });
|
||||
}
|
||||
const jumpTo = () => {
|
||||
uni.navigateTo({
|
||||
|
|
@ -340,12 +277,10 @@
|
|||
which.value = res.detail.current
|
||||
}
|
||||
|
||||
|
||||
const gotoWindy = () => {
|
||||
uni.navigateTo({
|
||||
url: "/pages/selectunit/map"
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
const goback = () => {
|
||||
|
|
@ -374,19 +309,14 @@
|
|||
getIndex(res.data).then(res => {
|
||||
menuArray.value = []
|
||||
res.result.forEach((element) => {
|
||||
// if (element.isInvited == 1 || (element.isInvited == 0 && element
|
||||
// .applyStatus == 2)) {
|
||||
// menuArray.value.push(element)
|
||||
// }
|
||||
menuArray.value.push(element)
|
||||
})
|
||||
// menuArray.value = res.result
|
||||
menuArray.value.push({
|
||||
applyStatus: `-1`
|
||||
})
|
||||
})
|
||||
getMessageList(res.data).then(res => {
|
||||
|
||||
getMessageList().then(res => {
|
||||
// console.log("special",res)
|
||||
uni.setStorageSync("staff", res.result[0])
|
||||
})
|
||||
}
|
||||
|
|
@ -411,36 +341,42 @@
|
|||
}
|
||||
})
|
||||
}
|
||||
const clickButton = (item,index) =>{
|
||||
console.log("????",item,index)
|
||||
if(index === 3){
|
||||
getMessageList().then(res => {
|
||||
|
||||
uni.setStorageSync("changeyuangongorgId", res.result[0].orgId)
|
||||
uni.setStorageSync("baddata", res.result[0])
|
||||
uni.setStorageSync('specicalid', res.result[0].id);
|
||||
uni.setStorageSync("backhuancun", {})
|
||||
uni.navigateTo({
|
||||
url: `/pages/addstaff/information`
|
||||
});
|
||||
// if (res.success) {
|
||||
// uni.navigateTo({
|
||||
// url: `/pages/addstaff/all?element=${JSON.stringify(res.result[0])}`
|
||||
// });
|
||||
// }
|
||||
|
||||
const clickButton = (item, index) => {
|
||||
// console.log("AAA",item)
|
||||
if (index === 3) {
|
||||
getMessageList(item.orgCode).then(res => {
|
||||
uni.setStorageSync("changeyuangongorgCode", item.orgCode)
|
||||
if (res.success) {
|
||||
uni.navigateTo({
|
||||
url: `/pages/addstaff/all?element=${JSON.stringify(res.result[0])}`
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
const jumptolist = (res) => {
|
||||
if (res) {
|
||||
content.value = res;
|
||||
show.value = true
|
||||
}
|
||||
}
|
||||
onShow(() => {
|
||||
loadingData();
|
||||
isRead().then(res =>{
|
||||
isRead().then(res => {
|
||||
if (res.result) {
|
||||
hong.value = res.result;
|
||||
}
|
||||
})
|
||||
})
|
||||
onPullDownRefresh(() => {
|
||||
loadingData();
|
||||
isRead().then(res => {
|
||||
// console.log("aaaa",res.result)
|
||||
if (res.result) {
|
||||
hong.value = res.result;
|
||||
}
|
||||
}
|
||||
)
|
||||
})
|
||||
uni.stopPullDownRefresh()
|
||||
})
|
||||
</script>
|
||||
|
||||
|
|
@ -663,7 +599,7 @@
|
|||
margin-top: 35rpx;
|
||||
width: 20.7%;
|
||||
margin-left: 3%;
|
||||
height: 280rpx;
|
||||
height: 230rpx;
|
||||
background-color: #fff;
|
||||
border-radius: 35rpx;
|
||||
display: flex;
|
||||
|
|
@ -731,7 +667,8 @@
|
|||
margin-right: 15rpx;
|
||||
background-color: black;
|
||||
}
|
||||
.button-double{
|
||||
|
||||
.button-double {
|
||||
position: absolute;
|
||||
bottom: 45rpx;
|
||||
width: 100%;
|
||||
|
|
@ -742,8 +679,8 @@
|
|||
border-radius: 37rpx;
|
||||
font-size: 33rpx;
|
||||
margin-top: 80rpx;
|
||||
|
||||
.double-left{
|
||||
|
||||
.double-left {
|
||||
width: 30%;
|
||||
height: 90rpx;
|
||||
display: flex;
|
||||
|
|
@ -754,20 +691,22 @@
|
|||
margin-left: 40rpx;
|
||||
z-index: 999;
|
||||
}
|
||||
.double-right{
|
||||
|
||||
.double-right {
|
||||
width: 30%;
|
||||
height: 90rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
// background-color: #F7F7F7;
|
||||
background: linear-gradient(to right,#00C9FF,#0076FF);
|
||||
background: linear-gradient(to right, #00C9FF, #0076FF);
|
||||
color: #fff;
|
||||
border-radius: 40rpx;
|
||||
margin-right: 40rpx;
|
||||
z-index: 999;
|
||||
}
|
||||
}
|
||||
|
||||
.button-blue {
|
||||
position: absolute;
|
||||
bottom: 45rpx;
|
||||
|
|
@ -786,10 +725,9 @@
|
|||
|
||||
.button-blue-spec {
|
||||
position: absolute;
|
||||
bottom: 45rpx;
|
||||
left: 50%;
|
||||
bottom: 30rpx;
|
||||
left: 8%;
|
||||
width: 40%;
|
||||
transform: translateX(-50%);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
|
@ -860,43 +798,8 @@
|
|||
color: black;
|
||||
}
|
||||
|
||||
.card-font {
|
||||
margin-left: 40rpx;
|
||||
font-size: 33rpx;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
|
||||
.gray-font {
|
||||
margin-left: 40rpx;
|
||||
font-size: 32rpx;
|
||||
margin-top: 20rpx;
|
||||
color: #B1B1B1;
|
||||
// width: 100%;
|
||||
}
|
||||
|
||||
.gray-bgc {
|
||||
margin: 0 40rpx;
|
||||
width: 80%;
|
||||
height: 75rpx;
|
||||
border-radius: 10rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
margin-top: 40rpx;
|
||||
|
||||
.gray-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.small-ball {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
right: 120px;
|
||||
// top: 36px;
|
||||
z-index: 9999;
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@
|
|||
// uni.setStorageSync('platId', res.result.platId);
|
||||
})
|
||||
|
||||
const cardMenu = [`审核列表`, `员工功能`]
|
||||
const cardMenu = [`审核记录`, `员工功能`]
|
||||
|
||||
const change = () => {
|
||||
uni.navigateTo({
|
||||
|
|
|
|||
|
|
@ -48,15 +48,15 @@
|
|||
{{ item.tel }}
|
||||
</view>
|
||||
<view class="applying" v-if="item.employeesApiEntity?.status===`1`">
|
||||
{{ item.employeesApiEntity.isInvited=='1' ? "申请中" : "待确认" }}
|
||||
{{ item.employeesApiEntity.applyType=='1' ? "申请中" : "待确认" }}
|
||||
|
||||
</view>
|
||||
<view class="applysuccess" v-if="item.employeesApiEntity?.status===`2`">
|
||||
|
||||
{{ item.employeesApiEntity.isInvited=='1' ? "申请通过" : "已接受" }}
|
||||
{{ item.employeesApiEntity.applyType=='1' ? "申请通过" : "已接受" }}
|
||||
</view>
|
||||
<view class="applyfail" v-if="item.employeesApiEntity?.status===`3`">
|
||||
{{ item.employeesApiEntity.isInvited=='1' ? "申请驳回" : "已拒绝" }}
|
||||
{{ item.employeesApiEntity.applyType=='1' ? "申请驳回" : "已拒绝" }}
|
||||
</view>
|
||||
<!-- <view style="height: 50rpx;" v-if="!item.employeesApiEntity">
|
||||
|
||||
|
|
|
|||
|
|
@ -274,6 +274,7 @@
|
|||
font-size: 32rpx;
|
||||
border: 4rpx solid #fff;
|
||||
overflow: hidden;
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<view class="title-back">
|
||||
<view class="left-father" @click="goBack">
|
||||
<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 class="index-up" v-if="workArray.length">
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"app.js","sources":["App.vue","main.js"],"sourcesContent":["<script>\r\n\texport default {\r\n\t\tonLaunch: function() {\r\n\t\t\tconsole.log('App Launch')\r\n\t\t},\r\n\t\tonShow: function() {\r\n\t\t\tconsole.log('App Show')\r\n\t\t},\r\n\t\tonHide: function() {\r\n\t\t\tconsole.log('App Hide')\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t/*每个页面公共css */\r\n\t@import \"./uni_modules/vk-uview-ui/index.scss\";\r\n</style>\n","import App from './App'\r\nimport uView from './uni_modules/vk-uview-ui';\r\n// #ifndef VUE3\r\nimport Vue from 'vue'\r\nimport './uni.promisify.adaptor'\r\nimport uView from './uni_modules/vk-uview-ui';\nVue.use(uView);\r\nVue.config.productionTip = false\r\nApp.mpType = 'app'\r\nconst app = new Vue({\r\n\t...App\r\n})\r\napp.$mount()\r\n// #endif\r\n\r\n// #ifdef VUE3\r\nimport {\r\n\tcreateSSRApp\r\n} from 'vue'\r\nexport function createApp() {\r\n\tconst app = createSSRApp(App)\r\n\t// 使用 uView UI\r\n\tapp.use(uView)\r\n\treturn {\r\n\t\tapp\r\n\t}\r\n}\r\n// #endif"],"names":["uni","createSSRApp","App","uView"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACC,MAAK,YAAU;AAAA,EACd,UAAU,WAAW;AACpBA,kBAAAA,MAAA,MAAA,OAAA,gBAAY,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,gBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;ACQM,SAAS,YAAY;AAC3B,QAAM,MAAMC,cAAY,aAACC,SAAG;AAE5B,MAAI,IAAIC,iCAAK;AACb,SAAO;AAAA,IACN;AAAA,EACA;AACF;;;"}
|
||||
{"version":3,"file":"app.js","sources":["App.vue","main.js"],"sourcesContent":["<script>\r\n\texport default {\r\n\t\tonLaunch: function() {\r\n\t\t\tconsole.log('App Launch')\r\n\t\t},\r\n\t\tonShow: function() {\r\n\t\t\tconsole.log('App Show')\r\n\t\t},\r\n\t\tonHide: function() {\r\n\t\t\tconsole.log('App Hide')\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style lang=\"scss\">\r\n\t/*每个页面公共css */\r\n\t@import \"./uni_modules/vk-uview-ui/index.scss\";\r\n</style>\n","import App from './App'\r\nimport uView from './uni_modules/vk-uview-ui';\r\n// #ifndef VUE3\r\nimport Vue from 'vue'\r\nimport './uni.promisify.adaptor'\r\nimport uView from './uni_modules/vk-uview-ui';\nVue.use(uView);\r\nVue.config.productionTip = false\r\nApp.mpType = 'app'\r\nconst app = new Vue({\r\n\t...App\r\n})\r\napp.$mount()\r\n// #endif\r\n\r\n// #ifdef VUE3\r\nimport {\r\n\tcreateSSRApp\r\n} from 'vue'\r\nexport function createApp() {\r\n\tconst app = createSSRApp(App)\r\n\t// 使用 uView UI\r\n\tapp.use(uView)\r\n\treturn {\r\n\t\tapp\r\n\t}\r\n}\r\n// #endif"],"names":["uni","createSSRApp","App","uView"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACC,MAAK,YAAU;AAAA,EACd,UAAU,WAAW;AACpBA,kBAAAA,MAAA,MAAA,OAAA,gBAAY,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,gBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;ACQM,SAAS,YAAY;AAC3B,QAAM,MAAMC,cAAY,aAACC,SAAG;AAE5B,MAAI,IAAIC,iCAAK;AACb,SAAO;AAAA,IACN;AAAA,EACA;AACF;;;"}
|
||||
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
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"addjigou.js","sources":["pages/addstaff/api/addjigou.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\r\n\r\n//新增/编辑机构加盟申请信息\r\nexport function changemessage(data){\r\n return request({\r\n url: `/api/employessAdvisiory/saveApiEmployess`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n\r\n//根据手机号获取员工信息\r\nexport function getMessageList(id){\r\n return request({\r\n url: `/api/employessAdvisiory/queryApiEmployessInfo?openId=${uni.getStorageSync('openid')}&status=1,2,3`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//向机构申请\r\nexport function Apply(data){\r\n return request({\r\n url: `/api/employessapply/apply`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n// export function getMessageListsuccess(id){\r\n// return request({\r\n// url: `/api/orgApplyInfo/queryAuditInfo?status=0,2,4,5&openId=${id}`,\r\n// \t\tmethod: 'get',\r\n// })\r\n// }\r\n// //获取省市区\r\n// export function getdate(id){\n// return request({\n// url: `/api/common/queryAreaDict?id=${id}`,\n// \t\tmethod: 'get',\n// })\n// }\r\n\r\n// //将地址id转换成汉字\r\n// export function getrel(id){\n// return request({\n// url: `/api/common/queryAreaNameById?id=${id}`,\n// \t\tmethod: 'get',\n// })\n// }"],"names":["request","uni"],"mappings":";;;AAKO,SAAS,cAAc,MAAK;AAC/B,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAGO,SAAS,eAAe,IAAG;AAC9B,SAAOA,sBAAQ;AAAA,IACX,KAAK,wDAAwDC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IAC/F,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,MAAM,MAAK;AACvB,SAAOD,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;;;;"}
|
||||
{"version":3,"file":"addjigou.js","sources":["pages/addstaff/api/addjigou.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\r\n\r\n//新增/编辑机构加盟申请信息\r\nexport function changemessage(data){\r\n return request({\r\n url: `/api/employessAdvisiory/saveApiEmployess`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n\r\n//根据手机号获取员工信息\r\nexport function getMessageList(orgCode){\r\n return request({\r\n url: `/api/employessAdvisiory/queryApiEmployessInfo?openId=${uni.getStorageSync('openid')}&orgCode=${orgCode}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//向机构申请\r\nexport function Apply(data){\r\n return request({\r\n url: `/api/employessapply/apply`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n// export function getMessageListsuccess(id){\r\n// return request({\r\n// url: `/api/orgApplyInfo/queryAuditInfo?status=0,2,4,5&openId=${id}`,\r\n// \t\tmethod: 'get',\r\n// })\r\n// }\r\n// //获取省市区\r\n// export function getdate(id){\n// return request({\n// url: `/api/common/queryAreaDict?id=${id}`,\n// \t\tmethod: 'get',\n// })\n// }\r\n\r\n// //将地址id转换成汉字\r\n// export function getrel(id){\n// return request({\n// url: `/api/common/queryAreaNameById?id=${id}`,\n// \t\tmethod: 'get',\n// })\n// }"],"names":["request","uni"],"mappings":";;;AAKO,SAAS,cAAc,MAAK;AAC/B,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAGO,SAAS,eAAe,SAAQ;AACnC,SAAOA,sBAAQ;AAAA,IACX,KAAK,wDAAwDC,oBAAI,eAAe,QAAQ,CAAC,YAAY,OAAO;AAAA,IAClH,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,MAAM,MAAK;AACvB,SAAOD,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;;;;"}
|
||||
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
File diff suppressed because one or more lines are too long
|
|
@ -37,6 +37,8 @@ if (!Math) {
|
|||
"./pages/oldmanindex/moneylist.js";
|
||||
"./pages/oldmanindex/message.js";
|
||||
"./pages/oldmanindex/index.js";
|
||||
"./pages/addoldman/jianhurenall.js";
|
||||
"./pages/addoldman/oldmanall.js";
|
||||
"./pages/oldmanindex/mine.js";
|
||||
"./pages/addoldman/hukou.js";
|
||||
"./pages/addoldman/yibao.js";
|
||||
|
|
|
|||
|
|
@ -34,6 +34,8 @@
|
|||
"pages/oldmanindex/moneylist",
|
||||
"pages/oldmanindex/message",
|
||||
"pages/oldmanindex/index",
|
||||
"pages/addoldman/jianhurenall",
|
||||
"pages/addoldman/oldmanall",
|
||||
"pages/oldmanindex/mine",
|
||||
"pages/addoldman/hukou",
|
||||
"pages/addoldman/yibao",
|
||||
|
|
|
|||
|
|
@ -7052,7 +7052,7 @@ function isConsoleWritable() {
|
|||
function initRuntimeSocketService() {
|
||||
const hosts = "192.168.2.22,127.0.0.1";
|
||||
const port = "8090";
|
||||
const id = "mp-weixin_q7ALHx";
|
||||
const id = "mp-weixin_Gunl75";
|
||||
const lazy = typeof swan !== "undefined";
|
||||
let restoreError = lazy ? () => {
|
||||
} : initOnError();
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ const _sfc_main = {
|
|||
});
|
||||
} else {
|
||||
if (common_vendor.index.getStorageSync("allinfo").name) {
|
||||
from.id = common_vendor.index.getStorageSync("allinfo").id;
|
||||
form.id = common_vendor.index.getStorageSync("allinfo").id;
|
||||
pages_addoldman_api_api.changePayer(form).then((res) => {
|
||||
common_vendor.index.__f__("log", "at pages/addoldman/IDcard.vue:128", "res", res);
|
||||
if (res.success) {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,78 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
if (!Math) {
|
||||
model();
|
||||
}
|
||||
const model = () => "../../compontent/public/model.js";
|
||||
const _sfc_main = {
|
||||
__name: "jianhurenall",
|
||||
setup(__props) {
|
||||
const show = common_vendor.ref(false);
|
||||
const content = common_vendor.ref("");
|
||||
const statusarray = ["loading", "success", "fail"];
|
||||
const nameArray = ["姓名", "电话", "身份证号码", "家庭住址", "工作单位"];
|
||||
const textArray = common_vendor.reactive(["", "", "", "", ""]);
|
||||
common_vendor.ref("");
|
||||
function isAtLeastEightChars(str) {
|
||||
return typeof str === "string" && str.length >= 12;
|
||||
}
|
||||
const openLook = (res) => {
|
||||
if (isAtLeastEightChars(res)) {
|
||||
content.value = res;
|
||||
show.value = true;
|
||||
}
|
||||
};
|
||||
const goBack = () => {
|
||||
common_vendor.index.navigateBack();
|
||||
};
|
||||
const alldata = common_vendor.ref("");
|
||||
const contentred = common_vendor.ref("");
|
||||
const applyStatus = common_vendor.ref(false);
|
||||
common_vendor.onLoad((options) => {
|
||||
if (options.applyStatus) {
|
||||
applyStatus.value = options.applyStatus;
|
||||
}
|
||||
alldata.value = JSON.parse(options.element);
|
||||
let data = alldata.value;
|
||||
if (data.content) {
|
||||
contentred.value = data.content;
|
||||
}
|
||||
textArray[0] = data.guardianName;
|
||||
textArray[1] = data.guardianPhone;
|
||||
textArray[2] = data.guardianIdCard;
|
||||
textArray[3] = data.guardianHomeAddress;
|
||||
textArray[4] = data.guardianWorkUnit;
|
||||
});
|
||||
const changeMessage = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addoldman/IDcard`
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
a: common_vendor.o(($event) => show.value = false),
|
||||
b: common_vendor.p({
|
||||
show: show.value,
|
||||
content: content.value
|
||||
}),
|
||||
c: common_vendor.o(goBack),
|
||||
d: applyStatus.value ? `https://www.focusnu.com/media/directive/index/${statusarray[applyStatus.value - 1]}.png` : ``,
|
||||
e: !applyStatus.value
|
||||
}, !applyStatus.value ? {
|
||||
f: common_vendor.o(changeMessage)
|
||||
} : {}, {
|
||||
g: common_vendor.f(nameArray, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item),
|
||||
b: common_vendor.t(textArray[index] ? textArray[index] : "自动获取"),
|
||||
c: index,
|
||||
d: common_vendor.o(($event) => openLook(textArray[index]), index)
|
||||
};
|
||||
})
|
||||
});
|
||||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-b2e00674"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/addoldman/jianhurenall.js.map
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"navigationBarTitleText": "查看监护人",
|
||||
"enablePullDownRefresh": true,
|
||||
"usingComponents": {
|
||||
"model": "../../compontent/public/model"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
<view class="container data-v-b2e00674"><model wx:if="{{b}}" class="data-v-b2e00674" bindclose="{{a}}" u-i="b2e00674-0" bind:__l="__l" u-p="{{b}}"/><image class="greenbgc data-v-b2e00674" src="https://www.focusnu.com/media/directive/index/greenbgc.png"/><view class="title-back data-v-b2e00674"><view class="left-father data-v-b2e00674" bindtap="{{c}}"><image class="back-img data-v-b2e00674" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-b2e00674" style="font-size:30rpx">监护人信息</view></view></view><view class="white-content data-v-b2e00674"><view class="content-title data-v-b2e00674" style="margin:20rpx 0;justify-content:space-between"><view class="data-v-b2e00674" style="display:flex"><view class="shu data-v-b2e00674"></view><view class="content-weight data-v-b2e00674">个人信息</view><image class="shu-img data-v-b2e00674" src="{{d}}"/></view><view wx:if="{{e}}" class="small-blue data-v-b2e00674" bindtap="{{f}}"> 修改个人信息 </view></view><view class="white-message data-v-b2e00674"><view class="data-v-b2e00674"><view wx:for="{{g}}" wx:for-item="item" wx:key="c" class="one data-v-b2e00674" bindtap="{{item.d}}"><view class="one-left data-v-b2e00674">{{item.a}}</view><view class="one-right data-v-b2e00674">{{item.b}}</view></view></view></view></view><view class="data-v-b2e00674" style="display:flex;width:100%;margin-top:40rpx"></view></view>
|
||||
|
|
@ -0,0 +1,195 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果您是插件开发者,建议您使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果您是App开发者(插件使用者),您可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果您的项目同样使用了scss预处理,您也可以直接在您的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.container.data-v-b2e00674 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
background-color: #F7F7F7;
|
||||
position: relative;
|
||||
}
|
||||
.container .white-content.data-v-b2e00674 {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
border-radius: 35rpx;
|
||||
}
|
||||
.container .white-content .content-title.data-v-b2e00674 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100rpx;
|
||||
position: relative;
|
||||
font-weight: 600;
|
||||
}
|
||||
.container .white-content .content-title .content-weight.data-v-b2e00674 {
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.container .white-content .content-title .content-img.data-v-b2e00674 {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 400rpx;
|
||||
height: 100%;
|
||||
}
|
||||
.container .white-photo.data-v-b2e00674 {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
border-radius: 35rpx;
|
||||
background-color: #fff;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
}
|
||||
.container .white-photo .photo.data-v-b2e00674 {
|
||||
width: 300rpx;
|
||||
height: 200rpx;
|
||||
}
|
||||
.container .white-message.data-v-b2e00674 {
|
||||
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;
|
||||
}
|
||||
.container .white-message .one.data-v-b2e00674 {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
.container .white-message .one .one-left.data-v-b2e00674 {
|
||||
margin-left: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: black;
|
||||
z-index: 1;
|
||||
}
|
||||
.container .white-message .one .one-right.data-v-b2e00674 {
|
||||
margin-right: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
overflow: hidden;
|
||||
/* 隐藏超出内容 */
|
||||
white-space: nowrap;
|
||||
/* 不换行 */
|
||||
text-overflow: ellipsis;
|
||||
max-width: 380rpx;
|
||||
}
|
||||
.photo-left.data-v-b2e00674 {
|
||||
z-index: 1;
|
||||
}
|
||||
.photo-left .photo-weight.data-v-b2e00674 {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
.photo-left .photo-font.data-v-b2e00674 {
|
||||
font-size: 28rpx;
|
||||
margin-top: 10rpx;
|
||||
color: #666;
|
||||
}
|
||||
.gray-font.data-v-b2e00674 {
|
||||
padding: 20rpx 60rpx;
|
||||
padding-bottom: 35rpx;
|
||||
color: #999999;
|
||||
}
|
||||
.title-back.data-v-b2e00674 {
|
||||
margin-top: 100rpx;
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.left-father.data-v-b2e00674 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 1;
|
||||
}
|
||||
.left-father .back-img.data-v-b2e00674 {
|
||||
width: 45rpx;
|
||||
height: 40rpx;
|
||||
margin-left: 40rpx;
|
||||
margin-right: 15rpx;
|
||||
}
|
||||
.shu.data-v-b2e00674 {
|
||||
width: 14rpx;
|
||||
height: 36rpx;
|
||||
background-color: #0097FF;
|
||||
border-radius: 10rpx;
|
||||
margin: 3rpx 20rpx 0 30rpx;
|
||||
}
|
||||
.line.data-v-b2e00674 {
|
||||
margin: 10rpx 0;
|
||||
}
|
||||
.shu-img.data-v-b2e00674 {
|
||||
position: absolute;
|
||||
right: 20rpx;
|
||||
top: 40%;
|
||||
transform: translateY(-40%);
|
||||
width: 150rpx;
|
||||
height: 130rpx;
|
||||
}
|
||||
.greenbgc.data-v-b2e00674 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 700rpx;
|
||||
}
|
||||
.contentred.data-v-b2e00674 {
|
||||
width: 90%;
|
||||
border: dashed 3rpx #FF4B2F;
|
||||
border-radius: 15rpx;
|
||||
margin: 15rpx 0;
|
||||
margin-left: 5%;
|
||||
padding: 5rpx;
|
||||
}
|
||||
.contentred .contentred-bgc.data-v-b2e00674 {
|
||||
background-color: #f0e4e4;
|
||||
border-radius: 15rpx;
|
||||
color: red;
|
||||
padding: 20rpx;
|
||||
padding-bottom: 30rpx;
|
||||
}
|
||||
.small-blue.data-v-b2e00674 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 35%;
|
||||
height: 70rpx;
|
||||
color: #fff;
|
||||
background: linear-gradient(to right, #00C9FF, #0076FF);
|
||||
border-radius: 30rpx;
|
||||
font-size: 30rpx;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
|
@ -408,11 +408,13 @@ const _sfc_main = {
|
|||
const [y, m, d] = str.split(" ")[0].split("-");
|
||||
return `${y}年${parseInt(m)}月${parseInt(d)}日`;
|
||||
}
|
||||
const canshow = common_vendor.ref(true);
|
||||
common_vendor.onLoad(() => {
|
||||
payurl.value = request_index.base_url;
|
||||
common_vendor.index.getStorageSync("allinfo");
|
||||
if (common_vendor.index.getStorageSync("specicalid")) {
|
||||
let data = common_vendor.index.getStorageSync("baddata");
|
||||
canshow.value = false;
|
||||
fontphoto.value = data.idCardPositive;
|
||||
endphoto.value = data.idCardNegative;
|
||||
textArray[0] = data.name;
|
||||
|
|
@ -462,22 +464,25 @@ const _sfc_main = {
|
|||
d: common_vendor.o(($event) => openLook(textArray[index]), index)
|
||||
};
|
||||
}),
|
||||
m: guanxi.value,
|
||||
n: common_vendor.o(($event) => guanxi.value = $event.detail.value),
|
||||
o: form.name,
|
||||
p: common_vendor.o(($event) => form.name = $event.detail.value),
|
||||
q: form.tel,
|
||||
r: common_vendor.o(($event) => form.tel = $event.detail.value),
|
||||
s: form.idCard,
|
||||
t: common_vendor.o(($event) => form.idCard = $event.detail.value),
|
||||
v: form.homeAddress,
|
||||
w: common_vendor.o(($event) => form.homeAddress = $event.detail.value),
|
||||
x: form.workUnit,
|
||||
y: common_vendor.o(($event) => form.workUnit = $event.detail.value),
|
||||
z: common_vendor.o(next),
|
||||
A: common_vendor.o(photoclick),
|
||||
B: common_vendor.o(($event) => bottomshow.value = $event),
|
||||
C: common_vendor.p({
|
||||
m: canshow.value
|
||||
}, canshow.value ? {
|
||||
n: guanxi.value,
|
||||
o: common_vendor.o(($event) => guanxi.value = $event.detail.value),
|
||||
p: form.name,
|
||||
q: common_vendor.o(($event) => form.name = $event.detail.value),
|
||||
r: form.tel,
|
||||
s: common_vendor.o(($event) => form.tel = $event.detail.value),
|
||||
t: form.idCard,
|
||||
v: common_vendor.o(($event) => form.idCard = $event.detail.value),
|
||||
w: form.homeAddress,
|
||||
x: common_vendor.o(($event) => form.homeAddress = $event.detail.value),
|
||||
y: form.workUnit,
|
||||
z: common_vendor.o(($event) => form.workUnit = $event.detail.value)
|
||||
} : {}, {
|
||||
A: common_vendor.o(next),
|
||||
B: common_vendor.o(photoclick),
|
||||
C: common_vendor.o(($event) => bottomshow.value = $event),
|
||||
D: common_vendor.p({
|
||||
list: bottomlist,
|
||||
modelValue: bottomshow.value
|
||||
})
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,137 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../common/vendor.js");
|
||||
const request_index = require("../../request/index.js");
|
||||
const compontent_public_long = require("../../compontent/public/long.js");
|
||||
if (!Math) {
|
||||
model();
|
||||
}
|
||||
const model = () => "../../compontent/public/model.js";
|
||||
const _sfc_main = {
|
||||
__name: "oldmanall",
|
||||
setup(__props) {
|
||||
const show = common_vendor.ref(false);
|
||||
const content = common_vendor.ref("");
|
||||
const statusarray = ["loading", "success", "fail"];
|
||||
const nameArray = ["姓名", "性别", "身份证号码", "民族", "出生日期", "住址", "签发机关", "有效期限"];
|
||||
const textArray = common_vendor.reactive(["", "", "", "", "", "", "", ""]);
|
||||
common_vendor.ref("");
|
||||
common_vendor.ref("");
|
||||
common_vendor.ref("");
|
||||
common_vendor.ref("");
|
||||
common_vendor.ref(["", "", "", ""]);
|
||||
common_vendor.reactive(["", ""]);
|
||||
common_vendor.reactive(["", "", "", "", "", "", "", "", "", ""]);
|
||||
common_vendor.ref("");
|
||||
const fontphoto = common_vendor.ref("");
|
||||
const endphoto = common_vendor.ref("");
|
||||
common_vendor.ref(0);
|
||||
common_vendor.ref("");
|
||||
function getMessage(url) {
|
||||
if (!url) {
|
||||
return;
|
||||
}
|
||||
common_vendor.index.previewImage({
|
||||
current: url,
|
||||
// 当前显示图片的链接
|
||||
urls: [url],
|
||||
// 可以预览的图片列表
|
||||
indicator: "default",
|
||||
// 显示面板指示点,'default'|'number'|'none'
|
||||
loop: true,
|
||||
// 是否可循环预览
|
||||
longPressActions: {
|
||||
itemList: ["保存图片"],
|
||||
success: (data) => {
|
||||
common_vendor.index.__f__("log", "at pages/addoldman/oldmanall.vue:144", "长按操作成功", data);
|
||||
},
|
||||
fail: (err) => {
|
||||
common_vendor.index.__f__("error", "at pages/addoldman/oldmanall.vue:147", "长按操作失败", err);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
function isAtLeastEightChars(str) {
|
||||
return typeof str === "string" && str.length >= 12;
|
||||
}
|
||||
const openLook = (res) => {
|
||||
if (isAtLeastEightChars(res)) {
|
||||
content.value = res;
|
||||
show.value = true;
|
||||
}
|
||||
};
|
||||
const goBack = () => {
|
||||
common_vendor.index.navigateBack();
|
||||
};
|
||||
const alldata = common_vendor.ref("");
|
||||
const contentred = common_vendor.ref("");
|
||||
const applyStatus = common_vendor.ref(false);
|
||||
common_vendor.onLoad((options) => {
|
||||
if (options.applyStatus) {
|
||||
applyStatus.value = options.applyStatus;
|
||||
}
|
||||
alldata.value = JSON.parse(options.element);
|
||||
let data = alldata.value;
|
||||
if (data.content) {
|
||||
contentred.value = data.content;
|
||||
}
|
||||
textArray[0] = data.name;
|
||||
textArray[1] = data.sex;
|
||||
textArray[2] = data.idCard;
|
||||
textArray[3] = data.national;
|
||||
textArray[4] = data.birthDate;
|
||||
textArray[5] = data.idCardAddress;
|
||||
textArray[6] = data.issuingAuthority;
|
||||
textArray[7] = `${data.startTime}-${compontent_public_long.swapLongTerm(data.endTime)}`;
|
||||
fontphoto.value = data.idCardNegative;
|
||||
endphoto.value = data.idCardPositive;
|
||||
});
|
||||
const changeMessage = () => {
|
||||
let item = alldata.value;
|
||||
common_vendor.index.setStorageSync("baddata", item);
|
||||
common_vendor.index.setStorageSync("specicalid", item.id);
|
||||
common_vendor.index.setStorageSync("backhuancun", {});
|
||||
let data = {
|
||||
nuId: item.nuId,
|
||||
orgCode: item.orgCode
|
||||
};
|
||||
common_vendor.index.setStorageSync("oldman", data);
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/addoldman/oldIDcard"
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
a: common_vendor.o(($event) => show.value = false),
|
||||
b: common_vendor.p({
|
||||
show: show.value,
|
||||
content: content.value
|
||||
}),
|
||||
c: common_vendor.o(goBack),
|
||||
d: applyStatus.value ? `https://www.focusnu.com/media/directive/index/${statusarray[applyStatus.value - 1]}.png` : ``,
|
||||
e: !applyStatus.value
|
||||
}, !applyStatus.value ? {
|
||||
f: common_vendor.o(changeMessage)
|
||||
} : {}, {
|
||||
g: fontphoto.value ? `${common_vendor.unref(request_index.base_url)}/sys/common/static/${fontphoto.value}` : `https://www.focusnu.com/media/directive/index/IDcard.png`,
|
||||
h: !fontphoto.value
|
||||
}, !fontphoto.value ? {} : {}, {
|
||||
i: common_vendor.o(($event) => getMessage(`${common_vendor.unref(request_index.base_url)}/sys/common/static/${fontphoto.value}`)),
|
||||
j: endphoto.value ? `${common_vendor.unref(request_index.base_url)}/sys/common/static/${endphoto.value}` : `https://www.focusnu.com/media/directive/index/backIDcard.png`,
|
||||
k: !endphoto.value
|
||||
}, !endphoto.value ? {} : {}, {
|
||||
l: common_vendor.o(($event) => getMessage(`${common_vendor.unref(request_index.base_url)}/sys/common/static/${endphoto.value}`)),
|
||||
m: common_vendor.f(nameArray, (item, index, i0) => {
|
||||
return {
|
||||
a: common_vendor.t(item),
|
||||
b: common_vendor.t(textArray[index] ? textArray[index] : "自动获取"),
|
||||
c: index,
|
||||
d: common_vendor.o(($event) => openLook(textArray[index]), index)
|
||||
};
|
||||
})
|
||||
});
|
||||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-dccb1626"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/addoldman/oldmanall.js.map
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"navigationBarTitleText": "查看长者",
|
||||
"enablePullDownRefresh": true,
|
||||
"usingComponents": {
|
||||
"model": "../../compontent/public/model"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
<view class="container data-v-dccb1626"><model wx:if="{{b}}" class="data-v-dccb1626" bindclose="{{a}}" u-i="dccb1626-0" bind:__l="__l" u-p="{{b}}"/><image class="greenbgc data-v-dccb1626" src="https://www.focusnu.com/media/directive/index/greenbgc.png"/><view class="title-back data-v-dccb1626"><view class="left-father data-v-dccb1626" bindtap="{{c}}"><image class="back-img data-v-dccb1626" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-dccb1626" style="font-size:30rpx">长者信息</view></view></view><view class="white-content data-v-dccb1626"><view class="content-title data-v-dccb1626" style="margin:20rpx 0;justify-content:space-between"><view class="data-v-dccb1626" style="display:flex"><view class="shu data-v-dccb1626"></view><view class="content-weight data-v-dccb1626">身份证</view><image class="shu-img data-v-dccb1626" src="{{d}}"/></view><view wx:if="{{e}}" class="small-blue data-v-dccb1626" bindtap="{{f}}"> 修改个人信息 </view></view></view><view class="white-content data-v-dccb1626"><view class="white-photo data-v-dccb1626" bindtap="{{i}}"><view class="photo-left data-v-dccb1626"><view class="photo-weight data-v-dccb1626">人像面</view><view class="photo-font data-v-dccb1626">请上传身份证人像面</view></view><view class="data-v-dccb1626" style="position:relative"><image class="photo data-v-dccb1626" src="{{g}}"/><image wx:if="{{h}}" class="data-v-dccb1626" style="position:absolute;top:50%;left:50%;width:70rpx;height:60rpx;transform:translate(-50%,-50%)" src="https://www.focusnu.com/media/directive/index/takephoto.png"/></view></view><view class="white-photo data-v-dccb1626" style="margin-top:30rpx" bindtap="{{l}}"><view class="photo-left data-v-dccb1626"><view class="photo-weight data-v-dccb1626">国徽面</view><view class="photo-font data-v-dccb1626">请上传身份证国徽面</view></view><view class="data-v-dccb1626" style="position:relative"><image class="photo data-v-dccb1626" src="{{j}}"/><image wx:if="{{k}}" class="data-v-dccb1626" style="position:absolute;top:50%;left:50%;width:70rpx;height:60rpx;transform:translate(-50%,-50%)" src="https://www.focusnu.com/media/directive/index/takephoto.png"/></view></view><view class="content-title data-v-dccb1626" style="margin:20rpx 0"><view class="shu data-v-dccb1626"></view><view class="content-weight data-v-dccb1626">确认身份证信息</view></view><view class="white-message data-v-dccb1626"><view class="data-v-dccb1626"><view wx:for="{{m}}" wx:for-item="item" wx:key="c" class="one data-v-dccb1626" bindtap="{{item.d}}"><view class="one-left data-v-dccb1626">{{item.a}}</view><view class="one-right data-v-dccb1626">{{item.b}}</view></view></view></view></view><view class="data-v-dccb1626" style="display:flex;width:100%;margin-top:40rpx"></view></view>
|
||||
|
|
@ -0,0 +1,195 @@
|
|||
/**
|
||||
* 这里是uni-app内置的常用样式变量
|
||||
*
|
||||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||||
* 如果您是插件开发者,建议您使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* 如果您是App开发者(插件使用者),您可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||||
*
|
||||
* 如果您的项目同样使用了scss预处理,您也可以直接在您的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||||
*/
|
||||
/* 颜色变量 */
|
||||
/* 行为相关颜色 */
|
||||
/* 文字基本颜色 */
|
||||
/* 背景颜色 */
|
||||
/* 边框颜色 */
|
||||
/* 尺寸变量 */
|
||||
/* 文字尺寸 */
|
||||
/* 图片尺寸 */
|
||||
/* Border Radius */
|
||||
/* 水平间距 */
|
||||
/* 垂直间距 */
|
||||
/* 透明度 */
|
||||
/* 文章场景相关 */
|
||||
.container.data-v-dccb1626 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
width: 100%;
|
||||
background-color: #F7F7F7;
|
||||
position: relative;
|
||||
}
|
||||
.container .white-content.data-v-dccb1626 {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
border-radius: 35rpx;
|
||||
}
|
||||
.container .white-content .content-title.data-v-dccb1626 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 100rpx;
|
||||
position: relative;
|
||||
font-weight: 600;
|
||||
}
|
||||
.container .white-content .content-title .content-weight.data-v-dccb1626 {
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.container .white-content .content-title .content-img.data-v-dccb1626 {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 400rpx;
|
||||
height: 100%;
|
||||
}
|
||||
.container .white-photo.data-v-dccb1626 {
|
||||
width: 100%;
|
||||
height: 300rpx;
|
||||
border-radius: 35rpx;
|
||||
background-color: #fff;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
display: flex;
|
||||
}
|
||||
.container .white-photo .photo.data-v-dccb1626 {
|
||||
width: 300rpx;
|
||||
height: 200rpx;
|
||||
}
|
||||
.container .white-message.data-v-dccb1626 {
|
||||
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;
|
||||
}
|
||||
.container .white-message .one.data-v-dccb1626 {
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
.container .white-message .one .one-left.data-v-dccb1626 {
|
||||
margin-left: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: black;
|
||||
z-index: 1;
|
||||
}
|
||||
.container .white-message .one .one-right.data-v-dccb1626 {
|
||||
margin-right: 10rpx;
|
||||
font-size: 30rpx;
|
||||
color: #999999;
|
||||
overflow: hidden;
|
||||
/* 隐藏超出内容 */
|
||||
white-space: nowrap;
|
||||
/* 不换行 */
|
||||
text-overflow: ellipsis;
|
||||
max-width: 380rpx;
|
||||
}
|
||||
.photo-left.data-v-dccb1626 {
|
||||
z-index: 1;
|
||||
}
|
||||
.photo-left .photo-weight.data-v-dccb1626 {
|
||||
font-size: 32rpx;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
.photo-left .photo-font.data-v-dccb1626 {
|
||||
font-size: 28rpx;
|
||||
margin-top: 10rpx;
|
||||
color: #666;
|
||||
}
|
||||
.gray-font.data-v-dccb1626 {
|
||||
padding: 20rpx 60rpx;
|
||||
padding-bottom: 35rpx;
|
||||
color: #999999;
|
||||
}
|
||||
.title-back.data-v-dccb1626 {
|
||||
margin-top: 100rpx;
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
.left-father.data-v-dccb1626 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 1;
|
||||
}
|
||||
.left-father .back-img.data-v-dccb1626 {
|
||||
width: 45rpx;
|
||||
height: 40rpx;
|
||||
margin-left: 40rpx;
|
||||
margin-right: 15rpx;
|
||||
}
|
||||
.shu.data-v-dccb1626 {
|
||||
width: 14rpx;
|
||||
height: 36rpx;
|
||||
background-color: #0097FF;
|
||||
border-radius: 10rpx;
|
||||
margin: 3rpx 20rpx 0 30rpx;
|
||||
}
|
||||
.line.data-v-dccb1626 {
|
||||
margin: 10rpx 0;
|
||||
}
|
||||
.shu-img.data-v-dccb1626 {
|
||||
position: absolute;
|
||||
right: 20rpx;
|
||||
top: 40%;
|
||||
transform: translateY(-40%);
|
||||
width: 150rpx;
|
||||
height: 130rpx;
|
||||
}
|
||||
.greenbgc.data-v-dccb1626 {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 700rpx;
|
||||
}
|
||||
.contentred.data-v-dccb1626 {
|
||||
width: 90%;
|
||||
border: dashed 3rpx #FF4B2F;
|
||||
border-radius: 15rpx;
|
||||
margin: 15rpx 0;
|
||||
margin-left: 5%;
|
||||
padding: 5rpx;
|
||||
}
|
||||
.contentred .contentred-bgc.data-v-dccb1626 {
|
||||
background-color: #f0e4e4;
|
||||
border-radius: 15rpx;
|
||||
color: red;
|
||||
padding: 20rpx;
|
||||
padding-bottom: 30rpx;
|
||||
}
|
||||
.small-blue.data-v-dccb1626 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 35%;
|
||||
height: 70rpx;
|
||||
color: #fff;
|
||||
background: linear-gradient(to right, #00C9FF, #0076FF);
|
||||
border-radius: 30rpx;
|
||||
font-size: 30rpx;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
|
@ -113,12 +113,16 @@ const _sfc_main = {
|
|||
textArray1[3] += "kg";
|
||||
});
|
||||
const changeMessage = () => {
|
||||
common_vendor.index.setStorageSync("baddata", alldata.value);
|
||||
common_vendor.index.setStorageSync("specicalid", alldata.value.id);
|
||||
common_vendor.index.setStorageSync("backhuancun", {});
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addstaff/information`
|
||||
});
|
||||
if (alldata.value.modifyState == "1") {
|
||||
openLook("该信息正在审核中,请等待");
|
||||
} else {
|
||||
common_vendor.index.setStorageSync("baddata", alldata.value);
|
||||
common_vendor.index.setStorageSync("specicalid", alldata.value.id);
|
||||
common_vendor.index.setStorageSync("backhuancun", {});
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addstaff/information`
|
||||
});
|
||||
}
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ function changemessage(data) {
|
|||
data
|
||||
});
|
||||
}
|
||||
function getMessageList(id) {
|
||||
function getMessageList(orgCode) {
|
||||
return request_index.request({
|
||||
url: `/api/employessAdvisiory/queryApiEmployessInfo?openId=${common_vendor.index.getStorageSync("openid")}&status=1,2,3`,
|
||||
url: `/api/employessAdvisiory/queryApiEmployessInfo?openId=${common_vendor.index.getStorageSync("openid")}&orgCode=${orgCode}`,
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -114,7 +114,8 @@ const _sfc_main = {
|
|||
data.qualificationPath = imgArray[2];
|
||||
data.noCrimeCertificate = imgArray[3];
|
||||
data.endTime = compontent_public_long.swapLongTerm(data.endTime);
|
||||
data.orgId = common_vendor.index.getStorageSync("changeyuangongorgId");
|
||||
data.orgCode = common_vendor.index.getStorageSync("changeyuangongorgCode");
|
||||
common_vendor.index.setStorageSync("changeyuangongorgCode", "");
|
||||
pages_addstaff_api_addjigou.changemessage(data).then((res) => {
|
||||
if (res.success) {
|
||||
gopush();
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ const _sfc_main = {
|
|||
setup(__props) {
|
||||
const show = common_vendor.ref(false);
|
||||
const content = common_vendor.ref("");
|
||||
const buttonArray = common_vendor.ref(["长者信息", "监护人信息", "充值缴费", "退住管理 ", "长者功能", "长者功能", "长者功能"]);
|
||||
const buttonArray = common_vendor.ref(["长者信息", "监护人", "充值缴费", "长者功能 ", "长者功能", "长者功能", "长者功能"]);
|
||||
const which = common_vendor.ref(0);
|
||||
const timeText = common_vendor.ref("");
|
||||
const dateText = common_vendor.ref("");
|
||||
|
|
@ -55,7 +55,18 @@ const _sfc_main = {
|
|||
switch (index) {
|
||||
case 0:
|
||||
pages_oldmanindex_api.queryElders(item.elderId).then((res) => {
|
||||
common_vendor.index.__f__("log", "at pages/oldmanindex/index.vue:344", "AAAAA", res.result[0]);
|
||||
common_vendor.index.__f__("log", "at pages/oldmanindex/index.vue:283", "AAAAA", res.result[0]);
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addoldman/oldmanall?element=${JSON.stringify(res.result[0])}`
|
||||
});
|
||||
});
|
||||
break;
|
||||
case 1:
|
||||
pages_oldmanindex_api.queryElders(item.elderId).then((res) => {
|
||||
common_vendor.index.__f__("log", "at pages/oldmanindex/index.vue:292", "AAAAA", res.result[0]);
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addoldman/jianhurenall?element=${JSON.stringify(res.result[0])}`
|
||||
});
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
|
@ -199,8 +210,8 @@ const _sfc_main = {
|
|||
s: `https://www.focusnu.com/media/directive/index/shoudong.png`,
|
||||
t: common_vendor.o(jumpInput, index)
|
||||
} : {}, {
|
||||
v: item.applyStatus != `-1`
|
||||
}, item.applyStatus != `-1` ? {
|
||||
v: item.applyStatus != `-1` && !item.elderInfo
|
||||
}, item.applyStatus != `-1` && !item.elderInfo ? {
|
||||
w: common_vendor.t(item.departName)
|
||||
} : {}, {
|
||||
x: index
|
||||
|
|
|
|||
|
|
@ -206,16 +206,18 @@
|
|||
}
|
||||
.white-box-father.data-v-9cf2c967 {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
width: 90%;
|
||||
flex-wrap: wrap;
|
||||
margin-left: 1%;
|
||||
margin-left: 5%;
|
||||
background-color: #fff;
|
||||
margin-top: 30rpx;
|
||||
border-radius: 30rpx;
|
||||
}
|
||||
.white-box-father .white-box.data-v-9cf2c967 {
|
||||
margin-top: 35rpx;
|
||||
width: 20.7%;
|
||||
margin-left: 3%;
|
||||
height: 237rpx;
|
||||
background-color: #fff;
|
||||
border-radius: 35rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ const _sfc_main = {
|
|||
phone.value = common_vendor.index.getStorageSync("tel");
|
||||
platId.value = common_vendor.index.getStorageSync("platId");
|
||||
});
|
||||
const cardMenu = [`长者信息`, `监护人信息`, `充值缴费`, `退住管理`];
|
||||
const cardMenu = [`充值缴费`, `退住管理`];
|
||||
const change = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/login/threeselectonespec`
|
||||
|
|
@ -28,28 +28,12 @@ const _sfc_main = {
|
|||
const clickButton = (index) => {
|
||||
switch (index) {
|
||||
case 0:
|
||||
changeData();
|
||||
break;
|
||||
case 1:
|
||||
loadingData();
|
||||
break;
|
||||
case 2:
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/oldmanindex/moneylist"
|
||||
});
|
||||
break;
|
||||
}
|
||||
};
|
||||
const loadingData = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addoldman/IDcard`
|
||||
});
|
||||
};
|
||||
const changeData = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/oldmanindex/workjoin"
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(($event) => exitshow.value = false),
|
||||
|
|
|
|||
|
|
@ -49,17 +49,6 @@
|
|||
margin-left: 40rpx;
|
||||
margin-right: 15rpx;
|
||||
}
|
||||
.tianjia.data-v-568a34ee {
|
||||
width: 120rpx;
|
||||
height: 70rpx;
|
||||
background: linear-gradient(to right, #00C9FF, #0076FF);
|
||||
color: #fff;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 30rpx;
|
||||
margin-left: 10rpx;
|
||||
}
|
||||
.zhiling-box.data-v-568a34ee {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ const _sfc_main = {
|
|||
applyStatus: `-1`
|
||||
});
|
||||
});
|
||||
pages_addstaff_api_addjigou.getMessageList(res.data).then((res2) => {
|
||||
pages_addstaff_api_addjigou.getMessageList().then((res2) => {
|
||||
common_vendor.index.setStorageSync("staff", res2.result[0]);
|
||||
});
|
||||
}
|
||||
|
|
@ -108,28 +108,39 @@ const _sfc_main = {
|
|||
});
|
||||
};
|
||||
const clickButton = (item, index) => {
|
||||
common_vendor.index.__f__("log", "at pages/yuangongindex/index.vue:415", "????", item, index);
|
||||
if (index === 3) {
|
||||
pages_addstaff_api_addjigou.getMessageList().then((res) => {
|
||||
common_vendor.index.setStorageSync("changeyuangongorgId", res.result[0].orgId);
|
||||
common_vendor.index.setStorageSync("baddata", res.result[0]);
|
||||
common_vendor.index.setStorageSync("specicalid", res.result[0].id);
|
||||
common_vendor.index.setStorageSync("backhuancun", {});
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addstaff/information`
|
||||
});
|
||||
pages_addstaff_api_addjigou.getMessageList(item.orgCode).then((res) => {
|
||||
common_vendor.index.setStorageSync("changeyuangongorgCode", item.orgCode);
|
||||
if (res.success) {
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/addstaff/all?element=${JSON.stringify(res.result[0])}`
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
const jumptolist = (res) => {
|
||||
if (res) {
|
||||
content.value = res;
|
||||
show.value = true;
|
||||
}
|
||||
};
|
||||
common_vendor.onShow(() => {
|
||||
loadingData();
|
||||
pages_yuangongindex_api.isRead().then(
|
||||
(res) => {
|
||||
if (res.result) {
|
||||
hong.value = res.result;
|
||||
}
|
||||
pages_yuangongindex_api.isRead().then((res) => {
|
||||
if (res.result) {
|
||||
hong.value = res.result;
|
||||
}
|
||||
);
|
||||
});
|
||||
});
|
||||
common_vendor.onPullDownRefresh(() => {
|
||||
loadingData();
|
||||
pages_yuangongindex_api.isRead().then((res) => {
|
||||
if (res.result) {
|
||||
hong.value = res.result;
|
||||
}
|
||||
});
|
||||
common_vendor.index.stopPullDownRefresh();
|
||||
});
|
||||
return (_ctx, _cache) => {
|
||||
return common_vendor.e({
|
||||
|
|
@ -146,13 +157,13 @@ const _sfc_main = {
|
|||
}),
|
||||
g: common_vendor.f(menuArray.value, (item, index, i0) => {
|
||||
return common_vendor.e({
|
||||
a: item.isInvited == "1" && item.applyStatus == `1`
|
||||
}, item.isInvited == "1" && item.applyStatus == `1` ? {
|
||||
a: item.applyType == "1" && item.applyStatus == `1`
|
||||
}, item.applyType == "1" && item.applyStatus == `1` ? {
|
||||
b: `https://www.focusnu.com/media/directive/index/refresh.png`,
|
||||
c: common_vendor.o(loadingData, index)
|
||||
} : {}, {
|
||||
d: item.isInvited == "0" && item.applyStatus == `1`
|
||||
}, item.isInvited == "0" && item.applyStatus == `1` ? {
|
||||
d: item.applyType == "0" && item.applyStatus == `1`
|
||||
}, item.applyType == "0" && item.applyStatus == `1` ? {
|
||||
e: `https://www.focusnu.com/media/directive/index/yuangonginvited.png`,
|
||||
f: common_vendor.t(item.comName),
|
||||
g: common_vendor.t(item.orgLeader),
|
||||
|
|
@ -160,21 +171,22 @@ const _sfc_main = {
|
|||
i: common_vendor.o(($event) => changeStatus(item, false), index),
|
||||
j: common_vendor.o(($event) => changeStatus(item, true), index)
|
||||
} : {}, {
|
||||
k: item.isInvited == "1" && item.applyStatus == `1`
|
||||
}, item.isInvited == "1" && item.applyStatus == `1` ? {
|
||||
k: item.applyType == "1" && item.applyStatus == `1`
|
||||
}, item.applyType == "1" && item.applyStatus == `1` ? {
|
||||
l: `https://www.focusnu.com/media/directive/index/${statusarray[Number(item.applyStatus) - 1]}.png`,
|
||||
m: common_vendor.t(item.comName),
|
||||
n: common_vendor.o(($event) => look(), index)
|
||||
} : {}, {
|
||||
o: item.isInvited == "1" && item.applyStatus == `3`
|
||||
}, item.isInvited == "1" && item.applyStatus == `3` ? {
|
||||
o: item.applyType == "1" && item.applyStatus == `3`
|
||||
}, item.applyType == "1" && item.applyStatus == `3` ? {
|
||||
p: `https://www.focusnu.com/media/directive/index/${statusarray[Number(item.applyStatus) - 1]}.png`,
|
||||
q: common_vendor.t(item.comName),
|
||||
r: common_vendor.o(($event) => again(), index)
|
||||
r: common_vendor.o(($event) => jumptolist(item.auditContent), index),
|
||||
s: common_vendor.o(($event) => again(), index)
|
||||
} : {}, {
|
||||
s: item.applyStatus == `2`
|
||||
t: item.applyStatus == `2`
|
||||
}, item.applyStatus == `2` ? {
|
||||
t: common_vendor.f(buttonArray.value, (item0, index2, i1) => {
|
||||
v: common_vendor.f(buttonArray.value, (item0, index2, i1) => {
|
||||
return {
|
||||
a: `https://www.focusnu.com/media/directive/index/addstaff/${index2}.png`,
|
||||
b: common_vendor.t(item0),
|
||||
|
|
@ -183,17 +195,17 @@ const _sfc_main = {
|
|||
};
|
||||
})
|
||||
} : {}, {
|
||||
v: item.isInvited == "1" && item.applyStatus == `-1`
|
||||
}, item.isInvited == "1" && item.applyStatus == `-1` ? {} : {}, {
|
||||
w: item.applyStatus == `-1`
|
||||
w: item.applyType == "1" && item.applyStatus == `-1`
|
||||
}, item.applyType == "1" && item.applyStatus == `-1` ? {} : {}, {
|
||||
x: item.applyStatus == `-1`
|
||||
}, item.applyStatus == `-1` ? {
|
||||
x: common_vendor.o(($event) => searchjigou(), index)
|
||||
y: common_vendor.o(($event) => searchjigou(), index)
|
||||
} : {}, {
|
||||
y: item.applyStatus == `2`
|
||||
z: item.applyStatus == `2`
|
||||
}, item.applyStatus == `2` ? {
|
||||
z: common_vendor.t(item.comName)
|
||||
A: common_vendor.t(item.comName)
|
||||
} : {}, {
|
||||
A: index
|
||||
B: index
|
||||
});
|
||||
}),
|
||||
h: `100vh`,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"navigationBarTitleText": "首页",
|
||||
"enablePullDownRefresh": true,
|
||||
"usingComponents": {
|
||||
"down-menu": "../../compontent/public/yuangongdownmenu",
|
||||
"model": "../../compontent/public/model"
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -214,7 +214,7 @@
|
|||
margin-top: 35rpx;
|
||||
width: 20.7%;
|
||||
margin-left: 3%;
|
||||
height: 280rpx;
|
||||
height: 230rpx;
|
||||
background-color: #fff;
|
||||
border-radius: 35rpx;
|
||||
display: flex;
|
||||
|
|
@ -325,10 +325,9 @@
|
|||
}
|
||||
.button-blue-spec.data-v-f6d04c18 {
|
||||
position: absolute;
|
||||
bottom: 45rpx;
|
||||
left: 50%;
|
||||
bottom: 30rpx;
|
||||
left: 8%;
|
||||
width: 40%;
|
||||
transform: translateX(-50%);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
|
@ -391,38 +390,8 @@
|
|||
font-size: 30rpx;
|
||||
color: black;
|
||||
}
|
||||
.card-font.data-v-f6d04c18 {
|
||||
margin-left: 40rpx;
|
||||
font-size: 33rpx;
|
||||
margin-top: 10rpx;
|
||||
}
|
||||
.gray-font.data-v-f6d04c18 {
|
||||
margin-left: 40rpx;
|
||||
font-size: 32rpx;
|
||||
margin-top: 20rpx;
|
||||
color: #B1B1B1;
|
||||
}
|
||||
.gray-bgc.data-v-f6d04c18 {
|
||||
margin: 0 40rpx;
|
||||
width: 80%;
|
||||
height: 75rpx;
|
||||
border-radius: 10rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 30rpx;
|
||||
margin-top: 40rpx;
|
||||
}
|
||||
.gray-bgc .gray-img.data-v-f6d04c18 {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
.small-ball.data-v-f6d04c18 {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
right: 120px;
|
||||
z-index: 9999;
|
||||
width: 64rpx;
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ const _sfc_main = {
|
|||
phone.value = common_vendor.index.getStorageSync("tel");
|
||||
platId.value = common_vendor.index.getStorageSync("platId");
|
||||
});
|
||||
const cardMenu = [`审核列表`, `员工功能`];
|
||||
const cardMenu = [`审核记录`, `员工功能`];
|
||||
const change = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/login/threeselectonespec`
|
||||
|
|
|
|||
|
|
@ -155,15 +155,15 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
|||
c: common_vendor.t(item.tel),
|
||||
d: ((_a = item.employeesApiEntity) == null ? void 0 : _a.status) === `1`
|
||||
}, ((_b = item.employeesApiEntity) == null ? void 0 : _b.status) === `1` ? {
|
||||
e: common_vendor.t(item.employeesApiEntity.isInvited == "1" ? "申请中" : "待确认")
|
||||
e: common_vendor.t(item.employeesApiEntity.applyType == "1" ? "申请中" : "待确认")
|
||||
} : {}, {
|
||||
f: ((_c = item.employeesApiEntity) == null ? void 0 : _c.status) === `2`
|
||||
}, ((_d = item.employeesApiEntity) == null ? void 0 : _d.status) === `2` ? {
|
||||
g: common_vendor.t(item.employeesApiEntity.isInvited == "1" ? "申请通过" : "已接受")
|
||||
g: common_vendor.t(item.employeesApiEntity.applyType == "1" ? "申请通过" : "已接受")
|
||||
} : {}, {
|
||||
h: ((_e = item.employeesApiEntity) == null ? void 0 : _e.status) === `3`
|
||||
}, ((_f = item.employeesApiEntity) == null ? void 0 : _f.status) === `3` ? {
|
||||
i: common_vendor.t(item.employeesApiEntity.isInvited == "1" ? "申请驳回" : "已拒绝")
|
||||
i: common_vendor.t(item.employeesApiEntity.applyType == "1" ? "申请驳回" : "已拒绝")
|
||||
} : {}, {
|
||||
j: common_vendor.t(item.comRegisterAddress),
|
||||
k: index,
|
||||
|
|
|
|||
|
|
@ -157,6 +157,7 @@
|
|||
font-size: 32rpx;
|
||||
border: 4rpx solid #fff;
|
||||
overflow: hidden;
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
.applying.data-v-1d3c88c0 {
|
||||
position: absolute;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<view class="login-container data-v-9f30267b" style="{{g}}"><model wx:if="{{b}}" class="data-v-9f30267b" bindclose="{{a}}" u-i="9f30267b-0" bind:__l="__l" u-p="{{b}}"/><view class="title-back data-v-9f30267b"><view class="left-father data-v-9f30267b" bindtap="{{c}}"><image class="back-img data-v-9f30267b" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-9f30267b" style="font-size:30rpx">审核列表</view></view></view><view wx:if="{{d}}" class="index-up data-v-9f30267b"><image class="index-up-img data-v-9f30267b" src="https://www.focusnu.com/media/directive/index/indexgif.gif" mode="widthFix" lazy-load="false"/></view><view wx:if="{{e}}" class="data-v-9f30267b" style="position:absolute;left:0;top:400rpx;width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:999"><image class="data-v-9f30267b" style="height:220rpx;width:350rpx" src="https://www.focusnu.com/media/directive/index/jigouyaoqing.png"/><view class="data-v-9f30267b" style="color:#8E96AD;margin-top:20rpx"> 暂无申请信息 </view></view><view class="bgc-card data-v-9f30267b"><view class="under-scroll data-v-9f30267b"><view wx:for="{{f}}" wx:for-item="item" wx:key="m" class="data-v-9f30267b"><view class="white-small data-v-9f30267b" style="{{item.l}}"><view class="card-font data-v-9f30267b">{{item.a}}</view><view class="gray-font data-v-9f30267b"><image class="data-v-9f30267b" style="margin-left:10rpx;height:25rpx;width:25rpx;margin-right:10rpx" src="https://www.focusnu.com/media/directive/index/ruzhu/man.png"/> {{item.b}} | <image class="data-v-9f30267b" style="margin-left:10rpx;height:25rpx;width:25rpx;margin-right:10rpx" src="https://www.focusnu.com/media/directive/index/ruzhu/phone.png"/> {{item.c}}</view><view wx:if="{{item.d}}" class="applying data-v-9f30267b"> 申请中 </view><view wx:if="{{item.e}}" class="applysuccess data-v-9f30267b"> 申请通过 </view><view wx:if="{{item.f}}" class="applyfail data-v-9f30267b"> 申请驳回 </view><view class="gray-bgc data-v-9f30267b"><image class="gray-img data-v-9f30267b" src="https://www.focusnu.com/media/directive/index/ditu/bgc.png"/><view class="data-v-9f30267b" style="color:#999999;z-index:1;font-size:27rpx;width:100%"><image class="data-v-9f30267b" style="margin-left:10rpx;height:30rpx;width:25rpx;margin-right:10rpx;z-index:1" src="https://www.focusnu.com/media/directive/index/ditu/mark.png"/> {{item.g}}</view></view><view class="data-v-9f30267b" style="width:100%;display:flex;justify-content:center"><view wx:if="{{item.h}}" class="blue-button data-v-9f30267b" catchtap="{{item.i}}"> 重新申请 </view><view wx:if="{{item.j}}" class="white-button data-v-9f30267b" catchtap="{{item.k}}"> 驳回原因 </view></view></view></view></view></view></view>
|
||||
<view class="login-container data-v-9f30267b" style="{{g}}"><model wx:if="{{b}}" class="data-v-9f30267b" bindclose="{{a}}" u-i="9f30267b-0" bind:__l="__l" u-p="{{b}}"/><view class="title-back data-v-9f30267b"><view class="left-father data-v-9f30267b" bindtap="{{c}}"><image class="back-img data-v-9f30267b" src="https://www.focusnu.com/media/directive/index/left.png"/><view class="data-v-9f30267b" style="font-size:30rpx">审核记录</view></view></view><view wx:if="{{d}}" class="index-up data-v-9f30267b"><image class="index-up-img data-v-9f30267b" src="https://www.focusnu.com/media/directive/index/indexgif.gif" mode="widthFix" lazy-load="false"/></view><view wx:if="{{e}}" class="data-v-9f30267b" style="position:absolute;left:0;top:400rpx;width:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:999"><image class="data-v-9f30267b" style="height:220rpx;width:350rpx" src="https://www.focusnu.com/media/directive/index/jigouyaoqing.png"/><view class="data-v-9f30267b" style="color:#8E96AD;margin-top:20rpx"> 暂无申请信息 </view></view><view class="bgc-card data-v-9f30267b"><view class="under-scroll data-v-9f30267b"><view wx:for="{{f}}" wx:for-item="item" wx:key="m" class="data-v-9f30267b"><view class="white-small data-v-9f30267b" style="{{item.l}}"><view class="card-font data-v-9f30267b">{{item.a}}</view><view class="gray-font data-v-9f30267b"><image class="data-v-9f30267b" style="margin-left:10rpx;height:25rpx;width:25rpx;margin-right:10rpx" src="https://www.focusnu.com/media/directive/index/ruzhu/man.png"/> {{item.b}} | <image class="data-v-9f30267b" style="margin-left:10rpx;height:25rpx;width:25rpx;margin-right:10rpx" src="https://www.focusnu.com/media/directive/index/ruzhu/phone.png"/> {{item.c}}</view><view wx:if="{{item.d}}" class="applying data-v-9f30267b"> 申请中 </view><view wx:if="{{item.e}}" class="applysuccess data-v-9f30267b"> 申请通过 </view><view wx:if="{{item.f}}" class="applyfail data-v-9f30267b"> 申请驳回 </view><view class="gray-bgc data-v-9f30267b"><image class="gray-img data-v-9f30267b" src="https://www.focusnu.com/media/directive/index/ditu/bgc.png"/><view class="data-v-9f30267b" style="color:#999999;z-index:1;font-size:27rpx;width:100%"><image class="data-v-9f30267b" style="margin-left:10rpx;height:30rpx;width:25rpx;margin-right:10rpx;z-index:1" src="https://www.focusnu.com/media/directive/index/ditu/mark.png"/> {{item.g}}</view></view><view class="data-v-9f30267b" style="width:100%;display:flex;justify-content:center"><view wx:if="{{item.h}}" class="blue-button data-v-9f30267b" catchtap="{{item.i}}"> 重新申请 </view><view wx:if="{{item.j}}" class="white-button data-v-9f30267b" catchtap="{{item.k}}"> 驳回原因 </view></view></view></view></view></view></view>
|
||||
Loading…
Reference in New Issue