App.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <script>
  2. export default {
  3. globalData: {
  4. isShow: 0
  5. },
  6. onLaunch: function() {
  7. // #ifdef H5
  8. var script = document.createElement('script');
  9. // script.src = "http://117.73.3.171:88/qlgh/static/js/qlgh_client_sdk.js";//测试
  10. script.src = "https://qlgh.sdgh.org.cn/qlgh/static/js/qlgh_client_sdk.js";//正式
  11. document.head.appendChild(script);
  12. // #endif
  13. uni.$u.http.post('/api/Publics/config_info').then(res => {
  14. if(res.code==1){
  15. this.globalData.isShow=res.data.applet_switch
  16. }
  17. })
  18. },
  19. onShow: function() {
  20. console.log('App Show')
  21. },
  22. onHide: function() {
  23. console.log('App Hide')
  24. }
  25. }
  26. </script>
  27. <style lang="scss">
  28. /*每个页面公共css */
  29. .bg{
  30. position: fixed;
  31. width: 100vw;
  32. height: 100vh;
  33. z-index: -1;
  34. }
  35. @import "@/uni_modules/uview-ui/index.scss";
  36. @import "common/demo.scss";
  37. page {
  38. background-color:#fff;
  39. }
  40. /* 横向靠左 */
  41. .all-row-start {
  42. display: flex;
  43. flex-direction: row;
  44. align-items: center;
  45. justify-content: flex-start;
  46. }
  47. /* 横向靠右 */
  48. .all-row-end {
  49. display: flex;
  50. flex-direction: row;
  51. align-items: center;
  52. justify-content: flex-end;
  53. }
  54. /* 横向居中 */
  55. .all-row-center {
  56. display: flex;
  57. flex-direction: row;
  58. align-items: center;
  59. justify-content: center;
  60. }
  61. /* 纵向靠上 */
  62. .all-col-start {
  63. display: flex;
  64. flex-direction: column;
  65. align-items: center;
  66. justify-content: flex-start;
  67. }
  68. /* 纵向靠下 */
  69. .all-col-end {
  70. display: flex;
  71. flex-direction: column;
  72. align-items: center;
  73. justify-content: flex-end;
  74. }
  75. /* 纵向居中 */
  76. .all-col-center {
  77. display: flex;
  78. flex-direction: column;
  79. align-items: center;
  80. justify-content: center;
  81. }
  82. .u-flex {
  83. /* #ifndef APP-NVUE */
  84. display: flex;
  85. /* #endif */
  86. flex-direction: row;
  87. align-items: center;
  88. }
  89. .u-warp{
  90. flex-wrap: wrap;
  91. }
  92. .u-flex-col {
  93. /* #ifndef APP-NVUE */
  94. display: flex;
  95. /* #endif */
  96. flex-direction: column;
  97. align-items: center;
  98. }
  99. .u-flex-wrap {
  100. flex-wrap: wrap;
  101. }
  102. .u-flex-nowrap {
  103. flex-wrap: nowrap;
  104. }
  105. .u-col-center {
  106. align-items: center;
  107. }
  108. .u-col-top {
  109. align-items: flex-start;
  110. }
  111. .u-col-bottom {
  112. align-items: flex-end;
  113. }
  114. .u-row-center {
  115. justify-content: center;
  116. }
  117. .u-row-left {
  118. justify-content: flex-start;
  119. }
  120. .u-row-right {
  121. justify-content: flex-end;
  122. }
  123. .u-row-between {
  124. justify-content: space-between;
  125. }
  126. .u-row-around {
  127. justify-content: space-around;
  128. }
  129. </style>