完成订单重构

This commit is contained in:
xman 2025-06-01 17:32:26 +08:00
parent 51d72bc25d
commit 7e1abeb449

View File

@ -55,10 +55,10 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
{field: 'revisit_truth', title: __('是否属实'),formatter(value){ {field: 'revisit_truth', title: __('是否属实'),formatter(value){
if(value == -1){ if(value == -1){
return '<span class="label label-default">不属实</span>'; return '<span class="label label-default">不属实</span>';
}else{ }else if(value == 1){
return '<span class="label label-success">属实</span>'; return '<span class="label label-success">属实</span>';
} }
return '-';
}}, }},
// {field: 'area_id', title: __('Area_id'), operate: 'LIKE'}, // {field: 'area_id', title: __('Area_id'), operate: 'LIKE'},