公告板
版本库
filestore
活动
搜索
登录
杜慧哲
/
larks_base_dm
派生自
larks_base_dm
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
fix : MySQL=》DMSQL
cy
2022-06-23
da30b02214ab3a35a3b2ac163afce87e70a39ff4
[~duhuizhe/larks_base_dm.git]
/
WebRoot
/
common
/
userList.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>人员管理</title>
[#include "/business/pages/include/static.html" /]
</head>
<body>
<div class="facieditlistright">
<div id="main"></div>
<div class="paging clearfix" id="pagination"></div>
</div>
<script type="text/javascript">
var bmId = '${bmId}';
var nowPage = 1;
function query(bmId){
var params = {"bmId":bmId};
pagination("${base}/common/userData.html","${base}/common/userCount.html","main","pagination",{cpage:nowPage,psize:10},params,function(data,page) {
nowPage = page;
});
}
$(function() {
query(bmId);
})
</script>
</body>
</html>