999
This commit is contained in:
parent
4b2dab181d
commit
e153b7bd25
|
|
@ -170,7 +170,7 @@
|
|||
applyStatus.value = options.applyStatus
|
||||
}
|
||||
alldata.value = JSON.parse(options.element);
|
||||
|
||||
|
||||
let data = alldata.value
|
||||
if (data.content) {
|
||||
contentred.value = data.content
|
||||
|
|
@ -187,6 +187,7 @@
|
|||
endphoto.value = data.idCardNegative
|
||||
})
|
||||
const changeMessage = () => {
|
||||
|
||||
if(alldata.value.elderModifyStatus=='1'){
|
||||
openLook("该长者信息正在审核中,请等待")
|
||||
}else{
|
||||
|
|
|
|||
|
|
@ -55,7 +55,6 @@ export function getNotice(openId){
|
|||
return request({
|
||||
url: `/api/wx/notice/query?openId=${uni.getStorageSync('openid')}&clientType=3`,
|
||||
method: 'get',
|
||||
// data: JSON.stringify({ openId: uni.getStorageSync('openid') }) // 把 body 串行化,强行放 data
|
||||
})
|
||||
}
|
||||
|
||||
|
|
@ -109,9 +108,9 @@ export function queryElders(elderId,orgCode){
|
|||
})
|
||||
}
|
||||
//付款列表
|
||||
export function payMoneyList(orgCode){
|
||||
export function payMoneyList(nuId,orgCode){
|
||||
return request({
|
||||
url: `/api/nuBaseInfo/queryBillList?openId=${uni.getStorageSync('openid')}&orgCode=${orgCode}`,
|
||||
url: `/api/nuBaseInfo/queryBillList?openId=${uni.getStorageSync('openid')}&nuId=${nuId}&orgCode=${orgCode}`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@
|
|||
<view class="right-card">
|
||||
<view class="right-top-card">
|
||||
<image style="width: 80rpx;height: 80rpx;margin-right: 10rpx;"
|
||||
src="https://www.focusnu.com/media/directive/index/oldmanphoto/old.png"
|
||||
:src="`https://www.focusnu.com/media/directive/index/oldmanphoto/${item.elderInfo.sex == '男'?`old`:`woman`}.png`"
|
||||
mode="widthFix" lazy-load="false" />
|
||||
<view class="">
|
||||
<view style="font-size: 32rpx;font-weight: 600;margin-bottom: 5rpx;">
|
||||
|
|
@ -362,7 +362,7 @@
|
|||
case 2:
|
||||
// console.log("NNNN",item.orgCode)
|
||||
uni.navigateTo({
|
||||
url: `/pages/oldmanindex/moneylist?orgCode=${item.orgCode}`
|
||||
url: `/pages/oldmanindex/moneylist?nuId=${item.nuId}&&orgCode=${item.orgCode}`
|
||||
});
|
||||
break
|
||||
case 5:
|
||||
|
|
|
|||
|
|
@ -129,20 +129,20 @@
|
|||
const workArray = ref([])
|
||||
const special = ref(false);
|
||||
const statusarray = ["loading", "success", "fail"]
|
||||
const saveorgCode = ref("")
|
||||
const payMoneyListvalue = ref("")
|
||||
const orgCode = ref("")
|
||||
|
||||
// 页面加载时接收 URL 参数
|
||||
onLoad((options) => {
|
||||
saveorgCode.value = options.orgCode
|
||||
|
||||
payMoneyList(saveorgCode.value).then(res => {
|
||||
payMoneyListvalue.value = options.nuId
|
||||
orgCode.value = options.orgCode
|
||||
payMoneyList(payMoneyListvalue.value,orgCode.value).then(res => {
|
||||
workArray.value = res.result
|
||||
console.log("res",res.result)
|
||||
|
||||
})
|
||||
})
|
||||
|
||||
onPullDownRefresh(() => {
|
||||
payMoneyList(saveorgCode.value).then(res => {
|
||||
payMoneyList(payMoneyList.value,orgCode.value).then(res => {
|
||||
workArray.value = res.result
|
||||
})
|
||||
uni.stopPullDownRefresh()
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ export function getOrgInfo(title){
|
|||
//获取审核的列表
|
||||
export function getEmployeesOrgRela(openId){
|
||||
return request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=1`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0,1,2`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
|
@ -37,7 +37,7 @@ export function getEmployeesOrgRela(openId){
|
|||
//主页
|
||||
export function getIndex(openId){
|
||||
return request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&izHistory=1`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
|
@ -45,14 +45,14 @@ export function getIndex(openId){
|
|||
//机构邀请
|
||||
export function getInvited(openId){
|
||||
return request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0&izHistory=1`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
//单独机构邀请
|
||||
export function getId(id){
|
||||
return request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${uni.getStorageSync('openid')}&invited=0&id=${id}`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${uni.getStorageSync('openid')}&invited=0&id=${id}&izHistory=1`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
<view v-for="(item,index) in menuArray" :key="index">
|
||||
<swiper-item>
|
||||
<view style="height: 10vh;" v-if="item.applyStatus!=`2`"></view>
|
||||
<view style="height: 10vh;" v-if="!(item.applyStatus == '2' || item.applyType == '2')"></view>
|
||||
<view class="white-content-father">
|
||||
<view class="chuo-ball" @click="loadingData"
|
||||
v-if="item.applyType =='1' && item.applyStatus==`1`">
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
|
||||
</view>
|
||||
|
||||
<view style="z-index: 1;width: 100%;" v-if=" item.applyStatus==`2`">
|
||||
<view style="z-index: 1;width: 100%;" v-if=" item.applyStatus==`2` || item.applyType == `2`">
|
||||
<view class="fuwu-button">
|
||||
<view class="fuwu-button-top">
|
||||
<view style="display: flex;">
|
||||
|
|
@ -219,7 +219,7 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
<view class="white-content-father-time" v-if="item.applyStatus==`2`">
|
||||
<view class="white-content-father-time" v-if=" item.applyStatus==`2` || item.applyType == `2`" >
|
||||
<view class="white-content" style="background-color: transparent;">
|
||||
<view class="white-bgc">
|
||||
{{ item.comName }}
|
||||
|
|
@ -380,12 +380,12 @@
|
|||
getIndex(res.data).then(res => {
|
||||
menuArray.value = []
|
||||
res.result.forEach((element) => {
|
||||
if(element.applyType=="0"&&element.applyStatus=="3"){
|
||||
|
||||
}else{
|
||||
if (element.applyType == "0" && element.applyStatus == "3") {
|
||||
|
||||
} else {
|
||||
menuArray.value.push(element)
|
||||
}
|
||||
|
||||
|
||||
})
|
||||
menuArray.value.push({
|
||||
applyStatus: `-1`
|
||||
|
|
@ -418,7 +418,7 @@
|
|||
})
|
||||
}
|
||||
const clickButton = (item, index) => {
|
||||
// console.log("AAA",item)
|
||||
|
||||
if (index === 0) {
|
||||
getMessageList(item.orgCode).then(res => {
|
||||
uni.setStorageSync("changeyuangongorgCode", item.orgCode)
|
||||
|
|
|
|||
|
|
@ -37,14 +37,23 @@
|
|||
src="https://www.focusnu.com/media/directive/index/ruzhu/phone.png" />
|
||||
{{ item.tel }}
|
||||
</view>
|
||||
<view class="applying" v-if="item.applyStatus===`1`">
|
||||
申请中
|
||||
<view class="applying" v-if="item.applyStatus===`1`&&item.applyType!=`2`">
|
||||
{{ item.applyType =='0' ?`待确认`:`申请中` }}
|
||||
</view>
|
||||
<view class="applysuccess" v-if="item.applyStatus===`2`">
|
||||
申请通过
|
||||
<view class="applysuccess" v-if="item.applyStatus===`2`&&item.applyType!=`2`">
|
||||
{{ item.applyType =='0' ?`已接受`:`申请通过` }}
|
||||
</view>
|
||||
<view class="applyfail" v-if="item.applyStatus===`3`">
|
||||
申请驳回
|
||||
<view class="applyfail" v-if="item.applyStatus===`3`&&item.applyType!=`2`">
|
||||
{{ item.applyType =='0' ?`已驳回`:`申请驳回` }}
|
||||
</view>
|
||||
<view class="applying" style="right: 30rpx;width: 240rpx;" v-if="item.applyStatus===`1`&&item.applyType==`2`">
|
||||
员工信息变更中
|
||||
</view>
|
||||
<view class="applysuccess" style="right: 30rpx;width: 240rpx;" v-if="item.applyStatus===`2`&&item.applyType==`2`">
|
||||
员工信息变更通过
|
||||
</view>
|
||||
<view class="applyfail" style="right: 30rpx;width: 240rpx;" v-if="item.applyStatus===`3`&&item.applyType==`2`">
|
||||
员工信息变更驳回
|
||||
</view>
|
||||
<!-- <view class="applywhy" v-if="item.applyStatus===`3`" @click="openLook(item.auditContent)">
|
||||
驳回原因
|
||||
|
|
@ -60,11 +69,11 @@
|
|||
</view>
|
||||
</view>
|
||||
<view style="width: 100%;display: flex;justify-content: center;">
|
||||
<view class="blue-button" v-if="item.applyStatus != 1 && item.applyStatus != 2"
|
||||
<view class="blue-button" v-if="item.applyStatus != 1 && item.applyStatus != 2 && item.izHistory == 1 && item.applyType!=`2`"
|
||||
@click.stop="again(item)">
|
||||
重新申请
|
||||
</view>
|
||||
<view class="white-button" v-if="item.applyStatus != 1 && item.applyStatus != 2"
|
||||
<view class="white-button" v-if="item.applyStatus != 1 && item.applyStatus != 2 && item.applyType !='0'"
|
||||
@click.stop="openLook(item.auditContent)">
|
||||
驳回原因
|
||||
</view>
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
{"version":3,"file":"api.js","sources":["pages/oldmanindex/api.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\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//向机构接受拒绝\r\nexport function invitedConfirm(data){\r\n return request({\r\n url: `/api/employessapply/invitedConfirm`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//获取机构的列表\r\nexport function getOrgInfo(title){\r\n return request({\r\n url: `/api/employessapply/getOrgInfo?title=${title}&pageSize=-1&openId=${uni.getStorageSync('openid')}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//获取审核的列表\r\nexport function getEmployeesOrgRela(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=1`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n\r\n\r\n//机构邀请\r\nexport function getInvited(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//单独机构邀请\r\nexport function getId(id){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${uni.getStorageSync('openid')}&invited=0&id=${id}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//机构邀请\r\nexport function getNotice(openId){\r\n return request({\r\n url: `/api/wx/notice/query?openId=${uni.getStorageSync('openid')}&clientType=3`,\r\n\t\tmethod: 'get',\r\n\t\t// data: JSON.stringify({ openId: uni.getStorageSync('openid') }) // 把 body 串行化,强行放 data\r\n })\r\n}\r\n\r\n//检测有没有已读\r\nexport function isRead(openId){\r\n return request({\r\n url: `/api/wx/notice/unreadCount?openId=${uni.getStorageSync('openid')}&clientType=3`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n \r\n//向机构申请\r\nexport function upRead(data){\r\n return request({\r\n url: `/api/wx/notice/upRead`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n} \r\n\r\n\r\n\r\n//获取机构的列表\r\nexport function getOrgNuId(nuId){\r\n return request({\r\n url: `/api/elderInfo/getOrgInfo?nuId=${nuId}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//获取base\r\nexport function getAccount(orgCode){\r\n return request({\r\n url: `/api/baseInfo/getOrgApiAddress?orgCode=${orgCode}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//主页\r\nexport function getIndex(openId){\r\n return request({\r\n url: `/api/nuBaseInfo/elderHomeList?openId=${openId}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//老人列表\r\nexport function queryElders(elderId,orgCode){\r\n return request({\r\n url: `/api/elderInfo/queryElders?openId=${uni.getStorageSync('openid')}&elderId=${elderId}&orgCode=${orgCode}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//付款列表\r\nexport function payMoneyList(orgCode){\r\n return request({\r\n url: `/api/nuBaseInfo/queryBillList?openId=${uni.getStorageSync('openid')}&orgCode=${orgCode}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n"],"names":["request","uni"],"mappings":";;;AAqDO,SAAS,UAAU,QAAO;AAC7B,SAAOA,sBAAQ;AAAA,IACX,KAAK,+BAA+BC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IACtE,QAAQ;AAAA;AAAA,EAEV,CAAK;AACL;AAGO,SAAS,OAAO,QAAO;AAC1B,SAAOD,sBAAQ;AAAA,IACX,KAAK,qCAAqCC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IAC5E,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,OAAO,MAAK;AACxB,SAAOD,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAKO,SAAS,WAAW,MAAK;AAC5B,SAAOA,sBAAQ;AAAA,IACX,KAAK,kCAAkC,IAAI;AAAA,IACjD,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,WAAW,SAAQ;AAC/B,SAAOA,sBAAQ;AAAA,IACX,KAAK,0CAA0C,OAAO;AAAA,IAC5D,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,SAAS,QAAO;AAC5B,SAAOA,sBAAQ;AAAA,IACX,KAAK,wCAAwC,MAAM;AAAA,IACzD,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,YAAY,SAAQ,SAAQ;AACxC,SAAOA,sBAAQ;AAAA,IACX,KAAK,qCAAqCC,cAAG,MAAC,eAAe,QAAQ,CAAC,YAAY,OAAO,YAAY,OAAO;AAAA,IAClH,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,aAAa,SAAQ;AACjC,SAAOD,sBAAQ;AAAA,IACX,KAAK,wCAAwCC,oBAAI,eAAe,QAAQ,CAAC,YAAY,OAAO;AAAA,IAClG,QAAQ;AAAA,EACV,CAAK;AACL;;;;;;;;;"}
|
||||
{"version":3,"file":"api.js","sources":["pages/oldmanindex/api.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\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//向机构接受拒绝\r\nexport function invitedConfirm(data){\r\n return request({\r\n url: `/api/employessapply/invitedConfirm`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//获取机构的列表\r\nexport function getOrgInfo(title){\r\n return request({\r\n url: `/api/employessapply/getOrgInfo?title=${title}&pageSize=-1&openId=${uni.getStorageSync('openid')}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//获取审核的列表\r\nexport function getEmployeesOrgRela(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=1`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n\r\n\r\n//机构邀请\r\nexport function getInvited(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//单独机构邀请\r\nexport function getId(id){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${uni.getStorageSync('openid')}&invited=0&id=${id}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//机构邀请\r\nexport function getNotice(openId){\r\n return request({\r\n url: `/api/wx/notice/query?openId=${uni.getStorageSync('openid')}&clientType=3`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//检测有没有已读\r\nexport function isRead(openId){\r\n return request({\r\n url: `/api/wx/notice/unreadCount?openId=${uni.getStorageSync('openid')}&clientType=3`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n \r\n//向机构申请\r\nexport function upRead(data){\r\n return request({\r\n url: `/api/wx/notice/upRead`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n} \r\n\r\n\r\n\r\n//获取机构的列表\r\nexport function getOrgNuId(nuId){\r\n return request({\r\n url: `/api/elderInfo/getOrgInfo?nuId=${nuId}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//获取base\r\nexport function getAccount(orgCode){\r\n return request({\r\n url: `/api/baseInfo/getOrgApiAddress?orgCode=${orgCode}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//主页\r\nexport function getIndex(openId){\r\n return request({\r\n url: `/api/nuBaseInfo/elderHomeList?openId=${openId}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//老人列表\r\nexport function queryElders(elderId,orgCode){\r\n return request({\r\n url: `/api/elderInfo/queryElders?openId=${uni.getStorageSync('openid')}&elderId=${elderId}&orgCode=${orgCode}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//付款列表\r\nexport function payMoneyList(nuId,orgCode){\r\n return request({\r\n url: `/api/nuBaseInfo/queryBillList?openId=${uni.getStorageSync('openid')}&nuId=${nuId}&orgCode=${orgCode}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n"],"names":["request","uni"],"mappings":";;;AAqDO,SAAS,UAAU,QAAO;AAC7B,SAAOA,sBAAQ;AAAA,IACX,KAAK,+BAA+BC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IACtE,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,OAAO,QAAO;AAC1B,SAAOD,sBAAQ;AAAA,IACX,KAAK,qCAAqCC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IAC5E,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,OAAO,MAAK;AACxB,SAAOD,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAKO,SAAS,WAAW,MAAK;AAC5B,SAAOA,sBAAQ;AAAA,IACX,KAAK,kCAAkC,IAAI;AAAA,IACjD,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,WAAW,SAAQ;AAC/B,SAAOA,sBAAQ;AAAA,IACX,KAAK,0CAA0C,OAAO;AAAA,IAC5D,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,SAAS,QAAO;AAC5B,SAAOA,sBAAQ;AAAA,IACX,KAAK,wCAAwC,MAAM;AAAA,IACzD,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,YAAY,SAAQ,SAAQ;AACxC,SAAOA,sBAAQ;AAAA,IACX,KAAK,qCAAqCC,cAAG,MAAC,eAAe,QAAQ,CAAC,YAAY,OAAO,YAAY,OAAO;AAAA,IAClH,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,aAAa,MAAK,SAAQ;AACtC,SAAOD,sBAAQ;AAAA,IACX,KAAK,wCAAwCC,cAAG,MAAC,eAAe,QAAQ,CAAC,SAAS,IAAI,YAAY,OAAO;AAAA,IAC/G,QAAQ;AAAA,EACV,CAAK;AACL;;;;;;;;;"}
|
||||
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":"api.js","sources":["pages/yuangongindex/api.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\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//向机构接受拒绝\r\nexport function invitedConfirm(data){\r\n return request({\r\n url: `/api/employessapply/invitedConfirm`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//获取机构的列表\r\nexport function getOrgInfo(title){\r\n return request({\r\n url: `/api/employessapply/getOrgInfo?title=${title}&pageSize=-1&openId=${uni.getStorageSync('openid')}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//获取审核的列表\r\nexport function getEmployeesOrgRela(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=1`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//主页\r\nexport function getIndex(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//机构邀请\r\nexport function getInvited(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//单独机构邀请\r\nexport function getId(id){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${uni.getStorageSync('openid')}&invited=0&id=${id}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//机构邀请\r\nexport function getNotice(openId){\r\n return request({\r\n url: `/api/wx/notice/query?openId=${uni.getStorageSync('openid')}&clientType=2`,\r\n\t\tmethod: 'get',\r\n\t\t// data: JSON.stringify({ openId: uni.getStorageSync('openid') }) // 把 body 串行化,强行放 data\r\n })\r\n}\r\n\r\n//检测有没有已读\r\nexport function isRead(openId){\r\n return request({\r\n url: `/api/wx/notice/unreadCount?openId=${uni.getStorageSync('openid')}&clientType=2`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n \r\n//向机构申请\r\nexport function upRead(data){\r\n return request({\r\n url: `/api/wx/notice/upRead`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n} "],"names":["request","uni"],"mappings":";;;AAKO,SAAS,MAAM,MAAK;AACvB,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,eAAe,MAAK;AAChC,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,WAAW,OAAM;AAC7B,SAAOA,sBAAQ;AAAA,IACX,KAAK,wCAAwC,KAAK,uBAAuBC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IAC3G,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,oBAAoB,QAAO;AACvC,SAAOD,sBAAQ;AAAA,IACX,KAAK,kDAAkD,MAAM;AAAA,IACnE,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,SAAS,QAAO;AAC5B,SAAOA,sBAAQ;AAAA,IACX,KAAK,kDAAkD,MAAM;AAAA,IACnE,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,WAAW,QAAO;AAC9B,SAAOA,sBAAQ;AAAA,IACX,KAAK,kDAAkD,MAAM;AAAA,IACnE,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,MAAM,IAAG;AACrB,SAAOA,sBAAQ;AAAA,IACX,KAAK,kDAAkDC,oBAAI,eAAe,QAAQ,CAAC,iBAAiB,EAAE;AAAA,IAC5G,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,UAAU,QAAO;AAC7B,SAAOD,sBAAQ;AAAA,IACX,KAAK,+BAA+BC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IACtE,QAAQ;AAAA;AAAA,EAEV,CAAK;AACL;AAGO,SAAS,OAAO,QAAO;AAC1B,SAAOD,sBAAQ;AAAA,IACX,KAAK,qCAAqCC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IAC5E,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,OAAO,MAAK;AACxB,SAAOD,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;;;;;;;;;;;"}
|
||||
{"version":3,"file":"api.js","sources":["pages/yuangongindex/api.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\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//向机构接受拒绝\r\nexport function invitedConfirm(data){\r\n return request({\r\n url: `/api/employessapply/invitedConfirm`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//获取机构的列表\r\nexport function getOrgInfo(title){\r\n return request({\r\n url: `/api/employessapply/getOrgInfo?title=${title}&pageSize=-1&openId=${uni.getStorageSync('openid')}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//获取审核的列表\r\nexport function getEmployeesOrgRela(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0,1,2`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//主页\r\nexport function getIndex(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&izHistory=1`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n\r\n//机构邀请\r\nexport function getInvited(openId){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0&izHistory=1`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//单独机构邀请\r\nexport function getId(id){\r\n return request({\r\n url: `/api/employessapply/getEmployeesOrgRela?openId=${uni.getStorageSync('openid')}&invited=0&id=${id}&izHistory=1`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//机构邀请\r\nexport function getNotice(openId){\r\n return request({\r\n url: `/api/wx/notice/query?openId=${uni.getStorageSync('openid')}&clientType=2`,\r\n\t\tmethod: 'get',\r\n\t\t// data: JSON.stringify({ openId: uni.getStorageSync('openid') }) // 把 body 串行化,强行放 data\r\n })\r\n}\r\n\r\n//检测有没有已读\r\nexport function isRead(openId){\r\n return request({\r\n url: `/api/wx/notice/unreadCount?openId=${uni.getStorageSync('openid')}&clientType=2`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n \r\n//向机构申请\r\nexport function upRead(data){\r\n return request({\r\n url: `/api/wx/notice/upRead`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n} "],"names":["request","uni"],"mappings":";;;AAKO,SAAS,MAAM,MAAK;AACvB,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,eAAe,MAAK;AAChC,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,WAAW,OAAM;AAC7B,SAAOA,sBAAQ;AAAA,IACX,KAAK,wCAAwC,KAAK,uBAAuBC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IAC3G,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,oBAAoB,QAAO;AACvC,SAAOD,sBAAQ;AAAA,IACX,KAAK,kDAAkD,MAAM;AAAA,IACnE,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,SAAS,QAAO;AAC5B,SAAOA,sBAAQ;AAAA,IACX,KAAK,kDAAkD,MAAM;AAAA,IACnE,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,WAAW,QAAO;AAC9B,SAAOA,sBAAQ;AAAA,IACX,KAAK,kDAAkD,MAAM;AAAA,IACnE,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,MAAM,IAAG;AACrB,SAAOA,sBAAQ;AAAA,IACX,KAAK,kDAAkDC,oBAAI,eAAe,QAAQ,CAAC,iBAAiB,EAAE;AAAA,IAC5G,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,UAAU,QAAO;AAC7B,SAAOD,sBAAQ;AAAA,IACX,KAAK,+BAA+BC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IACtE,QAAQ;AAAA;AAAA,EAEV,CAAK;AACL;AAGO,SAAS,OAAO,QAAO;AAC1B,SAAOD,sBAAQ;AAAA,IACX,KAAK,qCAAqCC,cAAAA,MAAI,eAAe,QAAQ,CAAC;AAAA,IAC5E,QAAQ;AAAA,EACV,CAAK;AACL;AAGO,SAAS,OAAO,MAAK;AACxB,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
|
|
@ -5,7 +5,6 @@ function getNotice(openId) {
|
|||
return request_index.request({
|
||||
url: `/api/wx/notice/query?openId=${common_vendor.index.getStorageSync("openid")}&clientType=3`,
|
||||
method: "get"
|
||||
// data: JSON.stringify({ openId: uni.getStorageSync('openid') }) // 把 body 串行化,强行放 data
|
||||
});
|
||||
}
|
||||
function isRead(openId) {
|
||||
|
|
@ -45,9 +44,9 @@ function queryElders(elderId, orgCode) {
|
|||
method: "get"
|
||||
});
|
||||
}
|
||||
function payMoneyList(orgCode) {
|
||||
function payMoneyList(nuId, orgCode) {
|
||||
return request_index.request({
|
||||
url: `/api/nuBaseInfo/queryBillList?openId=${common_vendor.index.getStorageSync("openid")}&orgCode=${orgCode}`,
|
||||
url: `/api/nuBaseInfo/queryBillList?openId=${common_vendor.index.getStorageSync("openid")}&nuId=${nuId}&orgCode=${orgCode}`,
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ const _sfc_main = {
|
|||
switch (index) {
|
||||
case 2:
|
||||
common_vendor.index.navigateTo({
|
||||
url: `/pages/oldmanindex/moneylist?orgCode=${item.orgCode}`
|
||||
url: `/pages/oldmanindex/moneylist?nuId=${item.nuId}&&orgCode=${item.orgCode}`
|
||||
});
|
||||
break;
|
||||
case 5:
|
||||
|
|
@ -187,10 +187,11 @@ const _sfc_main = {
|
|||
e: common_vendor.t(weekdayText.value),
|
||||
f: common_vendor.t(item.humidDeviceList && item.humidDeviceList[0] && item.humidDeviceList[0].humidity !== void 0 && item.humidDeviceList[0].humidity !== null ? item.humidDeviceList[0].humidity : "—"),
|
||||
g: common_vendor.t(item.humidDeviceList && item.humidDeviceList[0] && item.humidDeviceList[0].temperature !== void 0 && item.humidDeviceList[0].temperature !== null ? item.humidDeviceList[0].temperature : "—"),
|
||||
h: common_vendor.t(item.elderInfo && item.elderInfo.name),
|
||||
i: common_vendor.t(item.nuName),
|
||||
j: common_vendor.t(item.departName),
|
||||
k: common_vendor.f(buttonArray.value, (item0, index2, i1) => {
|
||||
h: `https://www.focusnu.com/media/directive/index/oldmanphoto/${item.elderInfo.sex == "男" ? `old` : `woman`}.png`,
|
||||
i: common_vendor.t(item.elderInfo && item.elderInfo.name),
|
||||
j: common_vendor.t(item.nuName),
|
||||
k: common_vendor.t(item.departName),
|
||||
l: common_vendor.f(buttonArray.value, (item0, index2, i1) => {
|
||||
return {
|
||||
a: `https://www.focusnu.com/media/directive/index/oldmanphoto/${index2}.png`,
|
||||
b: common_vendor.t(item0),
|
||||
|
|
@ -198,33 +199,33 @@ const _sfc_main = {
|
|||
d: common_vendor.o(($event) => clickButton(item, index2), index2)
|
||||
};
|
||||
}),
|
||||
l: `https://www.focusnu.com/media/directive/index/oldmanphoto/more.png`
|
||||
m: `https://www.focusnu.com/media/directive/index/oldmanphoto/more.png`
|
||||
} : {}, {
|
||||
m: item.applyStatus != `-1` && !item.elderInfo
|
||||
n: item.applyStatus != `-1` && !item.elderInfo
|
||||
}, item.applyStatus != `-1` && !item.elderInfo ? {
|
||||
n: common_vendor.t(timeText.value),
|
||||
o: common_vendor.t(dateText.value),
|
||||
p: common_vendor.t(weekdayText.value),
|
||||
q: common_vendor.t(item.humidDeviceList && item.humidDeviceList[0] && item.humidDeviceList[0].temperature !== void 0 && item.humidDeviceList[0].temperature !== null ? item.humidDeviceList[0].temperature : "—"),
|
||||
r: common_vendor.t(item.humidDeviceList && item.humidDeviceList[0] && item.humidDeviceList[0].humidity !== void 0 && item.humidDeviceList[0].humidity !== null ? item.humidDeviceList[0].humidity : "—")
|
||||
o: common_vendor.t(timeText.value),
|
||||
p: common_vendor.t(dateText.value),
|
||||
q: common_vendor.t(weekdayText.value),
|
||||
r: common_vendor.t(item.humidDeviceList && item.humidDeviceList[0] && item.humidDeviceList[0].temperature !== void 0 && item.humidDeviceList[0].temperature !== null ? item.humidDeviceList[0].temperature : "—"),
|
||||
s: common_vendor.t(item.humidDeviceList && item.humidDeviceList[0] && item.humidDeviceList[0].humidity !== void 0 && item.humidDeviceList[0].humidity !== null ? item.humidDeviceList[0].humidity : "—")
|
||||
} : {}, {
|
||||
s: item.applyStatus != `-1` && !item.elderInfo
|
||||
t: item.applyStatus != `-1` && !item.elderInfo
|
||||
}, item.applyStatus != `-1` && !item.elderInfo ? {
|
||||
t: common_vendor.t(item.nuName),
|
||||
v: common_vendor.o(($event) => searchjigou(item), index)
|
||||
v: common_vendor.t(item.nuName),
|
||||
w: common_vendor.o(($event) => searchjigou(item), index)
|
||||
} : {}, {
|
||||
w: item.applyStatus == `-1`
|
||||
x: item.applyStatus == `-1`
|
||||
}, item.applyStatus == `-1` ? {
|
||||
x: `https://www.focusnu.com/media/directive/index/saoyisaowhite.png`,
|
||||
y: common_vendor.o(jumpSaoyisao, index),
|
||||
z: `https://www.focusnu.com/media/directive/index/shoudong.png`,
|
||||
A: common_vendor.o(jumpInput, index)
|
||||
y: `https://www.focusnu.com/media/directive/index/saoyisaowhite.png`,
|
||||
z: common_vendor.o(jumpSaoyisao, index),
|
||||
A: `https://www.focusnu.com/media/directive/index/shoudong.png`,
|
||||
B: common_vendor.o(jumpInput, index)
|
||||
} : {}, {
|
||||
B: item.applyStatus != `-1` && !item.elderInfo
|
||||
C: item.applyStatus != `-1` && !item.elderInfo
|
||||
}, item.applyStatus != `-1` && !item.elderInfo ? {
|
||||
C: common_vendor.t(item.departName)
|
||||
D: common_vendor.t(item.departName)
|
||||
} : {}, {
|
||||
D: index
|
||||
E: index
|
||||
});
|
||||
}),
|
||||
h: `100vh`,
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -11,16 +11,17 @@ const _sfc_main = {
|
|||
common_vendor.ref(0);
|
||||
const workArray = common_vendor.ref([]);
|
||||
common_vendor.ref(false);
|
||||
const saveorgCode = common_vendor.ref("");
|
||||
const payMoneyListvalue = common_vendor.ref("");
|
||||
const orgCode = common_vendor.ref("");
|
||||
common_vendor.onLoad((options) => {
|
||||
saveorgCode.value = options.orgCode;
|
||||
pages_oldmanindex_api.payMoneyList(saveorgCode.value).then((res) => {
|
||||
payMoneyListvalue.value = options.nuId;
|
||||
orgCode.value = options.orgCode;
|
||||
pages_oldmanindex_api.payMoneyList(payMoneyListvalue.value, orgCode.value).then((res) => {
|
||||
workArray.value = res.result;
|
||||
common_vendor.index.__f__("log", "at pages/oldmanindex/moneylist.vue:139", "res", res.result);
|
||||
});
|
||||
});
|
||||
common_vendor.onPullDownRefresh(() => {
|
||||
pages_oldmanindex_api.payMoneyList(saveorgCode.value).then((res) => {
|
||||
pages_oldmanindex_api.payMoneyList(pages_oldmanindex_api.payMoneyList.value, orgCode.value).then((res) => {
|
||||
workArray.value = res.result;
|
||||
});
|
||||
common_vendor.index.stopPullDownRefresh();
|
||||
|
|
|
|||
|
|
@ -23,25 +23,25 @@ function getOrgInfo(title) {
|
|||
}
|
||||
function getEmployeesOrgRela(openId) {
|
||||
return request_index.request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=1`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0,1,2`,
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
function getIndex(openId) {
|
||||
return request_index.request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&izHistory=1`,
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
function getInvited(openId) {
|
||||
return request_index.request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${openId}&invited=0&izHistory=1`,
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
function getId(id) {
|
||||
return request_index.request({
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${common_vendor.index.getStorageSync("openid")}&invited=0&id=${id}`,
|
||||
url: `/api/employessapply/getEmployeesOrgRela?openId=${common_vendor.index.getStorageSync("openid")}&invited=0&id=${id}&izHistory=1`,
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -161,8 +161,8 @@ const _sfc_main = {
|
|||
}),
|
||||
g: common_vendor.f(menuArray.value, (item, index, i0) => {
|
||||
return common_vendor.e({
|
||||
a: item.applyStatus != `2`
|
||||
}, item.applyStatus != `2` ? {} : {}, {
|
||||
a: !(item.applyStatus == "2" || item.applyType == "2")
|
||||
}, !(item.applyStatus == "2" || item.applyType == "2") ? {} : {}, {
|
||||
b: item.applyType == "1" && item.applyStatus == `1`
|
||||
}, item.applyType == "1" && item.applyStatus == `1` ? {
|
||||
c: `https://www.focusnu.com/media/directive/index/refresh.png`,
|
||||
|
|
@ -190,8 +190,8 @@ const _sfc_main = {
|
|||
s: common_vendor.o(($event) => jumptolist(item.auditContent), index),
|
||||
t: common_vendor.o(($event) => again(), index)
|
||||
} : {}, {
|
||||
v: item.applyStatus == `2`
|
||||
}, item.applyStatus == `2` ? {
|
||||
v: item.applyStatus == `2` || item.applyType == `2`
|
||||
}, item.applyStatus == `2` || item.applyType == `2` ? {
|
||||
w: `https://www.focusnu.com/media/directive/index/addstaff/top.png`,
|
||||
x: `https://www.focusnu.com/media/directive/index/addstaff/more.png`,
|
||||
y: `https://www.focusnu.com/media/directive/index/addstaff/00.png`,
|
||||
|
|
@ -216,8 +216,8 @@ const _sfc_main = {
|
|||
}, item.applyStatus == `-1` ? {
|
||||
I: common_vendor.o(($event) => searchjigou(), index)
|
||||
} : {}, {
|
||||
J: item.applyStatus == `2`
|
||||
}, item.applyStatus == `2` ? {
|
||||
J: item.applyStatus == `2` || item.applyType == `2`
|
||||
}, item.applyStatus == `2` || item.applyType == `2` ? {
|
||||
K: common_vendor.t(item.comName)
|
||||
} : {}, {
|
||||
L: index
|
||||
|
|
|
|||
|
|
@ -65,27 +65,39 @@ const _sfc_main = {
|
|||
a: common_vendor.t(item.departName),
|
||||
b: common_vendor.t(item.comLegalPerson),
|
||||
c: common_vendor.t(item.tel),
|
||||
d: item.applyStatus === `1`
|
||||
}, item.applyStatus === `1` ? {} : {}, {
|
||||
e: item.applyStatus === `2`
|
||||
}, item.applyStatus === `2` ? {} : {}, {
|
||||
f: item.applyStatus === `3`
|
||||
}, item.applyStatus === `3` ? {} : {}, {
|
||||
g: common_vendor.t(item.comRegisterAddress),
|
||||
h: item.applyStatus != 1 && item.applyStatus != 2
|
||||
}, item.applyStatus != 1 && item.applyStatus != 2 ? {
|
||||
i: common_vendor.o(($event) => again(), index)
|
||||
d: item.applyStatus === `1` && item.applyType != `2`
|
||||
}, item.applyStatus === `1` && item.applyType != `2` ? {
|
||||
e: common_vendor.t(item.applyType == "0" ? `待确认` : `申请中`)
|
||||
} : {}, {
|
||||
j: item.applyStatus != 1 && item.applyStatus != 2
|
||||
}, item.applyStatus != 1 && item.applyStatus != 2 ? {
|
||||
k: common_vendor.o(($event) => openLook(item.auditContent), index)
|
||||
f: item.applyStatus === `2` && item.applyType != `2`
|
||||
}, item.applyStatus === `2` && item.applyType != `2` ? {
|
||||
g: common_vendor.t(item.applyType == "0" ? `已接受` : `申请通过`)
|
||||
} : {}, {
|
||||
l: common_vendor.s(item.applyStatus != 1 && item.applyStatus != 2 ? {
|
||||
h: item.applyStatus === `3` && item.applyType != `2`
|
||||
}, item.applyStatus === `3` && item.applyType != `2` ? {
|
||||
i: common_vendor.t(item.applyType == "0" ? `已驳回` : `申请驳回`)
|
||||
} : {}, {
|
||||
j: item.applyStatus === `1` && item.applyType == `2`
|
||||
}, item.applyStatus === `1` && item.applyType == `2` ? {} : {}, {
|
||||
k: item.applyStatus === `2` && item.applyType == `2`
|
||||
}, item.applyStatus === `2` && item.applyType == `2` ? {} : {}, {
|
||||
l: item.applyStatus === `3` && item.applyType == `2`
|
||||
}, item.applyStatus === `3` && item.applyType == `2` ? {} : {}, {
|
||||
m: common_vendor.t(item.comRegisterAddress),
|
||||
n: item.applyStatus != 1 && item.applyStatus != 2 && item.izHistory == 1 && item.applyType != `2`
|
||||
}, item.applyStatus != 1 && item.applyStatus != 2 && item.izHistory == 1 && item.applyType != `2` ? {
|
||||
o: common_vendor.o(($event) => again(), index)
|
||||
} : {}, {
|
||||
p: item.applyStatus != 1 && item.applyStatus != 2 && item.applyType != "0"
|
||||
}, item.applyStatus != 1 && item.applyStatus != 2 && item.applyType != "0" ? {
|
||||
q: common_vendor.o(($event) => openLook(item.auditContent), index)
|
||||
} : {}, {
|
||||
r: common_vendor.s(item.applyStatus != 1 && item.applyStatus != 2 ? {
|
||||
height: `340rpx`
|
||||
} : {
|
||||
height: `280rpx`
|
||||
}),
|
||||
m: index
|
||||
s: index
|
||||
});
|
||||
}),
|
||||
g: common_vendor.s(!workArray.value.length ? {
|
||||
|
|
|
|||
|
|
@ -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="s" class="data-v-9f30267b"><view class="white-small data-v-9f30267b" style="{{item.r}}"><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">{{item.e}}</view><view wx:if="{{item.f}}" class="applysuccess data-v-9f30267b">{{item.g}}</view><view wx:if="{{item.h}}" class="applyfail data-v-9f30267b">{{item.i}}</view><view wx:if="{{item.j}}" class="applying data-v-9f30267b" style="right:30rpx;width:240rpx"> 员工信息变更中 </view><view wx:if="{{item.k}}" class="applysuccess data-v-9f30267b" style="right:30rpx;width:240rpx"> 员工信息变更通过 </view><view wx:if="{{item.l}}" class="applyfail data-v-9f30267b" style="right:30rpx;width:240rpx"> 员工信息变更驳回 </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.m}}</view></view><view class="data-v-9f30267b" style="width:100%;display:flex;justify-content:center"><view wx:if="{{item.n}}" class="blue-button data-v-9f30267b" catchtap="{{item.o}}"> 重新申请 </view><view wx:if="{{item.p}}" class="white-button data-v-9f30267b" catchtap="{{item.q}}"> 驳回原因 </view></view></view></view></view></view></view>
|
||||
Loading…
Reference in New Issue