You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
698 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* layui 项目的全局配置
*
*/
layui.config({
//dir: '/res/layui/', //layui.js 所在路径(注意,如果是 script 单独引入 layui.js无需设定该参数。一般情况下可以无视
version: false, //一般用于更新模块缓存,默认不开启。设为 true 即让浏览器不缓存。也可以设为一个固定的值201610
debug: false, //用于开启调试模式,默认 false如果设为 true则JS模块的节点会保留在页面
base: '/ayq/modules/', //设定扩展的 layui 模块的所在目录,一般用于外部模块扩展
}).use(['layer'],function(){
var $ = layui.jquery;
var layer = layui.layer;
});