422 lines
13 KiB
Vue
422 lines
13 KiB
Vue
<template>
|
|
<view>
|
|
<cu-custom bgColor="bg-gradual-blueness" :isBack="true">
|
|
<block slot="backText">返回</block>
|
|
<block slot="content">作业验收</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.ELECTRICITY_ID" :data-id="item.ELECTRICITY_ID"
|
|
@click="$noMultipleClicks(goToDetail,item.ELECTRICITY_ID)" class="dy-list-item p20">
|
|
<view class="dy-title-flex align-center">
|
|
<text>编号:{{item.CHECK_NO}}</text>
|
|
<text>用电单位:{{item.ELECTRICITY_UNIT}}</text>
|
|
</view>
|
|
<view class="dy-subtitle-flex">
|
|
<text>用电原因:{{item.WORK_CONTENT}}</text>
|
|
</view>
|
|
<view class="dy-subtitle-flex">
|
|
<text>作业单位人员:{{item.WORK_USER_NAME}}</text>
|
|
</view>
|
|
<view class="dy-subtitle-flex">
|
|
<text>运行保障部确认人:{{item.ASSURE_USER_NAME}}</text>
|
|
</view>
|
|
<view class="dy-subtitle-flex">
|
|
<text>审批人:{{item.APPROVE_USER_NAME}}</text>
|
|
</view>
|
|
<view class="dy-subtitle-flex">
|
|
<text>作业时间:{{item.WORK_START_DATE}} 至 {{item.WORK_END_DATE}}</text>
|
|
</view>
|
|
<view class="dy-subtitle-flex" style="height: 34upx;">
|
|
<text>
|
|
审核状态:{{translate(item.APPLY_STATUS)}}
|
|
</text>
|
|
<text style="position: absolute;right:20upx;bottom:-8upx">
|
|
<button class="cu-btn margin-tb-sm sm" @click="$noMultipleClicks(goToDetail,item.ELECTRICITY_ID)">
|
|
查看
|
|
</button>
|
|
<button v-if="item.CHECK_STATUS === '2' && item.ACCEPT_USER_ID === loginUser.USER_ID" class="cu-btn bg-blue margin-tb-sm sm" style="margin-left: 20upx" @click.stop="acceptanceApplication(item.ELECTRICITY_ID)">
|
|
验收
|
|
</button>
|
|
</text>
|
|
</view>
|
|
<view v-if="item.APPLY_STATUS === '3' || item.APPLY_STATUS === '4'" class="dy-subtitle-flex">
|
|
<text>
|
|
验收状态:{{ !validStr(item.CHECK_STATUS) ? '待申请' : item.CHECK_STATUS === '1' ? '已验收' : item.CHECK_STATUS === '2' ? '待验收' : '验收被打回' }}
|
|
</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':acceptanceApplicationModal}]">
|
|
<view class="cu-dialog">
|
|
<view class="cu-bar bg-white justify-end">
|
|
<view class="content">验收</view>
|
|
<view class="action" @tap="acceptanceApplicationModal = 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="acceptanceResultsChange" :value="acceptanceApplicationForm.ACCEPT_RESULT_INDEX"
|
|
:range="acceptanceResultsList" range-key="NAME">
|
|
<view class="picker">
|
|
{{ acceptanceApplicationForm.ACCEPT_RESULT_NAME || '请选择' }}
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="title">验收时间:</view>
|
|
<ruiDatePicker :start="todayDate" fields="minute" :value="acceptanceApplicationForm.ACCEPT_TIME || '请选择'"
|
|
@change="changeAcceptanceTime"></ruiDatePicker>
|
|
</view>
|
|
<!--<view class="cu-form-group">
|
|
<view class="title">备注:</view>
|
|
<textarea class="cu-input" placeholder="请输入备注" v-model="acceptanceApplicationForm.ACCEPT_CONTENT"></textarea>
|
|
</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="acceptanceApplicationModal = false">取消</button>
|
|
<button class="cu-btn bg-green margin-left" @click="$noMultipleClicks(confirmAcceptanceApplicationForm)">提交</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
basePath,
|
|
loginSession,
|
|
loginUserId,
|
|
corpinfoId,
|
|
loginUser,
|
|
formatDate,
|
|
} from '@/common/tool.js';
|
|
import ruiDatePicker from '@/components/rattenking-dtpicker/rattenking-dtpicker.vue';
|
|
export default {
|
|
components: {
|
|
ruiDatePicker,
|
|
},
|
|
data() {
|
|
return {
|
|
loginUser,
|
|
showRight: false,
|
|
dataFlag: 'noData',
|
|
totalHeight: 0,
|
|
list: [], //返回数据
|
|
page: 1, //分页参数--页数
|
|
rows: 10, //分页参数--每页数据条数
|
|
totalCount: 0, //分页参数--初始化页数
|
|
isEnd: false, //防止多次刷新
|
|
totalPage: 0, //分页参数--分页数量
|
|
NameLikes: '',
|
|
noClick: true,
|
|
statusList:[
|
|
{ id: '', name: '请选择' },
|
|
{ id: '2', name: '待验收' },
|
|
{ id: '1', name: '已验收' },
|
|
{ id: '3', name: '验收打回' }
|
|
],
|
|
sindex:-1,
|
|
STATUS:'',
|
|
id: '',
|
|
acceptanceApplicationModal: false,
|
|
acceptanceApplicationForm:{
|
|
ACCEPT_TIME: '',
|
|
ACCEPT_CONTENT: '',
|
|
ACCEPT_RESULT_NAME: '',
|
|
ACCEPT_RESULT_INDEX: '',
|
|
ACCEPT_RESULT: '',
|
|
APPLY_STATUS: '',
|
|
CHECK_STATUS: ''
|
|
},
|
|
todayDate: formatDate(new Date(), 'yyyy-MM-dd hh:mm'),
|
|
acceptanceResultsList: [
|
|
{ ID: '1', NAME: '通过' },
|
|
{ ID: '2', NAME: '不通过' },
|
|
],
|
|
}
|
|
},
|
|
onLoad(e){
|
|
if (this.validStr(e.NameLikes)) {
|
|
this.NameLikes = e.NameLikes;
|
|
}
|
|
},
|
|
mounted() {
|
|
uni.createSelectorQuery().select(".select-fixed").boundingClientRect(data => {
|
|
this.totalHeight = data.height
|
|
}).exec();
|
|
},
|
|
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/high-risk-work/electricity/archive-management/detail?ELECTRICITY_ID=' + id
|
|
});
|
|
},
|
|
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/electricity/list?showCount='+_this.showCount+'¤tPage='+_this.currentPage ,
|
|
method: 'POST',
|
|
dataType: 'json',
|
|
header: {
|
|
'Content-type':'application/x-www-form-urlencoded'
|
|
},
|
|
data: {
|
|
CORPINFO_ID:corpinfoId,
|
|
DEPARTMENT_ID:loginUser.DEPARTMENT_ID,
|
|
ACCEPT_USER_ID:loginUserId,
|
|
APPLY_STATUS:'5',
|
|
CHECK_STATUS: this.STATUS,
|
|
tm:new Date().getTime(),
|
|
KEYWORDS : this.NameLikes, //关键字模糊查询
|
|
},
|
|
success: (res) => {
|
|
uni.hideLoading();
|
|
if (res.data != null) {
|
|
_this.totalPage = res.data.page.totalPage;
|
|
if (_this.list.length == 0) {
|
|
_this.list = res.data.varList;
|
|
} else {
|
|
if (res.data.varList != null) {
|
|
_this.list.push(...res.data.varList);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
},
|
|
acceptanceApplication(id){
|
|
this.acceptanceApplicationModal = true;
|
|
this.id = id;
|
|
this.acceptanceApplicationForm={
|
|
ACCEPT_TIME: '',
|
|
ACCEPT_CONTENT: '',
|
|
ACCEPT_RESULT_NAME: '',
|
|
ACCEPT_RESULT_INDEX: '',
|
|
ACCEPT_RESULT: '',
|
|
APPLY_STATUS: '',
|
|
CHECK_STATUS: ''
|
|
}
|
|
},
|
|
changeAcceptanceTime(e) {
|
|
this.acceptanceApplicationForm.ACCEPT_TIME = e
|
|
},
|
|
acceptanceResultsChange(e){
|
|
this.acceptanceApplicationForm.ACCEPT_RESULT_INDEX = e.detail.value;
|
|
this.acceptanceApplicationForm.ACCEPT_RESULT = this.acceptanceResultsList[e.detail.value].ID;
|
|
this.acceptanceApplicationForm.ACCEPT_RESULT_NAME = this.acceptanceResultsList[e.detail.value].NAME;
|
|
},
|
|
confirmAcceptanceApplicationForm(){
|
|
if(!this.acceptanceApplicationForm.ACCEPT_RESULT_NAME){
|
|
uni.showToast({
|
|
title: '请选择验收结果',
|
|
icon: 'none',
|
|
duration: 2000
|
|
})
|
|
return;
|
|
}
|
|
if(!this.acceptanceApplicationForm.ACCEPT_TIME){
|
|
uni.showToast({
|
|
title: '请选择验收时间',
|
|
icon: 'none',
|
|
duration: 2000
|
|
})
|
|
return;
|
|
}
|
|
if (this.acceptanceApplicationForm.ACCEPT_RESULT_NAME === '通过') {
|
|
this.acceptanceApplicationForm.APPLY_STATUS = '4'
|
|
this.acceptanceApplicationForm.CHECK_STATUS = '1'
|
|
} else {
|
|
this.acceptanceApplicationForm.APPLY_STATUS = '3'
|
|
this.acceptanceApplicationForm.CHECK_STATUS = '3'
|
|
}
|
|
uni.showLoading({
|
|
title: "加载中..."
|
|
});
|
|
uni.request({
|
|
url: basePath + "/app/electricity/editStatus",
|
|
method: 'POST',
|
|
dataType: 'json',
|
|
header: {
|
|
'Content-type': 'application/x-www-form-urlencoded'
|
|
},
|
|
data: {
|
|
...this.acceptanceApplicationForm,
|
|
ELECTRICITY_ID: this.id
|
|
},
|
|
success: (res) => {
|
|
uni.hideLoading();
|
|
this.acceptanceApplicationModal = false
|
|
uni.showToast({
|
|
icon: 'none',
|
|
title: '验收成功',
|
|
duration: 2000
|
|
});
|
|
this.getQuery();
|
|
},
|
|
fail: (err) => {
|
|
uni.hideLoading();
|
|
uni.showModal({
|
|
content: err.errMsg,
|
|
showCancel: false
|
|
});
|
|
}
|
|
})
|
|
},
|
|
translate(id) {
|
|
if (id === '3' || id === '4') {
|
|
return '已归档'
|
|
}
|
|
for (var i = 0; i < this.statusList.length; i++) {
|
|
if (this.statusList[i].id === id) return this.statusList[i].name
|
|
}
|
|
return ''
|
|
}
|
|
}
|
|
}
|
|
</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>
|