|
@@ -35,17 +35,33 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
{field: 'num_max', title: __('Num_max')},
|
|
{field: 'num_max', title: __('Num_max')},
|
|
{field: 'coach_ids', title: __('Coach_ids'), operate: 'LIKE'},
|
|
{field: 'coach_ids', title: __('Coach_ids'), operate: 'LIKE'},
|
|
{field: 'lesson_id', title: __('Lesson_id')},
|
|
{field: 'lesson_id', title: __('Lesson_id')},
|
|
- {field: 'address', title: __('Address'), operate: 'LIKE'},
|
|
|
|
|
|
+// {field: 'address', title: __('Address'), operate: 'LIKE'},
|
|
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"20":__('Status 20'),"30":__('Status 30')}, formatter: Table.api.formatter.status},
|
|
{field: 'status', title: __('Status'), searchList: {"0":__('Status 0'),"20":__('Status 20'),"30":__('Status 30')}, formatter: Table.api.formatter.status},
|
|
- {field: 'remark', title: __('Remark'), operate: 'LIKE'},
|
|
|
|
- {field: 'notice_status', title: __('Notice_status'), searchList: {"0":__('Notice_status 0'),"1":__('Notice_status 1')}, formatter: Table.api.formatter.status},
|
|
|
|
|
|
+// {field: 'remark', title: __('Remark'), operate: 'LIKE'},
|
|
|
|
+// {field: 'notice_status', title: __('Notice_status'), searchList: {"0":__('Notice_status 0'),"1":__('Notice_status 1')}, formatter: Table.api.formatter.status},
|
|
{field: 'finishtime', title: __('Finishtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'finishtime', title: __('Finishtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'cancel_reason', title: __('Cancel_reason'), operate: 'LIKE'},
|
|
{field: 'cancel_reason', title: __('Cancel_reason'), operate: 'LIKE'},
|
|
{field: 'cancel_time', title: __('Cancel_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
{field: 'cancel_time', title: __('Cancel_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
|
|
- {field: 'coach.nickname', title: __('Coach.nickname'), operate: 'LIKE'},
|
|
|
|
|
|
+// {field: 'coach.nickname', title: __('Coach.nickname'), operate: 'LIKE'},
|
|
|
|
+ {field: 'lesson_id', title: __('Lesson_id')},
|
|
{field: 'lesson.name', title: __('Lesson.name'), operate: 'LIKE'},
|
|
{field: 'lesson.name', title: __('Lesson.name'), operate: 'LIKE'},
|
|
{field: 'lesson.name_en', title: __('Lesson.name_en'), operate: 'LIKE'},
|
|
{field: 'lesson.name_en', title: __('Lesson.name_en'), 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:'cancel',
|
|
|
|
+ text:'取消',
|
|
|
|
+ title:'取消',
|
|
|
|
+ icon:'fa fa-exclamation-circle',
|
|
|
|
+ classname:'btn btn-xs btn-info btn-dialog',
|
|
|
|
+ url:'lessonslot/cancel/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}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
});
|
|
});
|