1234567891011121314151617 |
- //LayUI
- layui.use('element',function(){
- var element = layui.element;
- });
- //免责声明
- function statement() {
- layui.use('layer', function(){
- var layer = layui.layer;
- layer.open({
- title: '免责声明',
- type:2,
- area: ['600px', '500'],
- content: "tpl/statement.html"
- });
- });
- }
|