初始化

This commit is contained in:
24kycj
2025-03-30 15:47:12 +08:00
commit 6f90c7dc69
166 changed files with 85079 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
/**
@Name:layui 移动模块入口 | 构建后则为移动模块集合
@LicenseMIT
*/
if(!layui['layui.mobile']){
layui.config({
base: layui.cache.dir + 'lay/modules/mobile/'
}).extend({
'layer-mobile': 'layer-mobile'
,'zepto': 'zepto'
,'upload-mobile': 'upload-mobile'
,'layim-mobile': 'layim-mobile'
});
}
layui.define([
'layer-mobile'
,'zepto'
,'layim-mobile'
], function(exports){
exports('mobile', {
layer: layui['layer-mobile'] //弹层
,layim: layui['layim-mobile'] //WebIM
});
});