hz-zhhq-app/pages/access-card-old/access-card-detail.vue

287 lines
7.1 KiB
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="container">
<view class="details">
<view class="detail_msg">
<view class="info-item">
<text class="label">办卡类型 </text>
<text class="infoSpan">{{item.TYPE_NAME}}</text>
</view>
<view class="info-item">
<text class="label">门卡类型 </text>
<text class="infoSpan">{{item.CARD_TYPE}}</text>
</view>
<view class="info-item" v-if="item.TYPE==1 || item.TYPE==2">
<text class="label">人员部门: </text>
<text class="infoSpan">{{item.UNIT}}</text>
</view>
<view class="info-item" v-if="item.TYPE==1">
<text class="label">补办人员: </text>
<text class="infoSpan">{{item.PERSONNEL}}</text>
</view>
<view class="info-item" v-if="item.TYPE==1">
<text class="label">补办卡号: </text>
<text class="infoSpan">{{item.CARD_CODE}}</text>
</view>
<view class="info-item" v-if="item.TYPE==2">
<text class="label">办卡人员: </text>
<text class="infoSpan">{{item.PERSONNEL}}</text>
</view>
<view class="info-item" v-if="item.TYPE==3">
<text class="label">人员单位: </text>
<text class="infoSpan">{{item.UNIT}}</text>
</view>
<view class="info-item" v-if="item.TYPE==3">
<text class="label">人员姓名: </text>
<text class="infoSpan">{{item.PERSONNEL}}</text>
</view>
<view class="info-item" v-if="item.TYPE==3">
<text class="label">联系电话: </text>
<text class="infoSpan">{{item.PERSONNEL_PHONE}}</text>
</view>
<view class="info-item">
<view style="color: #333;font-size: 30upx;font-weight: bold;padding: 10upx 0px;">
<text>申请事由:</text>
</view>
<view style="width: 100%;border: 1px solid #E5E5E5;margin-top: 20upx;padding: 20upx;height: 350upx;color: #666;border-radius: 10upx;">
<textarea class="textarea" v-model="item.MATTER" placeholder="请输入申请事由" disabled="true" maxlength="150"/>
</view>
</view>
<view class="info-item" v-if="item.TYPE==3">
<text class="label">出入区域: </text>
<text class="infoSpan">{{item.ACCESS_AREA}}</text>
</view>
<view class="info-item" v-if="item.TYPE==3">
<text class="label">日期限制: </text>
<text class="infoSpan">{{item.START_TIME}} - {{item.END_TIME}}</text>
</view>
<view class="info-item">
<text class="label">申请人: </text>
<text class="infoSpan">{{item.USER_NAME}}</text>
</view>
<view class="info-item">
<text class="label">申请时间: </text>
<text class="infoSpan">{{item.APPLY_TIME}}</text>
</view>
<view class="img-box" >
<image v-for="(itemImg,imgIndex) in item.pictures" :key="imgIndex" :src="formatImgUrl(itemImg)" mode="" @click="vbPicture(new Array(formatImgUrl(itemImg)))"></image>
</view>
</view>
</view>
<view >
<view class="details">
<YSteps :lineNum='lineNum' color='#fff' backgroundColor='#4db4ea' :infoList='process'></YSteps>
</view>
</view>
<view class="occupied" style="height: 180upx;"></view>
</view>
</template>
<script>
import {
getCard,updateProperty
} from '@/common/api.js';
import {
callbackRequest,
getStorage,
alertTip,
formatDate,
sureAlterTip,
vbPicture,
formatImgUrl
} from '@/common/util.js';
import YSteps from '@/components/Y-Steps/Y-Steps.vue';
import UniPopup from "@/components/uni-popup/uni-popup.vue";
export default {
components: {
UniPopup,
YSteps
},
data() {
return {
vbPicture:vbPicture,
formatImgUrl:formatImgUrl,
userInfo:getStorage('userInfo'),
userId:getStorage('userInfo').userId,
formatDate:formatDate,
item: {DEMAND:'',FEEDBACK:''},
id:0,
feedback:'',
submitFlag:true,
process: [],
lineNum:0,
}
},
onLoad(option) {
this.id = option.id||0;
this.getCard();
},
methods: {
getCard(){
let params = {
method: getCard,
data: {
userId:this.userId,
id:this.id
}
};
callbackRequest(params).then(res => {
res = res.data;
console.log(res)
if (res.returnCode == 1) {
let _this = this;
_this.item = res.returnData[0];
let details = res.returnData[0].detail||[]
for(let i=0;i<details.length;i++){
let obj = details[i];
if(_this.examineBatch == obj.EXAMINE_BATCH){
_this.examineButton = false;
}
}
_this.process=[];
if(_this.process.length==0){
let pObj0 = {
date: '经办人',
info: _this.item.USER_NAME+' 发起申请',
time: formatDate( _this.item.APPLY_TIME,'dateTime')
}
_this.process.push(pObj0);
}
if(details.length>0){
for(let i=0;i<details.length;i++){
let pObj = {
date: details[i].BATCH_DESCRIPTION,
info: details[i].USER_NAME+" "+(details[i].EXAMINE_STATE==1?"同意":"拒绝 "+(details[i].EXAMINE_OPINION||'')),
time: formatDate(details[i].EXAMINE_TIME,'dateTime')
}
_this.process.push(pObj);
}
}
} else {
alertTip(res.returnMsg);
}
});
},
}
}
</script>
<style lang="scss">
@import '@/static/css/common.scss';
.container {
min-height:100vh;
background: #f8f8f8;
font-size: 28upx;
.details{
// height: 550upx;
background: white;
margin: 15upx;
border-radius: 15upx;
padding-bottom:15rpx;
.detail_header {
border-bottom: #f8f8f8 5upx solid;
height: 90upx;
line-height: 90upx;
margin: 15upx;
border-radius: 10upx;
.blueSign {
height: 28upx;
width: 5upx;
background: #00c277;
display: inline-block;
margin-left: 20upx;
}
.font-tilte {
font-weight:bold;
margin-left: 20upx;
}
}
.form-box {
background: #fff;
.form-item {
overflow: hidden;
border-bottom: 1px solid #eee;
padding: 30upx 20upx;
.label {
float: left;
width: 180upx;
font-size: 28upx;
color: #333;
font-weight: bold;
line-height: 50upx;
}
.ipt-box {
margin-left: 160upx;
input {
width: 90%;
height: 50upx;
line-height: 50upx;
font-size: 26upx;
color: #666;
}
}
.select {
.arrow {
float: right;
width: 16upx;
height: 29upx;
margin-top: 10upx;
}
.picker {
height: 50upx;
line-height: 50upx;
font-size: 26upx;
color: #666;
margin-left: 10upx;
}
}
}
}
.detail_msg {
margin-left: 20upx;
border-radius: 10upx;
.info-item{
border-bottom:1px solid #f8f8f8;
padding:20upx 10upx;
line-height: 50upx;
.label{
float: left;
width: 180upx;
font-size: 28upx;
color: #333;
font-weight: bold;
line-height: 50upx;
}
}
.status {
.infoSpan{
color: #00c277;
}
.infoSpan2{
color: red;
}
}
.img-box {
// background: #fff;
image{
width: 200upx;
height: 200upx;
margin:20upx 20upx 0 0;
}
}
}
}
}
</style>