detail.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view class="content ">
  3. <view class="flex-center">
  4. <image class="bannerImg" src="../../static/image/qybanner.jpg" mode="widthFix"></image>
  5. </view>
  6. <view class="flex">
  7. <image class="qun" src="../../static/image/teimImg.jpg" mode="widthFix"></image>
  8. </view>
  9. <view class="flex-center">
  10. <image class="shareImg" show-menu-by-longpress src="../../static/image/qyweichat.jpg" mode="scaleToFill"></image>
  11. </view>
  12. <view class="buttom">
  13. 长按二维码识别加入群聊
  14. </view>
  15. <view class="footerTottom">
  16. 更多社群福利
  17. </view>
  18. <view class="flex footerBox">
  19. <view class="item">
  20. <view class="line1">
  21. 实时领取母婴
  22. </view>
  23. <view class="line1">
  24. 最新技能资料
  25. </view>
  26. <view class="lineJg"></view>
  27. <view class="titleItem">
  28. 线上新技能
  29. </view>
  30. </view>
  31. <view class="item">
  32. <view class="line1">
  33. 全国参加举办
  34. </view>
  35. <view class="line1">
  36. 母婴工作交流会
  37. </view>
  38. <view class="lineJg"></view>
  39. <view class="titleItem">
  40. 线下工友会
  41. </view>
  42. </view>
  43. <view class="item">
  44. <view class="line1">
  45. 领取母婴品牌
  46. </view>
  47. <view class="line1">
  48. 厂家福利产品
  49. </view>
  50. <view class="lineJg"></view>
  51. <view class="titleItem">
  52. 母婴心福利
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </template>
  58. <script>
  59. import {
  60. mapState,
  61. mapMutations
  62. } from 'vuex';
  63. import {
  64. getUser
  65. } from '@/api/user.js';
  66. import { getCourseList,recommend } from "@/api/index.js"
  67. export default {
  68. data() {
  69. return {
  70. };
  71. },
  72. onLoad(opt) {
  73. },
  74. onShow() {
  75. },
  76. onReachBottom() {
  77. },
  78. methods: {
  79. }
  80. };
  81. </script>
  82. <style lang="scss" scoped>
  83. .qun{
  84. width: 600rpx;
  85. }
  86. .footerBox{
  87. padding: 30rpx 50rpx;
  88. color: #FFF;
  89. line-height: 1;
  90. .item{
  91. background-color:rgb(55,175,165) ;
  92. border-radius: 30rpx;
  93. padding: 40rpx 5rpx;
  94. width: 200rpx;
  95. .line1{
  96. font-size: 24rpx;
  97. padding:10rpx 0rpx;
  98. }
  99. .lineJg{
  100. height: 10rpx;
  101. background-color: #FFF;
  102. margin: 20rpx 0 30rpx 0;
  103. }
  104. .titleItem{
  105. font-size: 32rpx;
  106. font-weight: bold;
  107. padding-bottom: 10rpx;
  108. }
  109. }
  110. }
  111. .footerTottom{
  112. color: rgb(251,104,159);
  113. font-size: 32rpx;
  114. font-weight: bold;
  115. text-align-last: left;
  116. padding-left: 50rpx;
  117. }
  118. .buttom{
  119. padding: 30rpx 50rpx;
  120. margin: 50rpx 50rpx;
  121. background-image: linear-gradient(to right,rgb(239,132,43),rgb(244,153,60));
  122. border-radius: 100rpx;
  123. font-weight: bold;
  124. font-size: 40rpx;
  125. color: #FFF;
  126. }
  127. .bannerImg{
  128. width: 750rpx;
  129. }
  130. .content{
  131. background-color: #FFF;
  132. text-align: center;
  133. min-height: 100vh;
  134. }
  135. .shareImg{
  136. width: 350rpx;
  137. height: 350rpx;
  138. margin: 50rpx 0;
  139. }
  140. </style>