懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 /**
2  * 角色详情对话框
3  */
4 var DeptInfoDlg = {
5     data: {
6         pid: "",
7         pName: ""
8     }
9 };
10
11 layui.use(['layer', 'form', 'admin', 'ax'], function () {
12     var $ = layui.jquery;
13     var $ax = layui.ax;
14     var form = layui.form;
15     var admin = layui.admin;
16     var layer = layui.layer;
17
18     //获取部门信息
19     var ajax = new $ax(Feng.ctxPath + "/dept/detail/" + Feng.getUrlParam("deptId"));
20     var result = ajax.start();
21     form.val('deptForm', result);
22
23     // 点击上级角色时
24     $('#pName').click(function () {
25         var formName = encodeURIComponent("parent.DeptInfoDlg.data.pName");
26         var formId = encodeURIComponent("parent.DeptInfoDlg.data.pid");
27         var treeUrl = encodeURIComponent("/dept/tree");
28
29         layer.open({
30             type: 2,
31             title: '父级部门',
32             area: ['300px', '400px'],
33             content: Feng.ctxPath + '/system/commonTree?formName=' + formName + "&formId=" + formId + "&treeUrl=" + treeUrl,
34             end: function () {
35                 $("#pid").val(DeptInfoDlg.data.pid);
36                 $("#pName").val(DeptInfoDlg.data.pName);
37             }
38         });
39     });
40
41     // 表单提交事件
42     form.on('submit(btnSubmit)', function (data) {
43         var ajax = new $ax(Feng.ctxPath + "/dept/update", function (data) {
44             Feng.success("修改成功!");
45
46             //传给上个页面,刷新table用
47             admin.putTempData('formOk', true);
48
49             //关掉对话框
50             admin.closeThisDialog();
51
52         }, function (data) {
53             Feng.error("修改失败!" + data.responseJSON.message)
54         });
55         ajax.set(data.field);
56         ajax.start();
57
58         //添加 return false 可成功跳转页面
59         return false;
60     });
61
62 });