All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
static.generator.js.generator.js Maven / Gradle / Ivy
$(function () {
$("#jqGrid").jqGrid({
url: '/sys/generator/list',
datatype: "json",
colModel: [
{ label: '表名', name: 'tableName', width: 100, key: true },
{ label: 'Engine', name: 'engine', width: 70},
{ label: '表备注', name: 'tableComment', width: 100 },
{ label: '创建时间', name: 'createTime', width: 100 }
],
viewrecords: true,
height: 385,
rowNum: 10,
rowList : [10,30,50,100,200],
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(){
//隐藏grid底部滚动条
$("#jqGrid").closest(".ui-jqgrid-bdiv").css({ "overflow-x" : "hidden" });
}
});
});
var vm = new Vue({
el:'#rrapp',
data:{
q:{
tableName: null
}
},
methods: {
query: function () {
$("#jqGrid").jqGrid('setGridParam',{
postData:{'tableName': vm.q.tableName},
page:1
}).trigger("reloadGrid");
},
generator: function() {
var tableNames = getSelectedRows();
if(tableNames == null){
return ;
}
location.href = "sys/generator/code?tables=" + JSON.stringify(tableNames);
}
}
});