App.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <script>
  2. export default {
  3. // 此处globalData为了演示其作用,不是uView框架的一部分
  4. globalData: {
  5. // redirect_uri: 'http://dwbszbs.dev.xmnk.cn',
  6. redirect_uri:'https://zbs.xueyousuohuo.cn',
  7. // appid: 'wx5224793b7dc7f7b7',
  8. appid: 'wx5eeae5f7b832b782', //大卫博士
  9. wxURL: 'https://open.weixin.qq.com/connect/oauth2/authorize',
  10. jinbiAudio: 'http://dwbszbs.dev.xmnk.cn/storage/good/2024-11-06/21wUbDdwzJC81UQEFJt0yLTZcswq6Q1t.mp3',
  11. hjAudio: 'http://dwbszbs.dev.xmnk.cn/storage/good/2024-11-06/gMlFSFkuwox7CrdtOBoWLFBS3D2u7Q07.MP3'
  12. },
  13. onLaunch() {
  14. },
  15. }
  16. </script>
  17. <style lang="scss">
  18. body {
  19. padding-bottom: constant(safe-area-inset-bottom);
  20. padding-bottom: env(safe-area-inset-bottom);
  21. }
  22. @import "uview-ui/index.scss";
  23. @import "common/demo.scss";
  24. .empty_image {
  25. margin-top: 10vh;
  26. }
  27. .flexV {
  28. display: flex;
  29. align-items: center;
  30. }
  31. .flexC {
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. }
  36. .flexS {
  37. display: flex;
  38. align-items: center;
  39. justify-content: flex-start;
  40. }
  41. .flexSS {
  42. display: flex;
  43. align-items: flex-start;
  44. justify-content: flex-start;
  45. }
  46. .flexE {
  47. display: flex;
  48. align-items: center;
  49. justify-content: flex-end;
  50. }
  51. .flexA {
  52. display: flex;
  53. justify-content: space-around;
  54. align-items: center;
  55. }
  56. .flexB {
  57. display: flex;
  58. justify-content: space-between;
  59. align-items: center;
  60. }
  61. .flexBS {
  62. display: flex;
  63. justify-content: space-between;
  64. align-items: flex-start;
  65. }
  66. .flexCC {
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: center;
  70. align-items: center;
  71. }
  72. .bottom {
  73. position: fixed;
  74. width: 100%;
  75. left: 0;
  76. bottom: 0;
  77. padding: 15px 0;
  78. background-color: #ffffff;
  79. .bottom-btn {
  80. border-radius: 22px;
  81. height: 44px;
  82. margin: 0 12px;
  83. text-align: center;
  84. color: #ffffff;
  85. font-size: 16px;
  86. line-height: 44px;
  87. background: linear-gradient(90deg, #FFB800 0%, #FE4815 100%);
  88. }
  89. }
  90. </style>