$(function () { $("#jqGrid").Grid({ url: '../searchhistory/list', rownumWidth:60, colModel: [ {label: 'id', name: 'id', index: 'id', key: true, hidden: true}, {label: '关键字', name: 'keyword', index: 'keyword', width: 80}, // {label: '搜索来源', name: 'from', index: 'from', width: 80 }, {label: '搜索时间', name: 'addTime', index: 'add_time', width: 80} // {label: '会员', name: 'userName', index: 'user_name', width: 80}, // {label: '会员昵称', name: 'nickName', index: 'nick_name', width: 80} ] }); }); var vm = new Vue({ el: '#rrapp', data: { showList: true, title: null, searchHistory: {}, q: { name: '' } }, methods: { query: function () { vm.reload(); }, add: function () { vm.showList = false; vm.title = "新增"; vm.searchHistory = {}; }, 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.searchHistory.id == null ? "../searchhistory/save" : "../searchhistory/update"; Ajax.request({ type: "POST", url: url, contentType: "application/json", params: JSON.stringify(vm.searchHistory), 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: "../searchhistory/delete", contentType: "application/json", params: JSON.stringify(ids), successCallback: function (r) { alert('操作成功', function (index) { vm.reload(); }); } }); }); }, getInfo: function (id) { Ajax.request({ url: "../searchhistory/info/" + id, async: true, successCallback: function (r) { vm.searchHistory = r.searchHistory; } }); }, reload: function (event) { vm.showList = true; var page = $("#jqGrid").jqGrid('getGridParam', 'page'); $("#jqGrid").jqGrid('setGridParam', { postData: {'name': vm.q.name}, page: page }).trigger("reloadGrid"); } } });