|
@@ -12,9 +12,9 @@ $(document).ready(function(){
|
|
|
{width: 80, text: '考核人员', flex: false, colClass: '',field:'appeal_man'},
|
|
{width: 80, text: '考核人员', flex: false, colClass: '',field:'appeal_man'},
|
|
|
{width: 80, text: '考核部门', flex: false, colClass: '',sort: 'down',field:'appeal_dept'},
|
|
{width: 80, text: '考核部门', flex: false, colClass: '',sort: 'down',field:'appeal_dept'},
|
|
|
{width: 80, text: '稽查人员', type: 'string', flex: false, colClass: '',field:'verify_person'},
|
|
{width: 80, text: '稽查人员', type: 'string', flex: false, colClass: '',field:'verify_person'},
|
|
|
- {width: 80, text: '稽查时间段', type: 'date', flex: false, colClass: '',field:'start_time'},
|
|
|
|
|
|
|
+ {width: 120, text: '稽查时间段', type: 'date',date_type:'yyyy-MM-dd',custom:' 00:00-24:00', flex: false, colClass: '',field:'start_time'},
|
|
|
{width: 80, text: '状态', type: 'string', flex: false, colClass: '',field:'check_status'},
|
|
{width: 80, text: '状态', type: 'string', flex: false, colClass: '',field:'check_status'},
|
|
|
- {width: 80, text: '上次稽查时间', type: 'date', flex: false, colClass: '',field:'start_time'},
|
|
|
|
|
|
|
+ {width: 120, text: '上次稽查时间', type: 'date',date_type:'yyyy-MM-dd hh:mm', flex: false, colClass: '',field:'start_time'},
|
|
|
{width: 100, text: '操作', flex: false, colClass: '',field:'id',field_other:'task_id',oper:[
|
|
{width: 100, text: '操作', flex: false, colClass: '',field:'id',field_other:'task_id',oper:[
|
|
|
{func:'seeCheckAudit',text:'查看稽查结果',col_class:''},{func:'distributionAgain',text:'在分配',col_class:''}
|
|
{func:'seeCheckAudit',text:'查看稽查结果',col_class:''},{func:'distributionAgain',text:'在分配',col_class:''}
|
|
|
]},
|
|
]},
|
|
@@ -37,20 +37,3 @@ function distributionAgain(id,task_id){
|
|
|
alert("task_id:"+task_id+"---id:"+id)
|
|
alert("task_id:"+task_id+"---id:"+id)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
-alert(timeStamp2String('1494259200000','yyyy/MM/dd hh:mm:ss'))
|
|
|
|
|
-/**
|
|
|
|
|
- * @Func 将长整形时间 转换制定格式
|
|
|
|
|
- * @param time 长整形数值
|
|
|
|
|
- * @returns {String}
|
|
|
|
|
- * @Exp timeStamp2String("1464058102000","MM/dd hh:mm")
|
|
|
|
|
- */
|
|
|
|
|
-function timeStamp2String(time,format){
|
|
|
|
|
- if(time == "" || time == null)
|
|
|
|
|
- return ;
|
|
|
|
|
- if(format==undefined || format == "")
|
|
|
|
|
- format = "yyyy/MM/dd hh:mm:ss";
|
|
|
|
|
- var datetime = new Date();
|
|
|
|
|
- datetime.setTime(time);
|
|
|
|
|
- return datetime.Format(format);
|
|
|
|
|
-};
|
|
|