$(function () { $("#jqGrid").Grid({ url: '../specification/list', rownumWidth:60, colModel: [ {label: 'id', name: 'id', index: 'id', key: true, hidden: true}, {label: '商品属性', name: 'name', index: 'name', width: 80}, {label: '排序', name: 'sortOrder', index: 'sort_order', width: 80}] }); }); var vm = new Vue({ el: '#rrapp', data: { showList: true, title: null, specification: {}, ruleValidate: { name: [ {required: true, message: '商品属性不能为空', trigger: 'blur'} ] }, q: { name: '', sortOrder:1 } }, methods: { query: function () { vm.reload(); }, add: function () { vm.showList = false; vm.title = "新增"; vm.specification = { sortOrder:1 }; }, update: function (event) { var id = getSelectedRow("#jqGrid"); if (id == null) { return; } vm.showList = false; vm.title = "修改"; vm.getInfo(id) }, saveOrUpdate: function (event) { var url = vm.specification.id == null ? "../specification/save" : "../specification/update"; Ajax.request({ type: "POST", url: url, contentType: "application/json", params: JSON.stringify(vm.specification), successCallback: function (r) { alert('操作成功', function (index) { vm.reload(); }); } }); }, del: function (event) { var ids = getSelectedRows("#jqGrid"); if (ids == null) { return; } confirm('确定要删除选中的记录?', function () { Ajax.request({ type: "POST", url: "../specification/delete", contentType: "application/json", params: JSON.stringify(ids), successCallback: function (r) { alert('操作成功', function (index) { vm.reload(); }); } }); }); }, getInfo: function (id) { Ajax.request({ url: "../specification/info/" + id, async: true, successCallback: function (r) { vm.specification = r.specification; } }); }, reload: function (event) { vm.showList = true; var 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); } } });