$(function () { $("#jqGrid").jqGrid({ url: '../mkdailyactivities/list', datatype: "json", colModel: [ {label: 'mdaId', name: 'mdaId', index: 'mda_id', key: true, hidden: true}, {label: '产品中文名', name: 'productName', index: 'product_name', width: 80}, {label: '日常价', name: 'dailyPrice', index: 'daily_price', width: 80}, {label: '活动价格', name: 'activityPrice', index: 'activity_price', width: 80}, {label: '门店编号', name: 'shopSn', index: 'shop_sn', width: 80}, {label: '商品编码', name: 'goodsSn', index: 'goods_sn', width: 80}, {label: '条形码', name: 'barcode', index: 'barcode', width: 80}, {label: '商品品牌', name: 'productBrand', index: 'product_brand', width: 80}, {label: '商品系列', name: 'productSeries', index: 'product_series', width: 80}, {label: '营销活动编号', name: 'mkaId', index: 'mka_id', width: 80}, {label: '创建时间', name: 'createTime', index: 'create_time', width: 80}, {label: '创建人编号', name: 'createrSn', index: 'creater_sn', width: 80}, {label: '修改人编号', name: 'moderSn', index: 'moder_sn', width: 80}, {label: '修改时间', name: 'updateTime', index: 'update_time', width: 80}], viewrecords: true, height: 550, rowNum: 10, rowList: [10, 30, 50], rownumbers: true, rownumWidth: 25, autowidth: true, multiselect: true, pager: "#jqGridPager", jsonReader: { root: "page.list", page: "page.currPage", total: "page.totalPage", records: "page.totalCount" }, prmNames: { page: "page", rows: "limit", order: "order" }, gridComplete: function () { $("#jqGrid").closest(".ui-jqgrid-bdiv").css({"overflow-x": "hidden"}); } }); }); let vm = new Vue({ el: '#rrapp', data: { showList: true, title: null, mkDailyActivities: {}, ruleValidate: { name: [ {required: true, message: '名称不能为空', trigger: 'blur'} ] }, q: { name: '' } }, methods: { query: function () { vm.reload(); }, add: function () { vm.showList = false; vm.title = "新增"; vm.mkDailyActivities = {}; }, update: function (event) { let mdaId = getSelectedRow(); if (mdaId == null) { return; } vm.showList = false; vm.title = "修改"; vm.getInfo(mdaId) }, saveOrUpdate: function (event) { let url = vm.mkDailyActivities.mdaId == null ? "../mkdailyactivities/save" : "../mkdailyactivities/update"; $.ajax({ type: "POST", url: url, contentType: "application/json", data: JSON.stringify(vm.mkDailyActivities), success: function (r) { if (r.code === 0) { alert('操作成功', function (index) { vm.reload(); }); } else { alert(r.msg); } } }); }, del: function (event) { let mdaIds = getSelectedRows(); if (mdaIds == null){ return; } confirm('确定要删除选中的记录?', function () { $.ajax({ type: "POST", url: "../mkdailyactivities/delete", contentType: "application/json", data: JSON.stringify(mdaIds), success: function (r) { if (r.code == 0) { alert('操作成功', function (index) { $("#jqGrid").trigger("reloadGrid"); }); } else { alert(r.msg); } } }); }); }, getInfo: function(mdaId){ $.get("../mkdailyactivities/info/"+mdaId, function (r) { vm.mkDailyActivities = r.mkDailyActivities; }); }, reloadSearch: function() { vm.q = { name: '' } vm.reload(); }, reload: function (event) { vm.showList = true; let page = $("#jqGrid").jqGrid('getGridParam', 'page'); $("#jqGrid").jqGrid('setGridParam', { postData: {'name': vm.q.name}, page: page }).trigger("reloadGrid"); vm.handleReset('formValidate'); }, handleSubmit: function (name) { handleSubmitValidate(this, name, function () { vm.saveOrUpdate() }); }, handleReset: function (name) { handleResetForm(this, name); } } });