更新fastjson版本
放弃vue,改回layui
2
pom.xml
@ -73,7 +73,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba</groupId>
|
<groupId>com.alibaba</groupId>
|
||||||
<artifactId>fastjson</artifactId>
|
<artifactId>fastjson</artifactId>
|
||||||
<version>1.2.66</version>
|
<version>1.2.67</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
21
web/.gitignore
vendored
@ -1,21 +0,0 @@
|
|||||||
.DS_Store
|
|
||||||
node_modules
|
|
||||||
/dist
|
|
||||||
|
|
||||||
# local env files
|
|
||||||
.env.local
|
|
||||||
.env.*.local
|
|
||||||
|
|
||||||
# Log files
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.idea
|
|
||||||
.vscode
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
@ -1,24 +0,0 @@
|
|||||||
# testweb
|
|
||||||
|
|
||||||
## Project setup
|
|
||||||
```
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
### Compiles and hot-reloads for development
|
|
||||||
```
|
|
||||||
npm run serve
|
|
||||||
```
|
|
||||||
|
|
||||||
### Compiles and minifies for production
|
|
||||||
```
|
|
||||||
npm run build
|
|
||||||
```
|
|
||||||
|
|
||||||
### Lints and fixes files
|
|
||||||
```
|
|
||||||
npm run lint
|
|
||||||
```
|
|
||||||
|
|
||||||
### Customize configuration
|
|
||||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
@ -1,5 +0,0 @@
|
|||||||
module.exports = {
|
|
||||||
presets: [
|
|
||||||
'@vue/cli-plugin-babel/preset'
|
|
||||||
]
|
|
||||||
}
|
|
21
web/html/body/nas.html
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||||
|
<title>NAS</title>
|
||||||
|
<link rel="stylesheet" href="/layui/css/layui.css">
|
||||||
|
</head>
|
||||||
|
<body class="layui-layout-body">
|
||||||
|
|
||||||
|
<script src="/layui/layui.js"></script>
|
||||||
|
<script>
|
||||||
|
layui.use(['layer', 'form', 'element'], function () {
|
||||||
|
var layer = layui.layer
|
||||||
|
, form = layui.form;
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
68
web/index.html
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||||
|
<title>控制中心</title>
|
||||||
|
<link rel="stylesheet" href="../layui/css/layui.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="layui-layout layui-layout-admin">
|
||||||
|
<div class="layui-header">
|
||||||
|
<ul class="layui-nav layui-bg-blue" lay-filter="">
|
||||||
|
<li class="layui-nav-item"><a href="http://blog.yutou233.cn">博客</a></li>
|
||||||
|
<div id="admin" style="display: inline-block; font-size: 0px;">
|
||||||
|
<li class="layui-nav-item"><a href="javascript:;">NAS管理</a>
|
||||||
|
<dl class="layui-nav-child">
|
||||||
|
<dd><a href="#">查看NAS IP</a></dd>
|
||||||
|
<dd><a href="#">B站直播管理</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</div>
|
||||||
|
<li class="layui-nav-item" id='icon'>
|
||||||
|
<a href=""><img src="//t.cn/RCzsdCq" class="layui-nav-img">登录</a>
|
||||||
|
<dl class="layui-nav-child">
|
||||||
|
<dd><a href="javascript:;">修改信息</a></dd>
|
||||||
|
<dd><a href="javascript:;">安全管理</a></dd>
|
||||||
|
<dd><a href="javascript:;">退了</a></dd>
|
||||||
|
</dl>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="layui-body" style="left: 0px;">
|
||||||
|
<iframe src="../html/body/nas.html" width="100%" height="99%" frameborder="no" ></iframe>
|
||||||
|
</div>
|
||||||
|
<div class="layui-footer" style="left: 0px; text-align: center; height: 60px; line-height: 0;" >
|
||||||
|
<div style="line-height: 44px;">
|
||||||
|
©2020 by yutou
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<a href="#">湘ICP备16005656号</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="../layui/layui.js"></script>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
layui.use(['layer', 'form', 'element'], function () {
|
||||||
|
var layer = layui.layer
|
||||||
|
, form = layui.form;
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
#icon {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.body{
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
2
web/layui/css/layui.css
Normal file
2
web/layui/css/layui.mobile.css
Normal file
2
web/layui/css/modules/code.css
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/** layui-v2.5.6 MIT License By https://www.layui.com */
|
||||||
|
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
|
2
web/layui/css/modules/laydate/default/laydate.css
Normal file
BIN
web/layui/css/modules/layer/default/icon-ext.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
web/layui/css/modules/layer/default/icon.png
Normal file
After Width: | Height: | Size: 11 KiB |
2
web/layui/css/modules/layer/default/layer.css
Normal file
BIN
web/layui/css/modules/layer/default/loading-0.gif
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
web/layui/css/modules/layer/default/loading-1.gif
Normal file
After Width: | Height: | Size: 701 B |
BIN
web/layui/css/modules/layer/default/loading-2.gif
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
web/layui/font/iconfont.eot
Normal file
554
web/layui/font/iconfont.svg
Normal file
After Width: | Height: | Size: 299 KiB |
BIN
web/layui/font/iconfont.ttf
Normal file
BIN
web/layui/font/iconfont.woff
Normal file
BIN
web/layui/font/iconfont.woff2
Normal file
BIN
web/layui/images/face/0.gif
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
web/layui/images/face/1.gif
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
web/layui/images/face/10.gif
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
web/layui/images/face/11.gif
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
web/layui/images/face/12.gif
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
web/layui/images/face/13.gif
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
web/layui/images/face/14.gif
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
web/layui/images/face/15.gif
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
web/layui/images/face/16.gif
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
web/layui/images/face/17.gif
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
web/layui/images/face/18.gif
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
web/layui/images/face/19.gif
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
web/layui/images/face/2.gif
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
web/layui/images/face/20.gif
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
web/layui/images/face/21.gif
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
web/layui/images/face/22.gif
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
web/layui/images/face/23.gif
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
web/layui/images/face/24.gif
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
web/layui/images/face/25.gif
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
web/layui/images/face/26.gif
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
web/layui/images/face/27.gif
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
web/layui/images/face/28.gif
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
web/layui/images/face/29.gif
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
web/layui/images/face/3.gif
Normal file
After Width: | Height: | Size: 3.9 KiB |
BIN
web/layui/images/face/30.gif
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
web/layui/images/face/31.gif
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
web/layui/images/face/32.gif
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
web/layui/images/face/33.gif
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
web/layui/images/face/34.gif
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
web/layui/images/face/35.gif
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
web/layui/images/face/36.gif
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
web/layui/images/face/37.gif
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
web/layui/images/face/38.gif
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
web/layui/images/face/39.gif
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
web/layui/images/face/4.gif
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
web/layui/images/face/40.gif
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
web/layui/images/face/41.gif
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
web/layui/images/face/42.gif
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
web/layui/images/face/43.gif
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
web/layui/images/face/44.gif
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
web/layui/images/face/45.gif
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
web/layui/images/face/46.gif
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
web/layui/images/face/47.gif
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
web/layui/images/face/48.gif
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
web/layui/images/face/49.gif
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
web/layui/images/face/5.gif
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
web/layui/images/face/50.gif
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
web/layui/images/face/51.gif
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
web/layui/images/face/52.gif
Normal file
After Width: | Height: | Size: 777 B |
BIN
web/layui/images/face/53.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
web/layui/images/face/54.gif
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
web/layui/images/face/55.gif
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
web/layui/images/face/56.gif
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
web/layui/images/face/57.gif
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
web/layui/images/face/58.gif
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
web/layui/images/face/59.gif
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
web/layui/images/face/6.gif
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
web/layui/images/face/60.gif
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
web/layui/images/face/61.gif
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
web/layui/images/face/62.gif
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
web/layui/images/face/63.gif
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
web/layui/images/face/64.gif
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
web/layui/images/face/65.gif
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
web/layui/images/face/66.gif
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
web/layui/images/face/67.gif
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
web/layui/images/face/68.gif
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
web/layui/images/face/69.gif
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
web/layui/images/face/7.gif
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
web/layui/images/face/70.gif
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
web/layui/images/face/71.gif
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
web/layui/images/face/8.gif
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
web/layui/images/face/9.gif
Normal file
After Width: | Height: | Size: 4.1 KiB |
2
web/layui/lay/modules/carousel.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/** layui-v2.5.6 MIT License By https://www.layui.com */
|
||||||
|
;layui.define("jquery",function(e){"use strict";var i=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var n=this;return n.config=i.extend({},n.config,e),n},on:function(e,i){return layui.onevent.call(this,t,e,i)}}),t="carousel",a="layui-this",l=">*[carousel-item]>*",o="layui-carousel-left",r="layui-carousel-right",d="layui-carousel-prev",s="layui-carousel-next",u="layui-carousel-arrow",c="layui-carousel-ind",m=function(e){var t=this;t.config=i.extend({},t.config,n.config,e),t.render()};m.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},m.prototype.render=function(){var e=this,n=e.config;n.elem=i(n.elem),n.elem[0]&&(e.elemItem=n.elem.find(l),n.index<0&&(n.index=0),n.index>=e.elemItem.length&&(n.index=e.elemItem.length-1),n.interval<800&&(n.interval=800),n.full?n.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):n.elem.css({width:n.width,height:n.height}),n.elem.attr("lay-anim",n.anim),e.elemItem.eq(n.index).addClass(a),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},m.prototype.reload=function(e){var n=this;clearInterval(n.timer),n.config=i.extend({},n.config,e),n.render()},m.prototype.prevIndex=function(){var e=this,i=e.config,n=i.index-1;return n<0&&(n=e.elemItem.length-1),n},m.prototype.nextIndex=function(){var e=this,i=e.config,n=i.index+1;return n>=e.elemItem.length&&(n=0),n},m.prototype.addIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index+e,n.index>=i.elemItem.length&&(n.index=0)},m.prototype.subIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index-e,n.index<0&&(n.index=i.elemItem.length-1)},m.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(clearInterval(e.timer),e.timer=setInterval(function(){e.slide()},i.interval))},m.prototype.arrow=function(){var e=this,n=e.config,t=i(['<button class="layui-icon '+u+'" lay-type="sub">'+("updown"===n.anim?"":"")+"</button>",'<button class="layui-icon '+u+'" lay-type="add">'+("updown"===n.anim?"":"")+"</button>"].join(""));n.elem.attr("lay-arrow",n.arrow),n.elem.find("."+u)[0]&&n.elem.find("."+u).remove(),n.elem.append(t),t.on("click",function(){var n=i(this),t=n.attr("lay-type");e.slide(t)})},m.prototype.indicator=function(){var e=this,n=e.config,t=e.elemInd=i(['<div class="'+c+'"><ul>',function(){var i=[];return layui.each(e.elemItem,function(e){i.push("<li"+(n.index===e?' class="layui-this"':"")+"></li>")}),i.join("")}(),"</ul></div>"].join(""));n.elem.attr("lay-indicator",n.indicator),n.elem.find("."+c)[0]&&n.elem.find("."+c).remove(),n.elem.append(t),"updown"===n.anim&&t.css("margin-top",-(t.height()/2)),t.find("li").on("hover"===n.trigger?"mouseover":n.trigger,function(){var t=i(this),a=t.index();a>n.index?e.slide("add",a-n.index):a<n.index&&e.slide("sub",n.index-a)})},m.prototype.slide=function(e,i){var n=this,l=n.elemItem,u=n.config,c=u.index,m=u.elem.attr("lay-filter");n.haveSlide||("sub"===e?(n.subIndex(i),l.eq(u.index).addClass(d),setTimeout(function(){l.eq(c).addClass(r),l.eq(u.index).addClass(r)},50)):(n.addIndex(i),l.eq(u.index).addClass(s),setTimeout(function(){l.eq(c).addClass(o),l.eq(u.index).addClass(o)},50)),setTimeout(function(){l.removeClass(a+" "+d+" "+s+" "+o+" "+r),l.eq(u.index).addClass(a),n.haveSlide=!1},300),n.elemInd.find("li").eq(u.index).addClass(a).siblings().removeClass(a),n.haveSlide=!0,layui.event.call(this,t,"change("+m+")",{index:u.index,prevIndex:c,item:l.eq(u.index)}))},m.prototype.events=function(){var e=this,i=e.config;i.elem.data("haveEvents")||(i.elem.on("mouseenter",function(){clearInterval(e.timer)}).on("mouseleave",function(){e.autoplay()}),i.elem.data("haveEvents",!0))},n.render=function(e){var i=new m(e);return i},e(t,n)});
|
2
web/layui/lay/modules/code.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/** layui-v2.5.6 MIT License By https://www.layui.com */
|
||||||
|
;layui.define("jquery",function(e){"use strict";var a=layui.$,l="http://www.layui.com/doc/modules/code.html";e("code",function(e){var t=[];e=e||{},e.elem=a(e.elem||".layui-code"),e.about=!("about"in e)||e.about,e.elem.each(function(){t.push(this)}),layui.each(t.reverse(),function(t,i){var c=a(i),o=c.html();(c.attr("lay-encode")||e.encode)&&(o=o.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/'/g,"'").replace(/"/g,""")),c.html('<ol class="layui-code-ol"><li>'+o.replace(/[\r\t\n]+/g,"</li><li>")+"</li></ol>"),c.find(">.layui-code-h3")[0]||c.prepend('<h3 class="layui-code-h3">'+(c.attr("lay-title")||e.title||"code")+(e.about?'<a href="'+l+'" target="_blank">layui.code</a>':"")+"</h3>");var d=c.find(">.layui-code-ol");c.addClass("layui-box layui-code-view"),(c.attr("lay-skin")||e.skin)&&c.addClass("layui-code-"+(c.attr("lay-skin")||e.skin)),(d.find("li").length/100|0)>0&&d.css("margin-left",(d.find("li").length/100|0)+"px"),(c.attr("lay-height")||e.height)&&d.css("max-height",c.attr("lay-height")||e.height)})})}).addcss("modules/code.css","skincodecss");
|
2
web/layui/lay/modules/colorpicker.js
Normal file
2
web/layui/lay/modules/element.js
Normal file
2
web/layui/lay/modules/flow.js
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/** layui-v2.5.6 MIT License By https://www.layui.com */
|
||||||
|
;layui.define("jquery",function(e){"use strict";var l=layui.$,o=function(e){},t='<i class="layui-anim layui-anim-rotate layui-anim-loop layui-icon "></i>';o.prototype.load=function(e){var o,i,n,r,a=this,c=0;e=e||{};var f=l(e.elem);if(f[0]){var m=l(e.scrollElem||document),u=e.mb||50,s=!("isAuto"in e)||e.isAuto,v=e.end||"没有更多了",y=e.scrollElem&&e.scrollElem!==document,d="<cite>加载更多</cite>",h=l('<div class="layui-flow-more"><a href="javascript:;">'+d+"</a></div>");f.find(".layui-flow-more")[0]||f.append(h);var p=function(e,t){e=l(e),h.before(e),t=0==t||null,t?h.html(v):h.find("a").html(d),i=t,o=null,n&&n()},g=function(){o=!0,h.find("a").html(t),"function"==typeof e.done&&e.done(++c,p)};if(g(),h.find("a").on("click",function(){l(this);i||o||g()}),e.isLazyimg)var n=a.lazyimg({elem:e.elem+" img",scrollElem:e.scrollElem});return s?(m.on("scroll",function(){var e=l(this),t=e.scrollTop();r&&clearTimeout(r),!i&&f.width()&&(r=setTimeout(function(){var i=y?e.height():l(window).height(),n=y?e.prop("scrollHeight"):document.documentElement.scrollHeight;n-t-i<=u&&(o||g())},100))}),a):a}},o.prototype.lazyimg=function(e){var o,t=this,i=0;e=e||{};var n=l(e.scrollElem||document),r=e.elem||"img",a=e.scrollElem&&e.scrollElem!==document,c=function(e,l){var o=n.scrollTop(),r=o+l,c=a?function(){return e.offset().top-n.offset().top+o}():e.offset().top;if(c>=o&&c<=r&&!e.attr("src")){var m=e.attr("lay-src");layui.img(m,function(){var l=t.lazyimg.elem.eq(i);e.attr("src",m).removeAttr("lay-src"),l[0]&&f(l),i++})}},f=function(e,o){var f=a?(o||n).height():l(window).height(),m=n.scrollTop(),u=m+f;if(t.lazyimg.elem=l(r),e)c(e,f);else for(var s=0;s<t.lazyimg.elem.length;s++){var v=t.lazyimg.elem.eq(s),y=a?function(){return v.offset().top-n.offset().top+m}():v.offset().top;if(c(v,f),i=s,y>u)break}};if(f(),!o){var m;n.on("scroll",function(){var e=l(this);m&&clearTimeout(m),m=setTimeout(function(){f(null,e)},50)}),o=!0}return f},e("flow",new o)});
|