|
|
@@ -102,7 +102,10 @@ function queryUnexaminedTask(){
|
|
|
//进入稽查页面
|
|
|
function showCheck(id){
|
|
|
$.checkTask =getItemByIdFromArr(id,$('#unexamined_datatable').mytable('getTableData'));
|
|
|
- $.checkTask.appeal = null;
|
|
|
+ if(typeof($.checkTask)!="undefined" && typeof($.checkTask.appeal) != "undefined"){
|
|
|
+ $.checkTask.appeal = null;
|
|
|
+ }
|
|
|
+
|
|
|
//开始稽查
|
|
|
no_return_common_service('/task/update', {"id":$.checkTask.id,"check_status":21,"record_status":1,"check_status_name":"复查"});
|
|
|
changePage("/view/mytask/check.html");
|