yantian yue
2023-10-17 487b2f2a353b89ab46cd9b784226b600b7b915b8
提交 | 用户 | 时间
1ac2bc 1 /**
2  * 添加或者修改页面
3  */
4 var MaterialInfoInfoDlg = {
5     data: {
6         id: "",
7         materialCode: "",
8         materialName: "",
9         materialView: "",
10         typeZ: "",
11         typeL: "",
12         unit: "",
13         matterVersion: "",
14         remarks: "",
15         createUser: "",
16         createTime: "",
17         updateUser: "",
18         updateTime: "",
19         erpSpec: ""
20     }
21 };
22
23 layui.use(['form', 'admin', 'ax','laydate','upload','formSelects'], function () {
24     var $ = layui.jquery;
25     var $ax = layui.ax;
26     var form = layui.form;
27     var admin = layui.admin;
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     form.on('submit(btnSubmit)', function (data) {
59         var ajax = new $ax(Feng.ctxPath + "/materialInfo/addItem", function (data) {
60             Feng.success("添加成功!");
61             window.location.href = Feng.ctxPath + '/materialInfo'
62         }, function (data) {
63             Feng.error("添加失败!" + data.responseJSON.message)
64         });
65         ajax.set(data.field);
66         ajax.start();
67
68         return false;
69     });
70
71     $('#cancel').click(function(){
72         window.location.href = Feng.ctxPath + '/materialInfo'
73     });
74
75 });