|
@@ -26,22 +26,40 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
fixedRightNumber: 1,
|
|
|
columns: [
|
|
|
[
|
|
|
- {checkbox: true},
|
|
|
+// {checkbox: true},
|
|
|
{field: 'id', title: __('Id')},
|
|
|
{field: 'doctor_id', title: __('Doctor_id')},
|
|
|
+ {field: 'doctor.nickname', title: __('Doctor.nickname'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
+ {field: 'doctor.avatar', title: __('Doctor.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
|
+ {field: 'doctor.mobile', title: __('Doctor.mobile'), operate: 'LIKE'},
|
|
|
{field: 'money', title: __('Money'), operate:'BETWEEN'},
|
|
|
{field: 'plat_bilv', title: __('Plat_bilv'), operate:'BETWEEN'},
|
|
|
{field: 'plat_money', title: __('Plat_money'), operate:'BETWEEN'},
|
|
|
{field: 'get_money', title: __('Get_money'), operate:'BETWEEN'},
|
|
|
{field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2'),"3":__('Type 3')}, formatter: Table.api.formatter.normal},
|
|
|
+ {field: 'account_info', title: '账号信息', operate:false},
|
|
|
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
|
{field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
|
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"1":__('Status 1'),"2":__('Status 2')}, formatter: Table.api.formatter.status},
|
|
|
{field: 'audittime', title: __('Audittime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
|
{field: 'auditremark', title: __('Auditremark'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
- {field: 'doctor.avatar', title: __('Doctor.avatar'), operate: 'LIKE', events: Table.api.events.image, formatter: Table.api.formatter.image},
|
|
|
- {field: 'doctor.mobile', title: __('Doctor.mobile'), operate: 'LIKE'},
|
|
|
- {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
+
|
|
|
+ {field: 'operate', title: __('Operate'), table: table,
|
|
|
+ buttons:[
|
|
|
+ {
|
|
|
+ name:'audit',
|
|
|
+ text:'审核',
|
|
|
+ title:'审核',
|
|
|
+ icon:'fa fa-exclamation-circle',
|
|
|
+ classname:'btn btn-xs btn-info btn-dialog',
|
|
|
+ url:'doctortakecash/audit/id/{ids}?dialog=1',
|
|
|
+ target:'_self',
|
|
|
+ hidden:function(row){
|
|
|
+ return row.status==0 ? false : true;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
]
|
|
|
]
|
|
|
});
|
|
@@ -55,6 +73,9 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
edit: function () {
|
|
|
Controller.api.bindevent();
|
|
|
},
|
|
|
+ audit: function () {
|
|
|
+ Controller.api.bindevent();
|
|
|
+ },
|
|
|
api: {
|
|
|
bindevent: function () {
|
|
|
Form.api.bindevent($("form[role=form]"));
|