define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'vue'], function($, undefined, Backend,Table, Form, Vue) { var Controller = { index: function() { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'wanlshop/goods/index' + location.search, add_url: 'wanlshop/goods/add', edit_url: 'wanlshop/goods/edit', del_url: 'wanlshop/goods/del', multi_url: 'wanlshop/goods/multi', dragsort_url: "", table: 'wanlshop_goods', } }); var table = $("#table"); table.on('post-common-search.bs.table', function (event, table) { $('ul.nav-tabs li a[data-value="normal"]').trigger('click'); $(".form-commonsearch select[name=status]").val("normal"); }); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'weigh', fixedColumns: true, fixedRightNumber: 1, columns: [ [ {checkbox: true}, {field: 'id',title: __('Id')}, {field: 'shop_category_id', title: __('Shop_category_id'), operate:'RANGE', visible: false}, {field: 'category.name', title: __('Category.name'), formatter: Table.api.formatter.search}, {field: 'title',title: __('Title')}, {field: 'image',title: __('Image'),events: Table.api.events.image,formatter: Table.api.formatter.image}, {field: 'images',title: __('Images'),events: Table.api.events.image,formatter: Table.api.formatter.images}, // {field: 'flag',title: __('Flag'),searchList: {"hot": __('Flag hot'),"index": __('Flag index'),"recommend": __('Flag recommend')},operate: 'FIND_IN_SET',formatter: Table.api.formatter.label}, {field: 'shopsort.name', title: __('Shopsort.name'), formatter: Table.api.formatter.search}, {field: 'price',title: __('Price'),operate: 'BETWEEN'}, // {field: 'distribution',title: __('Distribution'),searchList: {"true": __('Distribution true'),"false": __('Distribution false')},formatter: Table.api.formatter.normal}, // {field: 'activity',title: __('Activity'),searchList: {"true": __('Activity true'),"false": __('Activity false')},formatter: Table.api.formatter.normal}, {field: 'views',title: __('Views')},{field: 'sales',title: __('Sales')},{field: 'comment',title: __('Comment')},{field: 'praise',title: __('Praise')}, {field: 'like',title: __('Like')},{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: 'status',title: __('Status'),searchList: {"normal": __('Normal'),"hidden": __('Hidden')},formatter: Table.api.formatter.status}, {field: 'operate',title: __('Operate'),table: table, events: Table.api.events.operate,formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); table.on('load-success.bs.table',function(data){ $(".btn-editone").data("area", ["90%","80%"]); $(".btn-add").data("area", ["90%","80%"]); }); }, stock: function() { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'wanlshop/goods/index' + location.search, add_url: 'wanlshop/goods/add', edit_url: 'wanlshop/goods/edit', del_url: 'wanlshop/goods/del', multi_url: 'wanlshop/goods/multi', dragsort_url: "", table: 'wanlshop_goods', } }); var table = $("#table"); table.on('post-common-search.bs.table', function (event, table) { $('ul.nav-tabs li a[data-value="hidden"]').trigger('click'); $(".form-commonsearch select[name=status]").val("hidden"); }); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, pk: 'id', sortName: 'weigh', fixedColumns: true, fixedRightNumber: 1, columns: [ [ {checkbox: true}, {field: 'id',title: __('Id')}, {field: 'category.name', title: __('Category.name'), formatter: Table.api.formatter.search}, {field: 'title',title: __('Title')}, {field: 'image',title: __('Image'),events: Table.api.events.image,formatter: Table.api.formatter.image}, {field: 'images',title: __('Images'),events: Table.api.events.image,formatter: Table.api.formatter.images}, // {field: 'flag',title: __('Flag'),searchList: {"hot": __('Flag hot'),"index": __('Flag index'),"recommend": __('Flag recommend')},operate: 'FIND_IN_SET',formatter: Table.api.formatter.label}, {field: 'shopsort.name', title: __('Shopsort.name'), formatter: Table.api.formatter.search}, {field: 'price',title: __('Price'),operate: 'BETWEEN'}, // {field: 'distribution',title: __('Distribution'),searchList: {"true": __('Distribution true'),"false": __('Distribution false')},formatter: Table.api.formatter.normal}, // {field: 'activity',title: __('Activity'),searchList: {"true": __('Activity true'),"false": __('Activity false')},formatter: Table.api.formatter.normal}, {field: 'views',title: __('Views')},{field: 'sales',title: __('Sales')},{field: 'comment',title: __('Comment')},{field: 'praise',title: __('Praise')}, {field: 'like',title: __('Like')},{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: 'status',title: __('Status'),searchList: {"normal": __('Normal'),"hidden": __('Hidden')},formatter: Table.api.formatter.status}, {field: 'operate',title: __('Operate'),table: table,events: Table.api.events.operate,formatter: Table.api.formatter.operate} ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, recyclebin: function() { // 初始化表格参数配置 Table.api.init({ extend: { 'dragsort_url': '' } }); var table = $("#table"); // 初始化表格 table.bootstrapTable({ url: 'wanlshop/goods/recyclebin' + location.search, pk: 'id', sortName: 'id', columns: [ [{ checkbox: true }, { field: 'id', title: __('Id') }, { field: 'title', title: __('Title'), align: 'left' }, { field: 'deletetime', title: __('Deletetime'), operate: 'RANGE', addclass: 'datetimerange', formatter: Table.api.formatter.datetime }, { field: 'operate', width: '130px', title: __('Operate'), table: table, events: Table.api.events.operate, buttons: [{ name: 'Restore', text: __('Restore'), classname: 'btn btn-xs btn-info btn-ajax btn-restoreit', icon: 'fa fa-rotate-left', url: 'wanlshop/goods/restore', refresh: true }, { name: 'Destroy', text: __('Destroy'), classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit', icon: 'fa fa-times', url: 'wanlshop/goods/destroy', refresh: true } ], formatter: Table.api.formatter.operate } ] ] }); // 为表格绑定事件 Table.api.bindevent(table); }, select: function () { // 初始化表格参数配置 Table.api.init({ extend: { index_url: 'wanlshop/goods/select', } }); var idArr = []; var dataArr = []; var table = $("#table"); table.on('check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table', function (e, row) { if (e.type == 'check' || e.type == 'uncheck') { row = [row]; } else { idArr = []; dataArr = []; } $.each(row, function (i, j) { if (e.type.indexOf("uncheck") > -1) { var index = idArr.indexOf(j.id); if (index > -1) { idArr.splice(index, 1); $.each(dataArr, function(key,value){ if(value.id == j.id){ dataArr.splice(key, 1); } }) } } else { if(idArr.indexOf(j.id) == -1){ idArr.push(j.id); dataArr.push({ id: j.id, image: j.image, price: j.price, title: j.title }); } } }); }); // 初始化表格 table.bootstrapTable({ url: $.fn.bootstrapTable.defaults.extend.index_url, sortName: 'id', showToggle: false, showExport: false, columns: [ [ {checkbox: true}, {field: 'id', title: __('Id')}, {field: 'image', title: __('Image'), events: Table.api.events.image, formatter: Table.api.formatter.image}, {field: 'title', title: __('Title')}, {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime}, { field: 'operate', title: __('Operate'), events: { 'click .btn-chooseone': function (e, value, row, index) { var multiple = Backend.api.query('multiple'); multiple = multiple == 'true' ? true : false; Fast.api.close({url: row.id, data: [{ id: row.id, image: row.image, price: row.price, title: row.title }], multiple: multiple}); }, }, formatter: function () { return ' ' + __('Choose') + ''; } } ] ] }); // 选中多个 $(document).on("click", ".btn-choose-multi", function () { var multiple = Backend.api.query('multiple'); multiple = multiple == 'true' ? true : false; Fast.api.close({ url: idArr.length == 0 ? '': idArr.join(","), data: dataArr, multiple: multiple }); }); // 为表格绑定事件 Table.api.bindevent(table); }, add: function() { var vm = new Vue({ el: '#app', data() { return { spu: [], spuItem: [], sku: [], skuImg: [], batch: 0, categoryId: '', categoryList :Config.channelList, categoryOne: null, categoryTwo: null, categoryThree: null, categoryFour: null, categoryFive: null, attributeData: [] } }, methods: { // 页面上传图片 1.1.9升级 changeImage(event, key){ let files = event.target.files[0]; //获取input的图片file值 require(['upload'], function (Upload) { Upload.api.send(files, function (data, ret) { Vue.set(vm.skuImg, key, data.url); }); }); }, getCategory(e){ if(e == 1){ this.categoryTwo = null; this.categoryThree = null; this.categoryFour = null; this.categoryFive = null; } if(this.categoryOne != null){ this.categoryId = this.categoryList[this.categoryOne].id; } if(this.categoryTwo != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].id; } if(this.categoryThree != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].childlist[this.categoryThree].id; } if(this.categoryFour != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].childlist[this.categoryThree].childlist[this.categoryFour].id; } if(this.categoryFive != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].childlist[this.categoryThree].childlist[this.categoryFour].childlist[this.categoryFive].id; } // 查询类目属性 Fast.api.ajax("wanlshop.goods/attribute?id=" + this.categoryId, (data, ret) =>{ this.attributeData = data; //返回false时将不再有右上角的操作成功的提示 return false; }); }, // 添加属性 spuAdd(){ var str = this.$refs['specs-name'].value || '' str = str.trim(); if (!str){ layer.msg("产品属性不能为空"); return } // 遍历 var arr = str.split(/\s+/); for (var i=0;i{ if (item.id == Config.categoryId ) { this.categoryOne = index; }else{ item.childlist.forEach((item1,index1)=>{ if (item1.id == Config.categoryId ) { this.categoryOne = index; this.categoryTwo = index1; }else{ item1.childlist.forEach((item2,index2)=>{ if (item2.id == Config.categoryId ) { this.categoryOne = index; this.categoryTwo = index1; this.categoryThree = index2; }else{ item2.childlist.forEach((item3,index3)=>{ if (item3.id == Config.categoryId ) { this.categoryOne = index; this.categoryTwo = index1; this.categoryThree = index2; this.categoryFour = index3; }else{ item3.childlist.forEach((item4,index4)=>{ if (item4.id == Config.categoryId ) { this.categoryOne = index; this.categoryTwo = index1; this.categoryThree = index2; this.categoryFour = index3; this.categoryFive = index4; } }); } }); } }); } }); } }); Fast.api.ajax("wanlshop.goods/attribute?id=" + this.categoryId, (data, ret) =>{ this.attributeData = data; //返回false时将不再有右上角的操作成功的提示 return false; }); }, methods: { // 页面上传图片 1.1.9升级 changeImage(event, key){ let files = event.target.files[0]; //获取input的图片file值 require(['upload'], function (Upload) { Upload.api.send(files, function (data, ret) { // 1.0.8修复 if(vm.skuItem[key]){ vm.skuItem[key]['thumbnail'] = data.url; }else{ Vue.set(vm.skuItem, key, { thumbnail: data.url }) } }); }); }, getCategory(e){ if(e == 1){ this.categoryTwo = null; this.categoryThree = null; this.categoryFour = null; this.categoryFive = null; } if(this.categoryOne != null){ this.categoryId = this.categoryList[this.categoryOne].id; } if(this.categoryTwo != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].id; } if(this.categoryThree != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].childlist[this.categoryThree].id; } if(this.categoryFour != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].childlist[this.categoryThree].childlist[this.categoryFour].id; } if(this.categoryFive != null){ this.categoryId = this.categoryList[this.categoryOne].childlist[this.categoryTwo].childlist[this.categoryThree].childlist[this.categoryFour].childlist[this.categoryFive].id; } // 查询类目属性 Fast.api.ajax("wanlshop.goods/attribute?id=" + this.categoryId, (data, ret) =>{ this.attributeData = data; //返回false时将不再有右上角的操作成功的提示 return false; }); }, // 添加属性 spuAdd(){ var str = this.$refs['specs-name'].value || '' str = str.trim(); if (!str){ layer.msg("产品属性不能为空"); return } // 遍历 var arr = str.split(/\s+/); for (var i=0;i