popup.js 562 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import message from './message.js';
  2. // 定义 type 类型:弹出类型:top/bottom/center
  3. const config = {
  4. // 顶部弹出
  5. top:'top',
  6. // 底部弹出
  7. bottom:'bottom',
  8. // 居中弹出
  9. center:'center',
  10. // 消息提示
  11. message:'top',
  12. // 对话框
  13. dialog:'center',
  14. // 分享
  15. share:'bottom',
  16. //列表
  17. list:'bottom',
  18. confirm:'center',
  19. //列表
  20. address:'bottom',
  21. //列表
  22. qiang:'center',
  23. //列表
  24. form:'center',
  25. //图片列表
  26. img:'center',
  27. alert:'center',
  28. }
  29. export default {
  30. data(){
  31. return {
  32. config:config
  33. }
  34. },
  35. mixins: [message],
  36. }