|
|
@@ -11,13 +11,18 @@ function queryCheckedAppealTask(){
|
|
|
"status_search_type":1,
|
|
|
"check_status":14
|
|
|
}
|
|
|
+ var hide = false;
|
|
|
+
|
|
|
+ if(hasRole(ROLE_STATION_ADMIN) || hasRole(ROLE_STATION) || hasRole(ROLE_JICHA)|| roleContains('STATION')) {
|
|
|
+ hide = true;
|
|
|
+ }
|
|
|
var cols = [
|
|
|
{width: 80, text: '序号', type: 'number', flex: true, colClass: 'text-center',field: 'num'},
|
|
|
{width: 160, text: '任务名称', type: 'string', flex: true, sort: 'down',field: 'name'},
|
|
|
{width: 80, text: '考核人员', type: 'string', flex: true, colClass: '',field: 'checked_person_name'},
|
|
|
{width: 160, text: '考核部门', type: 'string', flex: true, sort: 'down',field: 'checked_dept_name'},
|
|
|
- // {width: 80, text: '稽查人员', type: 'string', flex: true, colClass: '',field: 'checkman_name'},
|
|
|
- // {width: 80, text: '复核人员', type: 'string', flex: true, colClass: '',field: 'recheckman_name'},
|
|
|
+ {width: 80, text: '稽查人员', type: 'string', flex: true, hide: hide,field: 'checkman_name'},
|
|
|
+ {width: 80, text: '复核人员', type: 'string', flex: true, hide: hide,field: 'recheckman_name'},
|
|
|
{width: 160, text: '稽查时间段', type: 'string', flex: true, sort: 'down',field: 'check_period'},
|
|
|
// {width: 80, text: '状态', type: 'string', flex: true, colClass: '',field: 'check_status_name'},
|
|
|
{width: 160, text: '操作', type: 'string', flex: true, field: 'id',
|