懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 layui.use(['table', 'admin', 'ax', 'func'], function () {
2     var $ = layui.$;
3     var table = layui.table;
4     var $ax = layui.ax;
5     var admin = layui.admin;
6     var func = layui.func;
7
8     /**
9      * 多语言表管理
10      */
11     var Translation = {
12         tableId: "translationTable"
13     };
14
15     /**
16      * 初始化表格的列
17      */
18     Translation.initColumn = function () {
19         return [[
20             {type: 'checkbox'},
21             {field: 'tranId', hide: true, title: '主键id'},
22             {field: 'tranCode', sort: true, title: '编码'},
23             {field: 'tranName', sort: true, title: '名称'},
24             {
25                 field: 'languages', sort: true, title: '语种', templet: function (d) {
26                     if (d.languages === 1) {
27                         return "中文";
28                     } else if (d.languages === 2) {
29                         return "英文";
30                     }
31                 }
32             },
33             {field: 'tranValue', sort: true, title: '翻译的值'},
34             {field: 'createTime', sort: true, title: '创建时间'},
35             {field: 'updateTime', sort: true, title: '更新时间'},
36             {align: 'center', toolbar: '#tableBar', title: '操作'}
37         ]];
38     };
39
40     /**
41      * 点击查询按钮
42      */
43     Translation.search = function () {
44         var queryData = {};
45         queryData['condition'] = $("#condition").val();
46         table.reload(Translation.tableId, {
47             where: queryData, page: {curr: 1}
48         });
49     };
50
51     /**
52      * 弹出添加对话框
53      */
54     Translation.openAddDlg = function () {
55         func.open({
56             title: '添加多语言表',
57             content: Feng.ctxPath + '/translation/add',
58             tableId: Translation.tableId
59         });
60     };
61
62     /**
63      * 点击编辑
64      *
65      * @param data 点击按钮时候的行数据
66      */
67     Translation.openEditDlg = function (data) {
68         func.open({
69             title: '修改多语言表',
70             content: Feng.ctxPath + '/translation/edit?tranId=' + data.tranId,
71             tableId: Translation.tableId
72         });
73     };
74
75     /**
76      * 导出excel按钮
77      */
78     Translation.exportExcel = function () {
79         var checkRows = table.checkStatus(Translation.tableId);
80         if (checkRows.data.length === 0) {
81             Feng.error("请选择要导出的数据");
82         } else {
83             table.exportFile(tableResult.config.id, checkRows.data, 'xls');
84         }
85     };
86
87     /**
88      * 点击删除
89      *
90      * @param data 点击按钮时候的行数据
91      */
92     Translation.onDeleteItem = function (data) {
93         var operation = function () {
94             var ajax = new $ax(Feng.ctxPath + "/translation/delete", function (data) {
95                 Feng.success("删除成功!");
96                 table.reload(Translation.tableId);
97             }, function (data) {
98                 Feng.error("删除失败!" + data.responseJSON.message + "!");
99             });
100             ajax.set("tranId", data.tranId);
101             ajax.start();
102         };
103         Feng.confirm("是否删除?", operation);
104     };
105
106     // 渲染表格
107     var tableResult = table.render({
108         elem: '#' + Translation.tableId,
109         url: Feng.ctxPath + '/translation/list',
110         page: true,
111         height: "full-158",
112         cellMinWidth: 100,
113         cols: Translation.initColumn()
114     });
115
116     // 搜索按钮点击事件
117     $('#btnSearch').click(function () {
118         Translation.search();
119     });
120
121     // 添加按钮点击事件
122     $('#btnAdd').click(function () {
123         Translation.openAddDlg();
124     });
125
126     // 导出excel
127     $('#btnExp').click(function () {
128         Translation.exportExcel();
129     });
130
131     // 工具条点击事件
132     table.on('tool(' + Translation.tableId + ')', function (obj) {
133         var data = obj.data;
134         var layEvent = obj.event;
135
136         if (layEvent === 'edit') {
137             Translation.openEditDlg(data);
138         } else if (layEvent === 'delete') {
139             Translation.onDeleteItem(data);
140         }
141     });
142 });