Files
ClassContent/历届学生/刘合群/菜谱/js/my.js
2024-09-27 02:06:13 +08:00

12 lines
377 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(function(){
$('.update').on('click', function () {
YDUI.dialog.loading.open('正在检查..');
setTimeout(function () {
YDUI.dialog.loading.close();
YDUI.dialog.toast('已经是最新版本', 'success', 1000);
}, 2000);
});
$('.contact').on('click', function () {
YDUI.dialog.toast('客服微信号cxy-monkey', 'success', 3000);
});
})()