define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function($, undefined, Backend, Table, Form) { var Controller = { index: function() { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'wanlshop/refund/index' + location.search, add_url: '', edit_url: '', del_url: '', multi_url: '', table: 'wanlshop_refund', } }); 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: 'goods_ids', title: __('Goods_ids'), align:'left', formatter: Controller.api.formatter.goods}, {field: 'order_type', title: __('Order_type'), searchList: {"goods":__('Order_type goods'),"groups":__('Order_type groups'),"seckill":__('Order_type seckill')}, formatter: Table.api.formatter.normal}, {field: 'expressType', title: __('Expresstype'), searchList: {"0":__('Expresstype 0'),"1":__('Expresstype 1')}, formatter: Table.api.formatter.normal}, {field: 'price', title: __('Price'), operate:'BETWEEN'}, {field: 'type', title: __('Type'), searchList: {"0":__('Type 0'),"1":__('Type 1')}, formatter: Table.api.formatter.normal}, {field: 'reason', title: __('Reason'), searchList: {"0":__('Reason 0'),"1":__('Reason 1'),"2":__('Reason 2'),"3":__('Reason 3'),"4":__('Reason 4'),"5":__('Reason 5'),"6":__('Reason 6')}, formatter: Table.api.formatter.normal}, {field: 'images', title: __('Images'), events: Table.api.events.image, formatter: Table.api.formatter.images}, {field: 'express_name', title: __('Express_name')}, {field: 'express_no', title: __('Express_no')}, {field: 'state', title: __('State'), searchList: {"0":__('State 0'),"1":__('State 1'),"2":__('State 2'),"3":__('State 3'),"4":__('State 4'),"5":__('State 5'),"6":__('State 6'),"7":__('State 7'),"8":__('State 8')}, formatter: Table.api.formatter.normal}, {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime}, {field: 'status', title: __('Status'), searchList: {"normal":__('Normal'),"hidden":__('Hidden')}, formatter: Table.api.formatter.status}, {field: 'operate',title: __('Operate'),table: table,events: Table.api.events.operate,buttons: [{name: 'detail',title: __('查看退款'),classname: 'btn btn-xs btn-info btn-dialog',icon: 'fa fa-eye',text: '查看退款',url: 'wanlshop/refund/detail'},{name: 'agree',title: __('平台介入判定退款合理'),classname: 'btn btn-xs btn-success btn-magic btn-ajax',icon: 'fa fa-check',text: '退款合理',confirm: '确认同意买家退款,款项会直接转到用户余额?',url: 'wanlshop/refund/agree',visible: function(row) {if (row.state == 3) {return true;}},success: function(data, ret) {table.bootstrapTable('refresh');return false;},error: function(data, ret) {console.log(data, ret);Layer.alert(ret.msg);return false;}},{name: 'refuse',title: __('平台介入判定退款不合理'),classname: 'btn btn-xs btn-danger btn-dialog',icon: 'fa fa-times',text: '退款不合理',url: 'wanlshop/refund/refuse',visible: function(row) {if (row.state == 3) {return true;}},extend: 'data-area=["500px","270px"]'}],formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, detail: function () { // $(document).on("click", ".btn-agree", function () { // Fast.api.ajax({ // url:'wanlshop/refund/agree?ids='+Backend.api.query('ids'), // }, function(data, ret){ // Layer.closeAll(); // return false; // }); // }); // $(document).on("click", ".btn-refuse", function () { // }); }, refuse: function () { Controller.api.bindevent(); }, api: { bindevent: function() { Form.api.bindevent($("form[role=form]")); }, formatter: { goods: function(value, row, index) { if(row.order_type === 'groups'){ var image = Fast.api.cdnurl(row.groupsgoods.image); return '' + row.groupsgoods.title; }else{ var image = Fast.api.cdnurl(row.goods.image); return '' + row.goods.title; } } } } }; return Controller; });