1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-21 11:18:10 +08:00
2020-07-28 20:40:36 +08:00

15 lines
336 B
JavaScript

layui.use(['jquery', 'layer'], function () {
var $ = layui.jquery;
var layer = layui.layer;
$('.kg-status-history').on('click', function () {
layer.open({
type: 2,
title: '历史状态',
content: $(this).data('url'),
area: ['640px', '320px']
});
});
});