App.vue 784 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <script>
  2. window.SITE_CONFIG = {};
  3. window.SITE_CONFIG["dictList"] = [];
  4. import Api from "./@/http/Api.js";
  5. export default {
  6. data() {
  7. return {
  8. // globalData: {},
  9. }
  10. },
  11. methods:{
  12. getDictAll() {
  13. Api.getDictList().then((res) => {
  14. console.log(res)
  15. window.SITE_CONFIG["dictList"] = res.data;
  16. });
  17. },
  18. },
  19. onLaunch: function() {
  20. // 获取字典列表, 添加并全局变量保存
  21. this.getDictAll();
  22. },
  23. onShow: function() {
  24. console.log('App Show')
  25. },
  26. onHide: function() {
  27. console.log('App Hide')
  28. }
  29. }
  30. </script>
  31. <style lang="scss">
  32. /*每个页面公共css */
  33. @import "@/uni_modules/uview-ui/index.scss";
  34. uni-page-body,html,body{
  35. height: 100%;
  36. width: 750rpx;
  37. background: #F6F6F6;
  38. }
  39. </style>