<template> <view> <cu-custom bgColor="bg-gradual-blueness" :isBack="true" :isRingt="true"> <block slot="backText">返回</block> <block slot="content">职能部门审核</block> <block slot="right"> <!-- <view @click="$noMultipleClicks(goToAdd)">申请</view>--> </block> </cu-custom> <view class="select-fixed top-fixed"> <view class="cu-bar search bg-white"> <!-- <picker @change="statusChange" :value="sindex" :range="statusList" range-key="name">--> <!-- <view class="saixuan">--> <!-- <text>筛选</text>--> <!-- <text class="cuIcon-triangledownfill"></text>--> <!-- </view>--> <!-- </picker>--> <view class="search-form radius" style="margin-left: 10upx;"> <text class="cuIcon-search"></text> <input @input="InputBlur" placeholder="请输入关键字" v-model="NameLikes" confirm-type="search"></input> </view> <view class="action"> <button class="cu-btn bg-green shadow-blur radius" @click="getQuery">搜索</button> </view> </view> <view class="line"></view> </view> <scroll-view class="dy-scroll" @scrolltolower="scrolltolower" scroll-y :style="'top:'+totalHeight+'px;height:calc(100vh - '+totalHeight+'px)'"> <view v-if="list.length>0"> <view class="dy-list"> <view v-for="(item,index) of list" :key="item.OUTSIDERS_ID" :data-id="item.OUTSIDERS_ID" @click="$noMultipleClicks(goToDetail,item.OUTSIDERS_ID)" class="dy-list-item p20"> <view class="dy-title-flex align-center"> <text>来源单位:{{item.SOURCE_UNIT}}</text> <text>入场人数:{{item.ADMISSION_NUMBER}}</text> </view> <view class="dy-subtitle-flex"> <text>申请来源:{{validStr(item.EXAMINE_DEPARTMENT_ID) ? '外来人员扫码申请' : item.APPLY_NAME+'申请'}}</text> </view> <view class="dy-subtitle-flex"> <text>申请用时:{{item.APPLICATION_TIME}}</text> </view> <view class="dy-subtitle-flex"> <text>入场事由:{{item.SUBJECT_MATTER}}</text> </view> <view class="dy-subtitle-flex" style="height: 34upx;"> <text> 状态:{{translate(item)}} </text> <text style="position: absolute;right:20upx;bottom:-8upx"> <button class="cu-btn margin-tb-sm sm" @click="$noMultipleClicks(goToDetail,item.OUTSIDERS_ID)"> 查看 </button> <button v-if="item.STATE === '1' && item.ISOVERDUE === '1'" style="margin-left: 20upx" class="cu-btn bg-blue margin-tb-sm sm" @click="$noMultipleClicks(goPass,item.OUTSIDERS_ID)"> 通过 </button> <button v-if="item.STATE === '1' && item.ISOVERDUE === '1'" style="margin-left: 20upx" class="cu-btn bg-yellow margin-tb-sm sm" @click="$noMultipleClicks(goReject,item.OUTSIDERS_ID)"> 打回 </button> </text> </view> </view> </view> </view> <view v-else-if="dataFlag=='noData'" class="dy-null"> <view class="dy-null-img"> <image :src="background[dataFlag].url" mode=""></image> </view> <view class="dy-null-title"> {{background[dataFlag].msg}} </view> </view> <view class="cu-tabbar-height"></view> </scroll-view> <view :class="['cu-modal',{'show':modalPass}]"> <view class="cu-dialog"> <view class="cu-bar bg-white justify-end"> <view class="content">审核通过</view> <view class="action" @tap="modalPass = false"> <text class="cuIcon-close text-red"></text> </view> </view> <view> <view class="wrapper"> <view class="handCenter"> <view class="form"> <view class="wui-form-list"> <view class="cu-form-group"> <view class="title">审批部室</view> <picker @change="PickerApprove" :value="form.APPROVE_DEPARTMENT_INDEX" :range="approveDeptList" range-key="NAME" :disabled="approveDeptList.length == 0" @click="isBlankList('approve')"> <view class="picker"> {{form.APPROVE_DEPARTMENT_NAME?form.APPROVE_DEPARTMENT_NAME:'请选择'}} </view> </picker> </view> </view> </view> </view> </view> </view> <view class="cu-bar bg-white justify-end"> <view class="action"> <button class="cu-btn bg-blue margin-left" @click="modalPass = false">取消</button> <button class="cu-btn bg-green margin-left" @click="$noMultipleClicks(confirmtoPass)">提交</button> </view> </view> </view> </view> <view :class="['cu-modal',{'show':modalShow}]" v-if="modalShow"> <view class="cu-dialog"> <view class="cu-bar bg-white justify-end"> <view class="content">打回原因</view> <view class="action" @tap="modalShow = false"> <text class="cuIcon-close text-red"></text> </view> </view> <view> <view class="wrapper"> <view class="handCenter"> <view class="form"> <view class="wui-form-list"> <view class="title">打回原因</view> <textarea v-model="form.REJECTOPINION" placeholder="请输入打回原因"></textarea> </view> </view> </view> </view> </view> <view class="cu-bar bg-white justify-end"> <view class="action"> <button class="cu-btn bg-green margin-left" @click="$noMultipleClicks(confirmtoExamine)">提交</button> <button class="cu-btn bg-blue margin-left" @click="modalShow = false">关闭</button> </view> </view> </view> </view> </view> </template> <script> import { basePath, loginSession, loginUserId, loginUser, corpinfoId } from '@/common/tool.js'; export default { data() { return { showRight: false, modalShow: false, modalPass: false, dataFlag: 'noData', OUTSIDERS_ID: '', form: { APPROVE_DEPARTMENT_INDEX: '', APPROVE_DEPARTMENT_ID: '', APPROVE_DEPARTMENT_NAME: '', REJECTOPINION: '', //打回原因 }, approveDeptList: [], totalHeight: 0, list: [], //返回数据 page: 1, //分页参数--页数 rows: 10, //分页参数--每页数据条数 totalCount: 0, //分页参数--初始化页数 isEnd: false, //防止多次刷新 totalPage: 0, //分页参数--分页数量 NameLikes: '', noClick: true, statusList: [ { id: '0', name: '未提交' }, { id: '1', name: '待审核' }, { id: '2', name: '待审批' }, { id: '3', name: '待确认' }, { id: '4', name: '进场' }, { id: '5', name: '出场' }, { id: '6', name: '已打回' }, { id: '7', name: '待归档' }, { id: '8', name: '已归档' }, ], sindex: -1, STATUS: '' } }, mounted() { uni.createSelectorQuery().select(".select-fixed").boundingClientRect(data => { this.totalHeight = data.height }).exec(); }, onLoad(event) { this.getUserList('approveDeptList') }, onShow() { var _this = this; _this.background = require('@/common/background.json'); _this.showCount = -1; _this.currentPage = 1; _this.list = []; _this.isEnd = false; _this.getData(); loginSession(); }, methods: { goToDetail(id) { uni.navigateTo({ url: '/pages/application/accesscontrol/outsidersmanage/depttoexamine/detail?id=' + id }); }, goToAdd() { uni.navigateTo({ url: '/pages/application/accesscontrol/carmanage/apply/detail' }); }, getQuery() { var _this = this; _this.showCount = -1; _this.currentPage = 1; _this.list = []; _this.isEnd = false; _this.getData(); }, scrolltolower() { var _this = this; _this.showCount = -1; _this.currentPage = _this.currentPage + 1; _this.isEnd = false; if (_this.totalPage >= _this.currentPage) { _this.getData(); } }, statusChange(e) { this.sindex = e.detail.value; this.STATUS = this.statusList[this.sindex].id; this.getQuery(); }, getData() { var _this = this; if (_this.isEnd) { return } else { this.isEnd = true; } uni.showLoading({ title: "加载中..." }); uni.request({ url: basePath + 'app/depttoexamine/listperson?showCount=' + _this.showCount + '¤tPage=' + _this.currentPage, method: 'POST', dataType: 'json', header: { 'Content-type': 'application/x-www-form-urlencoded' }, data: { loginUserName: loginUser.USERNAME, loginUserId: loginUser.USER_ID, EXAMINE_USER: loginUser.USER_ID, DEPARTMENT_ID: loginUser.DEPARTMENT_ID, STATE: _this.STATUS, KEYWORDS: _this.NameLikes, CORPINFO_ID :corpinfoId, }, success: (res) => { uni.hideLoading(); if (res.data != null) { _this.totalPage = res.data.page.totalPage; for (let i = 0; i < res.data.varList.length; i++) { var data1 = Date.parse(res.data.varList[i].STARTTIME + ':00') var data2 = Date.parse(res.data.varList[i].ENDTIME + ':59') var data3 = new Date() if (data2 >= data3) { res.data.varList[i].ISOVERDUE = '1' } else { res.data.varList[i].ISOVERDUE = '0' } } if (_this.list.length == 0) { _this.list = res.data.varList; } else { if (res.data.varList != null) { _this.list.push(...res.data.varList); } } } } }) }, goPass(OUTSIDERS_ID) { this.OUTSIDERS_ID = OUTSIDERS_ID this.modalPass = true; this.form.APPROVE_DEPARTMENT_INDEX = '' this.form.APPROVE_DEPARTMENT_ID = '' this.form.APPROVE_DEPARTMENT_NAME = '' }, confirmtoPass() { //通过 uni.showLoading({ title: '请稍候' }) if (!this.validStr(this.form.APPROVE_DEPARTMENT_ID)) { uni.hideLoading(); uni.showToast({ icon: 'none', title: '请选择审批部室', duration: 1500 }); return } uni.showModal({ title: '提示', content: '确定要审核通过吗', success: function (res) { if (res.confirm) { uni.request({ url: basePath + '/app/depttoexamine/editperson', method: 'POST', dataType: 'json', header: { 'Content-type': 'application/x-www-form-urlencoded' }, data: { OUTSIDERS_ID : this.OUTSIDERS_ID, loginUserName: loginUser.USERNAME, loginUserId: loginUser.USER_ID, EXAMINE_PEOPLE: loginUser.NAME, APPROVE_DEPARTMENT_ID: this.form.APPROVE_DEPARTMENT_ID, STATE: 2, }, success: (res) => { uni.hideLoading(); if ("success" == res.data.result) { this.modalPass = false; this.getQuery() } } }) } else if (res.cancel) { uni.hideLoading(); this.modalPass = false; } }.bind(this) }); }, goReject(OUTSIDERS_ID) { this.modalShow = true this.OUTSIDERS_ID = OUTSIDERS_ID this.form.REJECTOPINION = '' }, confirmtoExamine() { if (!this.validStr(this.form.REJECTOPINION)) { uni.showToast({ icon: 'none', title: '请输入打回原因', duration: 1500 }); return } uni.showLoading({ title: '请稍候' }) uni.request({ url: basePath + '/app/depttoexamine/editperson', method: 'POST', dataType: 'json', header: { 'Content-type': 'application/x-www-form-urlencoded' }, data: { OUTSIDERS_ID: this.OUTSIDERS_ID, loginUserId: loginUser.USER_ID, EXAMINE_PEOPLE: loginUser.NAME, STATE: 6, REJECTOPINION: this.REJECTOPINION }, success: (res) => { uni.hideLoading(); if ("success" == res.data.result) { this.modalShow = false this.form.REJECTOPINION = '' this.getQuery() } } }) }, translate(item) { var stateName = '' for (var i = 0; i < this.statusList.length; i++) { if (this.statusList[i].id === item.STATE) { stateName = this.statusList[i].name } } if (item.STATE === '1' || item.STATE === '2' || item.STATE === '3') { stateName += (item.ISOVERDUE === '1' ? '' : ',申请已过期') } return stateName }, getUserList(list) { //发送 post 请求 var _this = this; uni.request({ method: 'POST', dataType: 'json', header: { 'Content-type': 'application/x-www-form-urlencoded' }, url: basePath + '/app/sys/listForDoor', data: { FIELD_ITEM: 'IS_EXAMINE_AND_APPROVE', CORPINFO_ID: corpinfoId, tm: new Date().getTime() }, success: function (res) { if ("success" == res.data.result) { _this[list] = res.data.list; } else { uni.showToast({ title: res.data.message, duration: 2000 }); } } }) }, isBlankList(userType) { switch(userType) { case 'approve': if(this.approveDeptList.length == 0) { uni.showToast({ icon: 'none', title: '暂无对应部门,请先配置审核审批权限', duration: 1500 }) } break } }, PickerApprove(e) { this.form.APPROVE_DEPARTMENT_INDEX = e.detail.value; this.form.APPROVE_DEPARTMENT_ID=this.approveDeptList[this.form.APPROVE_DEPARTMENT_INDEX].DEPARTMENT_ID; this.form.APPROVE_DEPARTMENT_NAME=this.approveDeptList[this.form.APPROVE_DEPARTMENT_INDEX].NAME; this.$forceUpdate();//强制刷新 } } } </script> <style> .dy-card { background-color: #fff; border-radius: 10upx; margin: 30upx } .dy-card-title { display: flex; justify-content: space-between; border-bottom: 1px solid #eee; min-height: 80upx; line-height: 80upx; padding: 0 30upx; } .dy-card-content { padding: 0upx 30upx 30upx; } .dy-card-content-item { margin-top: 20upx; } .dy-card-content-item .title { display: flex; align-items: center; } .dy-card-content-item .title .l { width: 10upx; height: 30upx; border-radius: 20upx; background-color: #666; margin-right: 10upx; } .dy-card-content-item .content { background-color: #F1F1F1; padding: 10upx 14upx; margin-top: 14upx; line-height: 1.6; } .dy-card-content-item .name text { background-color: #F1F1F1; padding: 10upx 14upx; margin-top: 14upx; line-height: 1.6; display: inline-block; } .dy-card-foot { border-top: 1px solid #eee; padding: 30upx; } .cu-modal{ z-index: 0; } </style>