懒羊羊
2023-09-19 3d2401cf8ea9ae3d830c0568e7751e2e8cc8db22
提交 | 用户 | 时间
3d2401 1 /**
2  * 详情对话框
3  */
4 var CustomInfoInfoDlg = {
5     data: {
6         id: "",
7         customerCode: "",
8         customerName: "",
9         customerType: "",
10         contact: "",
11         remarks: "",
12         createTime: "",
13         createUser: "",
14         updateTime: "",
15         updateUser: ""
16     }
17 };
18
19 layui.use(['form', 'admin', 'ax','laydate','upload','formSelects'], function () {
20     var $ = layui.jquery;
21     var $ax = layui.ax;
22     var form = layui.form;
23     var admin = layui.admin;
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41     //获取详情信息,填充表单
42     var ajax = new $ax(Feng.ctxPath + "/customInfo/detail?id=" + Feng.getUrlParam("id"));
43     var result = ajax.start();
44     form.val('customInfoForm', result.data);
45
46     //表单提交事件
47     form.on('submit(btnSubmit)', function (data) {
48         var ajax = new $ax(Feng.ctxPath + "/customInfo/editItem", function (data) {
49             Feng.success("更新成功!");
50             window.location.href = Feng.ctxPath + '/customInfo'
51         }, function (data) {
52             Feng.error("更新失败!" + data.responseJSON.message)
53         });
54         ajax.set(data.field);
55         ajax.start();
56
57         return false;
58     });
59
60     $('#cancel').click(function(){
61         window.location.href = Feng.ctxPath + '/customInfo'
62     });
63 });