common.js 372 B

12345678910111213141516
  1. /**
  2. * 素材库
  3. * @param type
  4. */
  5. function material(type){
  6. layui.use(['layer'], function() {
  7. layer.open({
  8. type: 2,
  9. title: "素材库",
  10. area: ['890px', '700px'],
  11. fixed: false, //不固定
  12. maxmin: false,
  13. content: ns.url("wechat://shop/material/material", {type: type})
  14. })
  15. })
  16. }