aboutUS.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <template>
  2. <view class="box">
  3. <view class="contBox" v-html="detail">
  4. </view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. components: {
  10. },
  11. data() {
  12. return {
  13. detail:'',
  14. unionID:'',
  15. }
  16. },
  17. onLoad(opt) {
  18. this.unionID=opt.unionID
  19. this.getExplain();
  20. },
  21. onShow() {
  22. },
  23. methods: {
  24. getExplain(){
  25. uni.showLoading({
  26. title: '加载中'
  27. })
  28. this.$http('miniApp2/sys/getAboutUS', {
  29. unionID:this.unionID
  30. }, 'GET').then(res => {
  31. uni.hideLoading();
  32. this.detail = res.data
  33. //console.log('list+=', this.queryShopList);
  34. })
  35. },
  36. }
  37. }
  38. </script>
  39. <style scoped lang="less">
  40. .box {
  41. width: 100vw;
  42. min-height: 100vh;
  43. background: #F4F5F7;
  44. }
  45. .contBox{
  46. padding: 20rpx 24rpx;
  47. }
  48. .top{
  49. background: #FFFFFF;
  50. border-radius: 10rpx;
  51. padding: 24rpx 20rpx;
  52. display: flex;
  53. justify-content: space-between;
  54. }
  55. .topLeftTitle{
  56. font-size: 30rpx;
  57. font-family: PingFangSC-Medium, PingFang SC;
  58. font-weight: 500;
  59. color: #333333;
  60. }
  61. .topLeftNum{
  62. font-size: 40rpx;
  63. font-family: PingFangSC-Semibold, PingFang SC;
  64. font-weight: 600;
  65. color: #FF0000;
  66. padding-top: 24rpx;
  67. }
  68. .topRight{
  69. width: 138rpx;
  70. height: 64rpx;
  71. background: #FF0000;
  72. border-radius: 10rpx;
  73. line-height: 64rpx;
  74. text-align: center;
  75. color: #FFFFFF;
  76. font-size: 28rpx;
  77. margin-top: 34rpx;
  78. }
  79. .xffl{
  80. background: #FFFFFF;
  81. margin-top: 20rpx;
  82. padding: 20rpx;
  83. }
  84. .xfflTitle{
  85. font-size: 30rpx;
  86. font-family: PingFangSC-Medium, PingFang SC;
  87. font-weight: 500;
  88. color: #333333;
  89. }
  90. .xfflLine{
  91. display: flex;
  92. justify-content: space-between;
  93. font-size: 24rpx;
  94. font-family: PingFangSC-Regular, PingFang SC;
  95. font-weight: 400;
  96. color: #333333;
  97. line-height: 33rpx;
  98. padding: 15rpx 0;
  99. }
  100. .xfflyq{
  101. width: 10rpx;
  102. height: 10rpx;
  103. background: #D53533;
  104. border-radius: 50%;
  105. margin-top: 12rpx;
  106. margin-right: 14rpx;
  107. }
  108. .xfflyq2{
  109. width: 10rpx;
  110. height: 10rpx;
  111. background: #3F90F7;
  112. border-radius: 50%;
  113. margin-top: 12rpx;
  114. margin-right: 14rpx;
  115. }
  116. .xfflyq3{
  117. width: 10rpx;
  118. height: 10rpx;
  119. background: #FF4F00;
  120. border-radius: 50%;
  121. margin-top: 12rpx;
  122. margin-right: 14rpx;
  123. }
  124. .xfflyq4{
  125. width: 10rpx;
  126. height: 10rpx;
  127. background: #6F2BE8;
  128. border-radius: 50%;
  129. margin-top: 12rpx;
  130. margin-right: 14rpx;
  131. }
  132. .xfflLineLeft{
  133. display: flex;
  134. }
  135. .xfflLineM{
  136. width: 200rpx;
  137. text-align: center;
  138. }
  139. .xfflLineR{
  140. width: 200rpx;
  141. text-align: right;
  142. }
  143. .lineLeftImg{
  144. width: 34rpx;
  145. height: 34rpx;
  146. }
  147. .lineLeftTxt{
  148. color: #333333;font-size: 28rpx;line-height: 34rpx;padding-left: 24rpx;
  149. }
  150. .lineRIghtNUm{
  151. color: #666666;font-size: 28rpx;line-height: 34rpx;padding-right: 16rpx;
  152. }
  153. .lineRightImg{
  154. width: 12rpx;
  155. height: 20rpx;
  156. margin-top: 7rpx;
  157. }
  158. .lineBox{
  159. background: #FFFFFF;width: 702rpx;margin-top: 20rpx;
  160. }
  161. .line{
  162. display: flex;
  163. justify-content: space-between;
  164. padding: 38rpx 32rpx;
  165. }
  166. .lineLeft{
  167. display: flex;
  168. }
  169. .lineRight{
  170. display: flex;
  171. }
  172. .smImg{
  173. width: 30rpx;height: 30rpx;
  174. }
  175. .smTxt{
  176. font-size: 28rpx;
  177. font-family: PingFangSC-Regular, PingFang SC;
  178. font-weight: 400;
  179. color: #999999;
  180. line-height: 30rpx;
  181. padding-left: 5rpx;
  182. }
  183. .smBox{
  184. display: flex;
  185. justify-content: center;
  186. padding-top: 30rpx;
  187. }
  188. </style>