懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 /**
2  * 添加或者修改页面
3  */
4 var ProductBomInfoInfoDlg = {
5     data: {
6         id: "",
7         bomCode: "",
8         bomName: "",
9         productCode: "",
10         productName: "",
11         version: "",
12         status: "",
13         spareField1: "",
14         spareField2: "",
15         remark: "",
16         createUser: "",
17         createTime: "",
18         updateUser: "",
19         updateTime: ""
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 + "/productBomInfo/addItem", function (data) {
60             Feng.success("添加成功!");
61             window.location.href = Feng.ctxPath + '/productBomInfo'
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 + '/productBomInfo'
73     });
74
75 });