embed.js 306 B

1234567891011121314151617
  1. //LayUI
  2. layui.use('element',function(){
  3. var element = layui.element;
  4. });
  5. //免责声明
  6. function statement() {
  7. layui.use('layer', function(){
  8. var layer = layui.layer;
  9. layer.open({
  10. title: '免责声明',
  11. type:2,
  12. area: ['600px', '500'],
  13. content: "tpl/statement.html"
  14. });
  15. });
  16. }