cl
2024-01-23 6dadf36ef118fbb3b2cd5aca94cde88e29fb55dc
提交 | 用户 | 时间
71e81e 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     form.on('submit(btnSubmit)', function (data) {
27         var ajax = new $ax(Feng.ctxPath + "/customInfo/addItem", function (data) {
28             Feng.success("添加成功!");
29             window.location.href = Feng.ctxPath + '/customInfo'
30         }, function (data) {
31             Feng.error("添加失败!" + data.responseJSON.message)
32         });
33         ajax.set(data.field);
34         ajax.start();
35
36         return false;
37     });
38
39     $('#cancel').click(function(){
40         window.location.href = Feng.ctxPath + '/customInfo'
41     });
42
43 });