index.php
9.5 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<!DOCTYPE html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html>
<head>
<meta charset="UTF-8">
<title>表单填写</title>
<link rel="stylesheet" type="text/css" href="/assets/common/css/themes/gray/easyui.css" />
<link rel="stylesheet" type="text/css" href="/assets/common/css/themes/gray/menu.css" />
<link rel="stylesheet" type="text/css" href="/assets/common/css/themes/icon.css" />
<link rel="stylesheet" type="text/css" href="/assets/web/css/jitnry.css" />
<link rel="stylesheet" type="text/css" href="/assets/web/css/common_car.css" />
<script type="text/javascript" src="/assets/common/js/jquery.min.1.9.4.js"></script>
<script type="text/javascript" src="/assets/common/js/jquery.easyui.min.1.9.4.js"></script>
<script type="text/javascript" src="/assets/common/js/jquery.cookie.1.4.1.js"></script>
<!-- 插件调用 --->
<script type="text/javascript" src="/assets/common/js/datagrid-detailview.js"></script>
<script type="text/javascript" src="/assets/common/locale/easyui-lang-zh_CN.js"></script>
<!-- 基础 JS 调用 -->
<script type="text/javascript" src="/assets/web/js/src/easyui.base.js"></script>
<script type="text/javascript" src="/assets/web/js/src/allCity.js"></script>
<style>
#fm>div {
width: 100%;
display: flex;
justify-content: space-around;
margin: 10px 0;
}
#fm>div input{
width: 180px;
}
</style>
</head>
<body style="margin-bottom: 54px;">
<div class="easyui-layout" data-options="fit:true">
<div data-options="split:false,region:'west',collapsible:true,footer:'#win_base_org_form_footer'" title="部门列表" id="saveBox" style="width:100%;">
<div class="easyui-panel" style="width:100%;max-width:100%;padding: 5px 5px">
<div style="margin-bottom:5px;">
<a id="name_add_but" href="#" data-options="iconCls:'icon-add'" class="my_but" style="vertical-align: middle;">新增</a>
</div>
</div>
<table id="dg" style="width: 100%; height: 100%"
data-options="rownumbers:true,singleSelect:true,pagination:true,toolbar:'#tb'">
</table>
<div id="tb" style="padding:5px;height:auto">
<div>
部门名称: <input class="easyui-textbox" type="text" id='departmentNames' name='departmentNames'>
<a href="#" class="easyui-linkbutton" id="search_buttn" iconCls="icon-search">搜索</a>
</div>
</div>
</div>
</div>
<div id="win" class="easyui-dialog" title="提示" style="width: 800px; padding: 10px 20px; height: auto" closed="true" buttons="#dlg-buttons">
<form id="fm" name="frm" method="post" style="margin-top: 20px; margin-left: 20px;">
<table style="padding: 10px 20px;" cellspacing="10">
<tr>
<td>部门名称:</td>
<td><input class="easyui-textbox" type="text" name="name" id="name" /></td>
<input class="easyui-textbox" type="hidden" name="id" id="id" />
</tr>
<tr>
<td>所属机构:</td>
<td>
<input id="cc1" name="mechanism" class="easyui-combobox" data-options="
valueField: 'id',
textField: 'mechanismName',
url: '/products/role/getMechanism',
onSelect: function(rec){
var url = '/products/role/getDepartment?id='+rec.id;
$.ajax({
url:url,
success:function(a){
var arr1=JSON.parse(a);
console.log(JSON.parse(a))
$('#cc2').combobox({
data:JSON.parse(a),
valueField:'id',
textField: 'departmentName',
});
}
})
}">
</td>
</tr>
<div id="dlg-buttons" style="display: block">
<a id="confirm" href="javascript:void(0)" class="easyui-linkbutton c6" iconcls="icon-ok" onclick="submitForm()" style="width: 90px">提交</a>
<a href="javascript:void(0)" class="easyui-linkbutton" iconcls="icon-cancel" onclick="javascript:$('#win').dialog('close')" style="width: 90px">取消</a>
</div>
</table>
</form>
</div>
</body>
<tbody id="html_table"></tbody>
<script type="text/javascript" src="/assets/web/js/src/common_fu.js"></script>
<script>
//添加
$('#name_add_but').linkbutton({
onClick: function () {
addFile();
}
});
//下拉框搜索
init_datagrid('/products/department/department_list', 0);
//下拉框搜索
$('#search_buttn').bind('click', function() {
var _data = $('#dg').data('datagrid'); // 拿到datagrid初始化的数据缓存
if(_data && _data.options){
_data.options.pageNumber = 1; // 修改缓存
}
$.data($('#dg')[0], 'datagrid', _data); // 把修改写回去
var result=$('#departmentNames').textbox('getValue');
console.log(result)
//ajax请求数据
$.ajax({
type: "post",
data: result,
async: false,
url: "/products/department/department_list",
success: function(data) {
console.log(data)
//
},
error:function(data){
console.log(data)
}
});
var result = {
result,
}
// console.log(result);return false;
init_datagrid('/products/department/department_list', result);
});
function init_datagrid(data_url, res) {
//表头字段
var arr_columns = dg_columns();
$("#dg").datagrid({
rownumbers:true,
singleSelect:true,
pagination:true,
url:data_url,
queryParams: res,
method:'post',
columns: [arr_columns],
loadMsg: '正在加载数据',
emptyMsg: '列表为空',
});
}
function dg_columns() {
var arr = new Array();
arr.push({
field: 'mechanismName',
title: '所属机构',
width: 200,
align: 'center'
});
arr.push({
field: 'departmentName',
title: '部门名称',
width: 300,
align: 'center'
});
arr.push({
field: 'createTime',
title: '创建时间',
width: 200,
align: 'center'
});
arr.push({
field: 'id',
title: '操作',
width: 90,
align: 'center',
formatter:formatOper
});
//操作框
function formatOper(val, row, index) {
return '<a href="javascript:void(0)" onclick="showUser(' + val+','+ row.id + ')">编辑</a> ';
}
// console.log(arr)
return arr;
}
function addFile(){
rule_id='';
$('#entryTime').textbox({disabled:false})
$('#win').form('clear')
$('#win').dialog({
title: '新增部门',
width: 800,
height: "auto",
top:20,
closed: false,//显示对话框
cache: false,
modal: true
});
}
//修改
function showUser(val,row){
if(row){
console.log(row)
var result = {
id:row
}
$("#win").dialog("open").dialog("setTitle","部门信息修改");
//ajax请求数据
$.ajax({
type: "post",
data: result,
async: false,
url: "/products/department/getDepartment",
success: function(data) {
var arr = data;
console.log(arr)
$('#name').textbox('setValue',arr.departmentName);
$('#id').textbox('setValue',arr.id);
$('#cc1').combobox('select',arr.mechanismId);
//
},
error:function(data){
console.log(data)
}
});
}
}
function submitForm(){
$('#fm').form('submit', {
url:'/products/department/department_add',
onSubmit: function(){
console.log($(this))
// do some check
// return false to prevent submit;
},
success:function(data){
console.log(data);
var arr = JSON.parse(data);
$.messager.alert("提示", arr.msg);
$('#dg').datagrid('reload');
// console.log(data);
//$.messager.alert('',msg);
//console.log(data);
//alert(data)
}
});
$('#win').dialog({
closed: true, // 隱藏列表
});
}
</script>
</html>