优化代码

This commit is contained in:
wuxw 2023-12-29 17:21:09 +08:00
parent 03a174c8e0
commit 9869c494bb
4 changed files with 249 additions and 4 deletions

View File

@ -198,7 +198,7 @@
}
};
//发送get请求
vc.http.apiGet('/work.listWorkCopy',
vc.http.apiGet('/work.listWorkTask',
param,
function (json, res) {
let _json = JSON.parse(json);
@ -217,7 +217,7 @@
}
};
//发送get请求
vc.http.apiGet('/workCopy.listWorkCopy',
vc.http.apiGet('/work.listWorkCopy',
param,
function (json, res) {
let _json = JSON.parse(json);

View File

@ -0,0 +1,152 @@
<div>
<div class="row">
<div class="col-md-1 padding-r-0">
<div class=" border-radius ">
<div class="margin-xs-r treeview ">
<ul class="list-group text-center border-radius">
<li class="list-group-item node-orgTree " v-for="(item,index) in workPoolInfo.states"
:key="index" @click="swatchWorkState(item)"
:class="{'vc-node-selected':workPoolInfo.conditions.state == item.state}">
{{item.name}}
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-11">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>
<vc:i18n name="查询条件"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('工单名称','workPool')"
v-model="workPoolInfo.conditions.workNameLike" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('发起人','workPool')"
v-model="workPoolInfo.conditions.createUserNameLike" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('处理人','workPool')"
v-model="workPoolInfo.conditions.staffNameLike" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('开始时间','workPool')"
v-model="workPoolInfo.conditions.queryStartTime" class=" form-control queryStartTime">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('结束时间','workPool')"
v-model="workPoolInfo.conditions.queryEndTime" class=" form-control queryEndTime">
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_queryWorkPoolMethod()">
<vc:i18n name="查询"></vc:i18n>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="工作单池" namespace="workPool"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='编号' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='工单名称' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='类型名称' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='标识' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='发起人' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='处理人' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='时间段' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='创建时间' namespace='workPool'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="work in workPoolInfo.works">
<td class="text-center">{{work.workId}}</td>
<td class="text-center">{{work.workName}}</td>
<td class="text-center">{{work.typeName}}</td>
<td class="text-center">{{work.workCycle == '1001'?'一次性工单':'周期性工单'}}</td>
<td class="text-center">{{work.createUserName}}</td>
<td class="text-center">{{work.staffName || '-'}}</td>
<td class="text-center">{{work.startTime}}</br>
~{{work.endTime}}
</td>
<td class="text-center">{{work.stateName}}</td>
<td class="text-center">{{work.createTime}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_toWorkDetailPage(work)">
<vc:i18n name='详情'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,93 @@
/**
入驻小区
**/
(function (vc) {
var DEFAULT_PAGE = 1;
var DEFAULT_ROWS = 10;
vc.extends({
data: {
workPoolInfo: {
works: [],
states:[{
name:'全部',
state:''
},{
name:'待处理',
state:'W'
},{
name:'处理中',
state:'D'
},{
name:'处理完成',
state:'C'
}],
total: 0,
records: 1,
moreCondition: false,
wtId: '',
conditions: {
state:'',
typeName: '',
staffNameLike: '',
workNameLike:'',
queryEndTime:'',
queryStartTime:'',
createUserNameLike:'',
}
}
},
_initMethod: function () {
$that._listWorkPools(DEFAULT_PAGE, DEFAULT_ROWS);
},
_initEvent: function () {
vc.on('workPool', 'listWorkPool', function (_param) {
$that._listWorkPools(DEFAULT_PAGE, DEFAULT_ROWS);
});
vc.on('pagination', 'page_event', function (_currentPage) {
$that._listWorkPools(_currentPage, DEFAULT_ROWS);
});
vc.initDateTime('queryStartTime',function(_value){
$that.workPoolInfo.conditions.queryStartTime = _value;
})
vc.initDateTime('queryEndTime',function(_value){
$that.workPoolInfo.conditions.queryEndTime = _value;
})
},
methods: {
_listWorkPools: function (_page, _rows) {
$that.workPoolInfo.conditions.page = _page;
$that.workPoolInfo.conditions.row = _rows;
var param = {
params: $that.workPoolInfo.conditions
};
//发送get请求
vc.http.apiGet('/work.listWorkTask',
param,
function (json, res) {
let _json = JSON.parse(json);
$that.workPoolInfo.total = _json.total;
$that.workPoolInfo.records = _json.records;
$that.workPoolInfo.works = _json.data;
vc.emit('pagination', 'init', {
total: $that.workPoolInfo.records,
currentPage: _page
});
}, function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_toWorkDetailPage:function(_work){
vc.jumpToPage('/#/pages/oa/workDetail?workId='+_work.workId);
},
_queryWorkPoolMethod: function () {
$that._listWorkPools(DEFAULT_PAGE, DEFAULT_ROWS);
},
swatchWorkState:function(_state){
$that.workPoolInfo.conditions.state = _state.state;
$that._listWorkPools(DEFAULT_PAGE, DEFAULT_ROWS);
}
}
});
})(window.vc);

View File

@ -169,10 +169,10 @@
~{{event.endTime}}
</td>
<td class="text-center">
{{event.remark}}
{{event.createTime}}
</td>
<td class="text-center">
{{event.createTime}}
{{event.remark}}
</td>
</tr>
</tbody>