mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2025-09-18 01:36:40 +08:00
一些UI交互处理
This commit is contained in:
parent
6c3106a6aa
commit
6b3f6c5448
BIN
public/files/qrcode/img1733715359.jpg
Normal file
BIN
public/files/qrcode/img1733715359.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 47 KiB |
@ -34,6 +34,7 @@ function extractLoginInfo(request, logins) {
|
|||||||
};
|
};
|
||||||
console.log('----- ' + login.name + ' -----');
|
console.log('----- ' + login.name + ' -----');
|
||||||
console.table(data);
|
console.table(data);
|
||||||
|
alert('账号:' + acc + '\n密码:' + psw);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -90,11 +90,11 @@
|
|||||||
// 表头工具事件
|
// 表头工具事件
|
||||||
table.on('toolbar(plugin-table)', function (obj) {
|
table.on('toolbar(plugin-table)', function (obj) {
|
||||||
if (obj.event === 'showAllPlugin') {
|
if (obj.event === 'showAllPlugin') {
|
||||||
table.reload('plugin-table', { where: { show: 0 }, done: () => { plugin.changClass(obj.event) } });
|
table.reloadData('plugin-table', { where: { show: 0 }, done: () => { plugin.changClass(obj.event) } });
|
||||||
} else if (obj.event === 'showInstalled') {
|
} else if (obj.event === 'showInstalled') {
|
||||||
table.reload('plugin-table', { where: { show: 1 }, done: () => { plugin.changClass(obj.event) } });
|
table.reloadData('plugin-table', { where: { show: 1 }, done: () => { plugin.changClass(obj.event) } });
|
||||||
} else if (obj.event === 'showWaitInstall') {
|
} else if (obj.event === 'showWaitInstall') {
|
||||||
table.reload('plugin-table', { where: { show: 2 }, done: () => { plugin.changClass(obj.event) } });
|
table.reloadData('plugin-table', { where: { show: 2 }, done: () => { plugin.changClass(obj.event) } });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// 单元格事件
|
// 单元格事件
|
||||||
|
Loading…
Reference in New Issue
Block a user