123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
- // $(document).on("click", ".btn-aaaa", function () {
- // // var url = 'commodity/commodity/addcolor';//弹出窗口 add.html页面的(fastadmin封装layer模态框将以iframe的方式将add输出到index页面的模态框里)
- // // Fast.api.open(url, __('Add'));
- // var c_id=$(this).attr('data-title');
- // var msg = "配置添加";
- // var options = {
- // shadeClose: false,
- // shade: [0.3, '#393D49'],
- // callback:function(value){
- // location.replace(location.href);
- // }
- // };
- // Fast.api.open('commodity/commodity/addparameter?c_id='+c_id,msg,options);
- // });
- $(document).on("click", ".btn-dell", function () {
- var colorid = $(this).attr('data-title')
- //alert(colorid)
- layer.confirm('确定删除吗?', {btn: ['是','否'] },
- function () {
- Fast.api.ajax({
- url: 'commodity/commodity/delcolor',
- data: {colorid: colorid},
- type: "POST"
- , success: function (data, ret) {
- //成功的回调
- layer.msg(ret.msg)
- location.replace(location.href);
- return false;
- },
- error: function (data, ret) {
- return false;
- }
- })
- }
- )
- });
- $(document).on("click", ".btn-addd", function () {
- var p_id = $(this).attr('data-title')
- var msg = "配置添加";
- var options = {
- shadeClose: false,
- shade: [0.3, '#393D49'],
- callback:function(value){
- $(".btn-refresh").trigger('click')
- }
- };
- Fast.api.open('commodity/commodity/addcolor?p_id='+p_id,msg,options);
- });
- $(document).on("click", ".btn-editt", function () {
- var colorid = $(this).attr('data-title')
- var msg = "配置添加";
- var options = {
- shadeClose: false,
- shade: [0.3, '#393D49'],
- callback:function(value){
- $(".btn-refresh").trigger('click')
- }
- };
- Fast.api.open('commodity/commodity/editcolor?colorid='+colorid,msg,options);
- });
- Form.api.bindevent($("form[role=form]"), function(data, ret){
- //这里是表单提交处理成功后的回调函数,接收来自php的返回数据
- Fast.api.close(data);//这里是重点
- Toastr.success("成功");//这个可有可无
- }, function(data, ret){
- Toastr.success("失败");
- });
- var Controller = {
- index: function () {
- // 初始化表格参数配置
- Table.api.init({
- extend: {
- index_url: 'commodity/commodity/index' + location.search,
- add_url: 'commodity/commodity/add',
- edit_url: 'commodity/commodity/edit',
- del_url: 'commodity/commodity/del',
- multi_url: 'commodity/commodity/multi',
- table: 'commodity',
- }
- });
- var table = $("#table");
- // 初始化表格
- table.bootstrapTable({
- url: $.fn.bootstrapTable.defaults.extend.index_url,
- pk: 'c_id',
- sortName: 'c_id',
- columns: [
- [
- {checkbox: true},
- {field: 'c_id', title: __('C_id')},
- {field: 'c_name', title: __('C_name')},
- {field: 'c_images', title: __('C_images'), events: Table.api.events.image, formatter: Table.api.formatter.images},
- {
- field: 'buttons',
- width: "120px",
- title: __('点击查看商品配置'),
- table: table,
- events: Table.api.events.operate,
- buttons: [
- {
- name: 'detail',
- text: __('点击修改商品配置'),
- title: __('配置详情'),
- classname: 'btn btn-xs btn-primary btn-dialog',
- icon: 'fa fa-list',
- url: "commodity/commodity/commodityInfo",
- callback: function (data) {
- $(".btn-refresh").trigger('click')
- },
- visible: function (row) {
- //返回true时按钮显示,返回false隐藏
- return true;
- }
- },
- ],
- formatter: Table.api.formatter.buttons
- },
- {field: 'c_yuanjiaprice', title: __('C_yuanjiaprice'), operate:'BETWEEN'},
- {field: 'c_vipprice', title: __('C_vipprice'), operate:'BETWEEN'},
- {field: 'c_freight', title: __('C_freight'), operate:'BETWEEN'},
- {field: 'c_buynum', title: __('C_buynum')},
- {field: 'c_stock', title: __('C_stock')},
- {field: 'c_type', title: __('C_type')},
- {field: 'c_whitebean', title: __('C_whitebean')},
- {field: 'c_sort', title: __('C_sort')},
- {field: 'c_recommodity', title: __('是否首页推荐'), searchList: {"1":__('Yes'),"0":__('No')}, formatter: Table.api.formatter.toggle},
- {field: 'c_state_switch', title: __('C_state_switch'), searchList: {"1":__('Yes'),"0":__('No')}, formatter: Table.api.formatter.toggle},
- {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
- ]
- ]
- });
- // 为表格绑定事件
- Table.api.bindevent(table);
- },
- add: function () {
- Controller.api.bindevent();
- },
- edit: function () {
- Controller.api.bindevent();
- },
- api: {
- bindevent: function () {
- Form.api.bindevent($("form[role=form]"));
- }
- },
- };
- return Controller;
- });
|