...
|
...
|
@@ -5,11 +5,12 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
// 初始化表格参数配置
|
|
|
Table.api.init({
|
|
|
extend: {
|
|
|
index_url: 'store/store_inform/index' + location.search,
|
|
|
add_url: 'store/store_inform/add',
|
|
|
edit_url: 'store/store_inform/edit',
|
|
|
del_url: 'store/store_inform/del',
|
|
|
multi_url: 'store/store_inform/multi',
|
|
|
index_url: 'store/store_inform/index/ids/' + Config.ids + location.search,
|
|
|
// add_url: 'store/store_inform/add',
|
|
|
// edit_url: 'store/store_inform/edit',
|
|
|
// del_url: 'store/store_inform/del',
|
|
|
// multi_url: 'store/store_inform/multi',
|
|
|
examine_url: 'store/store_inform/examine',
|
|
|
table: 'store_inform',
|
|
|
}
|
|
|
});
|
...
|
...
|
@@ -21,14 +22,14 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
url: $.fn.bootstrapTable.defaults.extend.index_url,
|
|
|
pk: 'id',
|
|
|
sortName: 'id',
|
|
|
showExport: false,
|
|
|
columns: [
|
|
|
[
|
|
|
{checkbox: true},
|
|
|
{field: 'id', title: __('Id')},
|
|
|
{field: 'user_id', title: __('User_id')},
|
|
|
{field: 'store_id', title: __('Store_id')},
|
|
|
{field: 'store.store_name', title: __('Store.store_name')},
|
|
|
{field: 'content', title: __('Content')},
|
|
|
{field: 'house_ids', title: __('House_ids')},
|
|
|
{field: 'house_name', title: __('House_ids'),operate:false,formatter:Table.api.formatter.label},
|
|
|
{field: 'type', title: __('Type'), searchList: {"1":__('Type 1'),"2":__('Type 2')}, formatter: Table.api.formatter.normal},
|
|
|
{field: 'score', title: __('Score'), operate:'BETWEEN'},
|
|
|
{field: 'red_package', title: __('Red_package'), operate:'BETWEEN'},
|
...
|
...
|
@@ -37,10 +38,49 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
{field: 'get', title: __('Get')},
|
|
|
{field: 'surplus', title: __('Surplus')},
|
|
|
{field: 'views', title: __('Views')},
|
|
|
{field: 'status', title: __('Status'), searchList: {"1":__('Status 1'),"2":__('Status 2'),"3":__('Status 3'),"4":__('Status 4'),"9":__('Status 9')}, formatter: Table.api.formatter.status},
|
|
|
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
|
|
|
{field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
|
|
|
{field: 'store.store_name', title: __('Store.store_name')},
|
|
|
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
|
|
|
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate,
|
|
|
buttons: [
|
|
|
{
|
|
|
name: 'examine',
|
|
|
text: '通过',
|
|
|
title: '通过',
|
|
|
classname: 'btn btn-xs btn-primary btn-ajax',
|
|
|
icon: '',
|
|
|
url: $.fn.bootstrapTable.defaults.extend.examine_url+'/status/3',
|
|
|
confirm: '是否确认通过审核?',
|
|
|
visible:function (row) {
|
|
|
if(row.status == 1){
|
|
|
return true;
|
|
|
}else{
|
|
|
return false;
|
|
|
}
|
|
|
},
|
|
|
success: function (data) {
|
|
|
table.bootstrapTable('refresh');
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
name: 'examine',
|
|
|
text: '驳回',
|
|
|
title: '驳回',
|
|
|
classname: 'btn btn-xs btn-danger btn-ajax',
|
|
|
icon: '',
|
|
|
url: $.fn.bootstrapTable.defaults.extend.examine_url+'/status/4',
|
|
|
confirm: '是否确认驳回审核?',
|
|
|
visible:function (row) {
|
|
|
if(row.status == 1){
|
|
|
return true;
|
|
|
}else{
|
|
|
return false;
|
|
|
}
|
|
|
},
|
|
|
success: function (data) {
|
|
|
table.bootstrapTable('refresh');
|
|
|
}
|
|
|
}
|
|
|
], formatter: Table.api.formatter.operate}
|
|
|
]
|
|
|
]
|
|
|
});
|
...
|
...
|
@@ -48,12 +88,12 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin |
|
|
// 为表格绑定事件
|
|
|
Table.api.bindevent(table);
|
|
|
},
|
|
|
add: function () {
|
|
|
Controller.api.bindevent();
|
|
|
},
|
|
|
edit: function () {
|
|
|
Controller.api.bindevent();
|
|
|
},
|
|
|
// add: function () {
|
|
|
// Controller.api.bindevent();
|
|
|
// },
|
|
|
// edit: function () {
|
|
|
// Controller.api.bindevent();
|
|
|
// },
|
|
|
api: {
|
|
|
bindevent: function () {
|
|
|
Form.api.bindevent($("form[role=form]"));
|
...
|
...
|
|