| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'trade/order/index' + location.search,
- table: 'order',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'id',
- sortName: 'id',
- fixedColumns: true,
- fixedRightNumber: 1,
- columns: [
- [
- {checkbox: true},
- {field: 'id', title: __('Id')},
- {field: 'order_no', title: __('Order_no'), operate: 'LIKE'},
- {field: 'users.mobile', title: __('User_id')},
- {field: 'title', title: __('Title'), operate: 'LIKE'},
- {field: 'amount', title: __('Amount'), operate:'BETWEEN'},
- {field: 'bonus', title: __('Bonus'), operate:'BETWEEN'},
- {field: 'status', title: __("Status"),
- searchList: {0:__('Unpaid'), 1:__('Finish'), 2:__('Freeze'), 3:__('Cancel')},
- formatter: Table.api.formatter.status
- },
- {field: 'note', title: __('Note'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
- {field: 'create_time', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'update_time', title: __('Update_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
- {field: 'operate', title: __('Operate'),
- table: table,
- buttons: [{
- name: "operate",
- text: __('Operate'),
- classname: 'btn btn-xs btn-danger btn-magic btn-dialog',
- url: 'trade/order/operate',
- visible: function (row) {
- if(row.status == 0 && parseFloat(row.users.balance) >= parseFloat(row.amount)){
- return true;
- }
- return false;
- }
- }],
- events: Table.api.events.operate, formatter: Table.api.formatter.operate
- }
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- operate: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- }
- };
- return Controller;
- });
|