$(function () { $("#jqGrid").jqGrid({ url: '../storetopic/list', datatype: "json", colModel: [ {label: 'id', name: 'id', index: 'id', key: true, hidden: true}, {label: '活动主题', name: 'title', index: 'title', width: 80}, {label: '活动内容', name: 'content', index: 'content', width: 80}, // {label: '活动图片', name: 'itemPicUrl', index: 'item_pic_url', width: 80}, {label: '子标题', name: 'subtitle', index: 'subtitle', width: 80}, {label: '活动类别名称', name: 'promTypeName', index: 'prom_type_id', width: 80}, // {label: '活动价格', name: 'priceInfo', index: 'price_info', width: 80}, // {label: '场景图片链接', name: 'scenePicUrl', index: 'scene_pic_url', width: 80}, {label: '门店名称', name: 'storeName', index: 'store_id', width: 80}, {label: '第三方商户名称', name: 'thirdPartyMerchName', index: 'third_merch_sn', width: 80}, {label: '是否有效', name: 'isValid', index: 'is_valid', width: 50, align: 'center', formatter: function (value) { if (value == '0') { return '有效'; } else if (value == '1') { return '无效'; } return '-'; } }, {label: '备注', name: 'note', index: 'note', width: 80}, {label: '创建人编号', name: 'createrSn', index: 'creater_sn', width: 80}, {label: '创建时间', name: 'createTime', index: 'create_time', width: 80, formatter: function (value) { return transDate(value, 'yyyy-MM-dd hh:mm:ss'); }}, {label: '修改人编号', name: 'moderSn', index: 'moder_sn', width: 80}, {label: '修改时间', name: 'modTime', index: 'mod_time', width: 80, formatter: function (value) { return transDate(value, 'yyyy-MM-dd hh:mm:ss'); }}], 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, storeTopic: {}, ruleValidate: { name: [ {required: true, message: '名称不能为空', trigger: 'blur'} ] }, q: { name: '' } }, methods: { query: function () { vm.reload(); }, add: function () { vm.showList = false; vm.title = "新增"; vm.storeTopic = {}; }, update: function (event) { let id = getSelectedRow(); if (id == null) { return; } vm.showList = false; vm.title = "修改"; vm.getInfo(id) }, saveOrUpdate: function (event) { let url = vm.storeTopic.id == null ? "../storetopic/save" : "../storetopic/update"; $.ajax({ type: "POST", url: url, contentType: "application/json", data: JSON.stringify(vm.storeTopic), success: function (r) { if (r.code === 0) { alert('操作成功', function (index) { vm.reload(); }); } else { alert(r.msg); } } }); }, del: function (event) { let ids = getSelectedRows(); if (ids == null){ return; } confirm('确定要删除选中的记录?', function () { $.ajax({ type: "POST", url: "../storetopic/delete", contentType: "application/json", data: JSON.stringify(ids), success: function (r) { if (r.code == 0) { alert('操作成功', function (index) { $("#jqGrid").trigger("reloadGrid"); }); } else { alert(r.msg); } } }); }); }, getInfo: function(id){ $.get("../storetopic/info/"+id, function (r) { vm.storeTopic = r.storeTopic; }); }, 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); } } });