DmitrMakeev commited on
Commit
41b7433
·
verified ·
1 Parent(s): 1fdac1c

Update data_gc_tab.html

Browse files
Files changed (1) hide show
  1. data_gc_tab.html +21 -17
data_gc_tab.html CHANGED
@@ -15,11 +15,9 @@
15
 
16
 
17
 
18
- <!-- Подключение стилей Notyf -->
19
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf/notyf.min.css">
20
 
21
- <!-- Подключение скрипта Notyf -->
22
- <script src="https://cdn.jsdelivr.net/npm/notyf/notyf.min.js"></script>
23
 
24
 
25
 
@@ -294,20 +292,26 @@ return link + `<img src="${imageUrl3}" alt="WhatsApp" style="width: 98px; height
294
 
295
  {title:"Город", field:"b_city", width:95},
296
  {title:"Email", field:"email", width:95},
297
- {title: "Реплики", field: "b_mess", width: 95, cellClick: function(e, cell) {
298
  var data = cell.getData();
299
- var notyf = new Notyf(); // Создаем новый экземпляр Notyf
300
-
301
- // Формируем текст сообщения
302
- var message = `
303
- Имя: ${data.name}\n
304
- WhatsApp: ${data.phone}\n
305
- Реплики: ${data.b_mess}
306
- `;
307
-
308
- // Выводим сообщение в виде уведомления
309
- notyf.success(message);
310
- }},
 
 
 
 
 
 
311
 
312
  {title:"Куратор", field:"curator", formatter: linkFormatter},
313
  {title:"Статус покупки", field:"shop_st", formatter: function(cell, formatterParams, onRendered) {
 
15
 
16
 
17
 
18
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.css">
19
+ <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
20
 
 
 
21
 
22
 
23
 
 
292
 
293
  {title:"Город", field:"b_city", width:95},
294
  {title:"Email", field:"email", width:95},
295
+ {title:"Реплики", field:"b_mess", width:95, cellClick:function(e, cell){
296
  var data = cell.getData();
297
+ Swal.fire({
298
+ title: 'Детали пользователя',
299
+ html: `
300
+ <strong>Имя:</strong> ${data.name}<br>
301
+ <strong>WhatsApp:</strong> <a href="https://web.whatsapp.com/send?phone=${data.phone}" target="_blank">${data.phone}</a><br>
302
+ <strong>Реплики:</strong> ${data.b_mess}
303
+ `,
304
+ icon: 'success',
305
+ confirmButtonText: 'Закрыть',
306
+ confirmButtonColor: '#4CAF50',
307
+ customClass: {
308
+ confirmButton: 'button is-success',
309
+ title: 'title-custom',
310
+ content: 'content-custom'
311
+ }
312
+ });
313
+ }},
314
+
315
 
316
  {title:"Куратор", field:"curator", formatter: linkFormatter},
317
  {title:"Статус покупки", field:"shop_st", formatter: function(cell, formatterParams, onRendered) {