Blame view

web/WebMvc/wwwroot/productjs/base/SysApp.js 4.69 KB
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

let action = null;
layui.config({
    base: "/js/",
    version: 1222
}).use(['system'], function () {
    var form = layui.form,
        $ = layui.jquery,
        element = layui.element,
        table = layui.table,
        system = layui.system,
        sysU = new system.u(),
        areaName = "base",
        tableName = "SysApp",
        app = null;

    action = {

        addOptions: function () {
            var options = {
                fromId: "#modifyForm form",
                url: `/${areaName}/${tableName}/Ins`,
                submit: "submit(fromAdd)"
            }
            return options;
        },

        editOptions: function () {
            var options = {
                fromId: "#modifyForm form",
                url: `/${areaName}/${tableName}/Upd`,
32
                content: $("#modifyForm"),
赖素文 authored
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
                submit: "submit(fromUpdate)"
            }
            return options;
        },


        deleteOptions: function () {
            var options = {
                url: `/${areaName}/${tableName}/DelByIds`,
                keyId: "id"
            }
            return options;
        },



        exportOptions: function () {
            var options = {
                fromId: "listForm",
                url: `/${areaName}/${tableName}/Export`,
                isDefault: false,
                excelCols: {
                    head: app.data.cols
                }
            }
            return options;
        },

        queryOptions: function () {
            var options = {
                resetFrom: "form[lay-filter=listForm]",
                fromId: "listForm",
                urlExport: `/${areaName}/${tableName}/Export`,
                urlQuery: `/${areaName}/${tableName}/Load`,
                mainTable: app.data.tableIns
            }
            return options;
        },

        uploadOptions: function () {
            var options = {
                url: `/${areaName}/${tableName}/Import`,
                fromFile: "#excelfile",
                content: $("#ImportData")
            }
            return options;
        },

        uploadSaveBefore: function (formData, selectRow, callBack) {
			var fromValue = form.val(formData.parm.content[0].id);
            console.log(fromValue);
            delete fromValue.excelfile;

            var keys = Object.keys(fromValue);
            for (var item in keys) {
                if (!Object.prototype.hasOwnProperty.call(keys, item)) continue;
                var closName = keys[item],
                    val = fromValue[closName];      
                formData.formFile.append(closName, val);
            }

            if (callBack != null) callBack();
        },
96
97
98
99
100
101

        editBefore: function (data, callBack) {
            form.val("modifyForm", data);
            if (callBack != null) callBack();
        },
赖素文 authored
102
103
        //所有动作成功之后
        actionSuccess: (flag) => {
104
            sysU.refreshTable(app, sysU, null, flag);
赖素文 authored
105
106
107
108
109
110
111
       }
    }
    app = {
        data: {
            cols: [[
                { checkbox: true, fixed: true },
                { field: 'id', width: 80,  hide: true, title: 'id' },
112
                { field: 'keys', width: 180, hide: true, title: 'keys' },
113
                { field: 'appId', width: 150, title: '应用标识' },
114
                { field: 'ver', width: 100, title: '版本号' },
赖素文 authored
115
116
                { field: 'fileName', width: 180,  title: '文件名称' },
                {
117
                    field: 'filePath', width: 500,  title: 'Url', templet: function (d) {
赖素文 authored
118
119
120
                        return `<a href="${d.filePath}" class="layui-table-link" target="_blank">${d.filePath}</a>`;
                    }
                },
121
                { field: 'createBy', width: 150, title: '创建用户' },
赖素文 authored
122
123
124
125
126
127
                { field: 'createTime', width: 150,  title: '创建时间' },
            ]],
            tableIns: null,
            tableElem: "mainList",

            selectOption: {
128
   
赖素文 authored
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
                //返回的数据 用于后续操作
                selectData: {

                }
            }

        },
        methods: {
            initTable: function () {
                let options = {
                    elem: "#" + app.data.tableElem,
                    url: `/${areaName}/${tableName}/Load`,
                    cols: sysU.columnRecord(app.data.tableElem, app.data.cols),
                    toolbar: '#toolbarTable',
                }
                app.data.tableIns = sysU.initTable(options);
            }


        },
        registerEvent: function () {

        },

        init: function () {
            sysU.initSelect(app.data.selectOption);
            app.methods.initTable();
            app.registerEvent();
        }
    };

    app.init();

})