jiaru yuangong kaohe

This commit is contained in:
java110 2021-02-07 17:07:48 +08:00
parent 68890e6ef4
commit b0da8df316
5 changed files with 212 additions and 9 deletions

View File

@ -16,8 +16,8 @@
qaType: '',
qaName: '',
qaId: '',
communityId:vc.getCurrentCommunity().communityId,
roleCd:'staff'
communityId: vc.getCurrentCommunity().communityId,
roleCd: 'staff'
}
}
},
@ -59,8 +59,11 @@
}
);
},
_toQuestionAnswerTitle:function(_questionAnswer){
vc.jumpToPage('/admin.html#/pages/property/userQuestionAnswerManage?qaId='+_questionAnswer.qaId+"&objType="+_questionAnswer.objType+"&objId="+_questionAnswer.objId)
_toQuestionAnswerTitle: function (_questionAnswer) {
vc.jumpToPage('/admin.html#/pages/property/userQuestionAnswerManage?qaId='
+ _questionAnswer.qaId + "&objType=" + _questionAnswer.objType
+ "&objId=" + _questionAnswer.objId
+ "&answerType=1002&userQaId=-1")
},
_queryQuestionAnswerMethod: function () {
vc.component._listQuestionAnswers(DEFAULT_PAGE, DEFAULT_ROWS);
@ -72,10 +75,10 @@
vc.component.myQuestionAnswerManageInfo.moreCondition = true;
}
},
_getStateName:function(_state){
if(_state == '1201'){
_getStateName: function (_state) {
if (_state == '1201') {
return '待领导评价';
}else if(_state == '1202'){
} else if (_state == '1202') {
return '完成';
}

View File

@ -0,0 +1,103 @@
<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>查询条件</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<select class="custom-select" v-model="staffAssessmentManageInfo.conditions.state">
<option selected value="">请选择状态</option>
<option value="1201">待考核</option>
<option value="1202">考核完成</option>
</select>
</div>
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="请输入问卷名称"
v-model="staffAssessmentManageInfo.conditions.qaName" class=" form-control">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请输入问卷ID"
v-model="staffAssessmentManageInfo.conditions.qaId" class=" form-control">
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_queryQuestionAnswerMethod()">
<i class="glyphicon glyphicon-search"></i> 查询
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>员工考核</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">员工名称</th>
<th class="text-center">问卷名称</th>
<th class="text-center">开始时间</th>
<th class="text-center">结束时间</th>
<th class="text-center">状态</th>
<th class="text-center">自评得分</th>
<th class="text-center">考核得分</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="questionAnswer in staffAssessmentManageInfo.questionAnswers">
<td class="text-center">{{questionAnswer.personName}}</td>
<td class="text-center">{{questionAnswer.qaName}}</td>
<td class="text-center">{{questionAnswer.startTime}}</td>
<td class="text-center">{{questionAnswer.endTime}}</td>
<td class="text-center">{{_getStateName(questionAnswer.state)}}</td>
<td class="text-center">{{questionAnswer.score}}</td>
<td class="text-center">{{questionAnswer.evaluationScore}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-if="questionAnswer.state == '1202'">已考核</button>
<button class="btn-white btn btn-xs" v-else
v-on:click="_toQuestionAnswerTitle(questionAnswer)">考核</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,93 @@
/**
入驻小区
**/
(function (vc) {
var DEFAULT_PAGE = 1;
var DEFAULT_ROWS = 10;
vc.extends({
data: {
staffAssessmentManageInfo: {
questionAnswers: [],
total: 0,
records: 1,
moreCondition: false,
qaId: '',
conditions: {
qaType: '',
qaName: '',
qaId: '',
communityId:vc.getCurrentCommunity().communityId,
roleCd:'staff',
state:'1201'
}
}
},
_initMethod: function () {
vc.component._listQuestionAnswers(DEFAULT_PAGE, DEFAULT_ROWS);
},
_initEvent: function () {
vc.on('staffAssessmentManage', 'listQuestionAnswer', function (_param) {
vc.component._listQuestionAnswers(DEFAULT_PAGE, DEFAULT_ROWS);
});
vc.on('pagination', 'page_event', function (_currentPage) {
vc.component._listQuestionAnswers(_currentPage, DEFAULT_ROWS);
});
},
methods: {
_listQuestionAnswers: function (_page, _rows) {
vc.component.staffAssessmentManageInfo.conditions.page = _page;
vc.component.staffAssessmentManageInfo.conditions.row = _rows;
var param = {
params: vc.component.staffAssessmentManageInfo.conditions
};
//发送get请求
vc.http.apiGet('/userQuestionAnswer/queryUserQuestionAnswer',
param,
function (json, res) {
var _staffAssessmentManageInfo = JSON.parse(json);
vc.component.staffAssessmentManageInfo.total = _staffAssessmentManageInfo.total;
vc.component.staffAssessmentManageInfo.records = _staffAssessmentManageInfo.records;
vc.component.staffAssessmentManageInfo.questionAnswers = _staffAssessmentManageInfo.data;
vc.emit('pagination', 'init', {
total: vc.component.staffAssessmentManageInfo.records,
currentPage: _page
});
}, function (errInfo, error) {
console.log('请求失败处理');
}
);
},
_toQuestionAnswerTitle:function(_questionAnswer){
vc.jumpToPage('/admin.html#/pages/property/userQuestionAnswerManage?qaId='+_questionAnswer.qaId
+"&objType="+_questionAnswer.objType
+"&objId="+_questionAnswer.objId
+"&answerType=2003"
+"&userQaId="+_questionAnswer.userQaId)
},
_queryQuestionAnswerMethod: function () {
vc.component._listQuestionAnswers(DEFAULT_PAGE, DEFAULT_ROWS);
},
_moreCondition: function () {
if (vc.component.staffAssessmentManageInfo.moreCondition) {
vc.component.staffAssessmentManageInfo.moreCondition = false;
} else {
vc.component.staffAssessmentManageInfo.moreCondition = true;
}
},
_getStateName:function(_state){
if(_state == '1201'){
return '待领导评价';
}else if(_state == '1202'){
return '完成';
}
return '待答题'
}
}
});
})(window.vc);

View File

@ -14,7 +14,8 @@
qaId: '',
objType: '',
objId: '',
answerType: '1002'
answerType: '1002',
userQaId:'-1'
}
},
_initMethod: function () {
@ -23,6 +24,8 @@
_that.qaId = _qaId;
_that.objType = vc.getParam('objType');
_that.objId = vc.getParam('objId');
_that.answerType = vc.getParam('answerType');
_that.userQaId = vc.getParam('userQaId');
vc.component._listQuestionAnswerTitles(DEFAULT_PAGE, DEFAULT_ROWS);
},
_initEvent: function () {

View File

@ -16,6 +16,7 @@
"moreMsg":"more message",
"title":"CommunityManagement|java110",
"noAccount":"no account?",
"areyouhasaccount":"are you has account?"
"areyouhasaccount":"are you has account?",
"我的小区":"my community"
}
})(window)