SupplierSubAccountListScript.blade.php
9.67 KB
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
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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<script>
layui.use(['table', 'form', 'element', 'layer', 'Split', 'admin', 'xmSelect'], function () {
let $ = layui.jquery;
let table = layui.table;
let form = layui.form;
let admin = layui.admin;
let initCondition = {};
let whereCondition = initCondition;
whereCondition.account_id = getQueryVariable('account_id');
let cols = [
{
field: 'mobile', title: '子账号', align: 'center', width: 300,
templet: function (data) {
return '<span>' + data.mobile + '</span><span style="color: dodgerblue;margin-left: 10px" class="viewAccount" type="mobile" id="' + data.id + '"></span>'
}
},
{
field: 'password_raw', title: '密码', align: 'center', width: 300,
templet: function (data) {
return '<span>' + '**********' + '</span><span style="color: dodgerblue;margin-left: 10px" class="viewAccount" type="password_raw" id="' + data.id + '"></span>'
}
},
{field: 'name', title: '联系人', align: 'center', width: 100},
{field: 'status_cn', title: '状态', align: 'center', width: 80},
{field: 'create_type_cn', title: '创建人', align: 'center', width: 150},
{field: 'create_time_cn', title: '创建时间', align: 'center', width: 150},
{field: 'update_time_cn', title: '修改时间', align: 'center', width: 150},
{field: 'operate', title: '操作', align: 'left', templet: '#edit'},
];
let currentPage = 0;
table.render({
elem: '#supplierSubAccountList'
, url: '/api/supplier_account/GetSupplierSubAccountList'
, method: 'post'
, size: 'sm'
, limit: 20
, cellMinWidth: 50 //全局定义常规单元格的最小宽度
, where: whereCondition
, loading: true
, first: true //不显示首页
, last: false //不显示尾页
, cols: [cols]
, id: 'supplierSubAccountList'
, page: {}
, done: function (res, curr, count) {
currentPage = curr;
}
});
table.on('tool(supplierSubAccountList)', function (obj) {
let event = obj.event;
let sbatId = obj.data.sbat_id;
let ynatId = obj.data.ynat_id;
let accountId = getQueryVariable('account_id');
if (event === 'detail') {
layer.open({
type: 2,
area: ['95%', '95%'],
fixed: false,
title: '编辑子账号',
content: '/supplier_account/SaveSupplierSubAccount?view=iframe&account_id=' + accountId + '&sbat_id=' + sbatId + '&ynat_id=' + ynatId,
end: function () {
table.reload('supplierSubAccountList', {
page: {
curr: 1 //重新从第 1 页开始
},
});
}
});
}
if (event === 'delete') {
let confirmHtml = '<p>确定<span style="color: red">删除</span>当前子账号吗?</p><p style="color: #7f7f7f">' + 'PS:删除后,该子账号从系统清除,无法再登录芯链系统!</p>'
layer.confirm(confirmHtml, {
btn: ['确定', '取消'], //按钮
title: '删除'
}, function (index) {
const url = '/api/supplier_account/ChangeSupplierSubAccountStatus';
const data = {
account_id: accountId,
sbat_id: sbatId,
status: 0,
};
layer.closeAll();
$.post(url, data, function (res) {
res = JSON.parse(res);
if (res.code === 0) {
table.reload('supplierSubAccountList');
layer.msg("删除成功", {icon: 6});
}
});
});
}
if (event === 'enable') {
let confirmHtml = '<p>确定<span style="color: #00bfbf">启用</span>当前子账号吗?</p><p style="color: #7f7f7f">' + 'PS:启用后,该子账号可登录芯链系统,操作对应权限页面!</p>'
layer.confirm(confirmHtml, {
btn: ['确定', '取消'], //按钮
title: '启用'
}, function (index) {
const url = '/api/supplier_account/ChangeSupplierSubAccountStatus';
const data = {
account_id: accountId,
sbat_id: sbatId,
status: 1,
};
layer.closeAll();
$.post(url, data, function (res) {
res = JSON.parse(res);
if (res.code === 0) {
table.reload('supplierSubAccountList');
layer.msg("启用成功", {icon: 6});
}
});
});
}
if (event === 'disable') {
let confirmHtml = '<p>确定<span style="color: orange">禁用</span>当前子账号吗?</p><p style="color: #7f7f7f">' + 'PS:禁用后,该子账号无法再登录芯链系统!</p>'
layer.confirm(confirmHtml, {
btn: ['确定', '取消'],
title: '禁用'
}, function (index) {
const url = '/api/supplier_account/ChangeSupplierSubAccountStatus';
const data = {
account_id: accountId,
sbat_id: sbatId,
status: 2,
};
layer.closeAll();
$.post(url, data, function (res) {
res = JSON.parse(res);
if (res.code === 0) {
console.log(res.code);
table.reload('supplierSubAccountList');
layer.msg("禁用成功", {icon: 6});
}
});
});
}
});
$("#add_supplier_sub_account").click(function () {
layer.open({
type: 2,
content: '/supplier_account/SaveSupplierSubAccount?view=iframe&account_id=' + getQueryVariable('account_id'),
area: ['70%', '80%'],
title: '添加芯链账号',
end: function () {
table.reload('supplierSubAccountList');
}
});
});
$('#saveSupplierAccountMessagePerm').click(function () {
let accountId = getQueryVariable('account_id');
layer.open({
type: 2,
area: ['75%', '75%'],
fixed: false,
title: '详情',
content: '/supplier_account/SaveSupplierAccountMessagePerm?view=iframe&account_id=' + accountId,
end: function () {
table.reload('supplierSubAccountList', {
page: {
curr: 1 //重新从第 1 页开始
},
});
}
});
});
form.on('submit(load)', function (data) {
whereCondition = $.extend(false, initCondition, data.field);
//执行重载
table.reload('supplierSubAccountList', {
page: {
curr: 1
}
, where: whereCondition
});
return false;
});
form.on('submit(reset)', function (data) {
layer.load(1);
location.reload();
});
$(document).on('click', '.viewAccount', function () {
if ($(this).text() === '隐藏') {
$(this).prev().text($(this).attr('prev_text'));
$(this).text('查看');
} else {
let id = $(this).attr('id');
let type = $(this).attr('type');
let resp = ajax('/api/supplier_account/GetSupplierAccount', {id: id, type: type});
if (!resp) {
layer.msg('网络连接失败', {'icon': 5});
return false;
}
let prevText = $(this).prev().text();
$(this).attr('prev_text', prevText);
if (resp.err_code === 0) {
switch (type) {
case 'mobile':
$(this).prev().text(resp.data.mobile);
break;
case 'email':
$(this).prev().text(resp.data.email);
break;
}
console.log(resp);
$.get(getLogDomain() + "/api/addSensitiveClick", {
uid: getCookie("oa_user_id") || 0,
sys_id: 4,
mask_type: type || 0,
origin_id: id || 0,
source_from: window.location.href
});
$(this).text('隐藏');
} else {
layer.msg(resp.err_msg, {'icon': 5});
return false;
}
}
});
});
</script>