index.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <view class="content">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="top">
  5. <!-- <image src="../../static/logo.png" mode="aspectFill"></image> -->
  6. <image src="../../static/yym/Rectangle25.png" mode="aspectFill"></image>
  7. </view>
  8. <viewX-Case class="mid">
  9. <template #title>
  10. <view class="title">精选活动</view>
  11. </template>
  12. <template #lookMore>
  13. <view class="lookMore" @click="gotoActivity">查看更多</view>
  14. </template>
  15. <template #activeBlock>
  16. <view class="activeData" @click="gotoActivityDetail" v-for="i in 5" :key="i">
  17. <image src="../../static/resource/jqr.png" mode="aspectFill"></image>
  18. <view class="activeTit">
  19. 查看更多查看更多查看更多查看更多查看更多查看更多查看更多看更多查看更多查看更多查看更多查看更多看更多查看更多查看更多查看更多查看更多
  20. <!-- <slot name="activeTit"></slot> -->
  21. </view>
  22. <view class="numData">
  23. <view class="proNum">74报名</view>
  24. <view class="price">¥299</view>
  25. </view>
  26. <button class="btn" @click.stop="gotoHd">立即报名</button>
  27. </view>
  28. </template>
  29. </viewX-Case>
  30. <viewX-Case>
  31. <template #title>
  32. <view class="title">教研室活动</view>
  33. </template>
  34. <template #lookMore>
  35. <view class="lookMore" @click="teachmore">查看更多</view>
  36. </template>
  37. <template #teaching>
  38. <teaching-case v-for="i in 10" :key="i"></teaching-case>
  39. </template>
  40. </viewX-Case>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. data() {
  46. return {
  47. title: 'Hello',
  48. navBarData:{
  49. title:'首页', //导航栏标题
  50. btn:0 //是否显示返回按钮 0不显示 1 显示
  51. }
  52. }
  53. },
  54. onLoad() {
  55. },
  56. methods: {
  57. teachmore(){
  58. uni.navigateTo({
  59. url:"/pages/teachingList/teachingList"
  60. })
  61. },
  62. gotoTeDetail(){
  63. uni.navigateTo({
  64. url:"/pages/teachingDetail/teachingDetail"
  65. })
  66. },
  67. gotoActivity(){
  68. uni.navigateTo({
  69. url:"/pages/activityList/activityList"
  70. })
  71. },
  72. gotoActivityDetail(){
  73. uni.navigateTo({
  74. url:'/pages/activityDetail/activityDetail'
  75. })
  76. },
  77. gotoHd(){
  78. uni.navigateTo({
  79. url:'/pages/hd/hd'
  80. })
  81. }
  82. }
  83. }
  84. </script>
  85. <style lang="scss" scoped>
  86. .content {
  87. // background-color: ;
  88. // background-color: #f0f2f5;
  89. .top{
  90. width: 750rpx;
  91. height: 150px;
  92. display: flex;
  93. align-items: center;
  94. background-color: #fff;
  95. justify-content: center;
  96. image{
  97. height: 130px;
  98. width: 700rpx;
  99. border-radius: 10px;
  100. }
  101. }
  102. .mid{
  103. margin: 20px 0;
  104. .activeData{
  105. width: 290rpx;
  106. display: inline-block;
  107. padding-right: 20rpx;
  108. image{
  109. width: 100%;
  110. height: 80px;
  111. border-radius: 10px;
  112. margin-bottom: 10px;
  113. }
  114. .activeTit{
  115. // width: 100rpx;
  116. // overflow:hidden;
  117. // text-overflow:ellipsis;
  118. white-space:normal;
  119. /*隐藏溢出*/
  120. /*当文本溢出包含元素时显示省略符号来代表被修剪的文本*/
  121. /*规定段落中的文本不进行换行*/
  122. display: -webkit-box;
  123. word-break: break-all;
  124. text-overflow: ellipsis;
  125. overflow: hidden;
  126. -webkit-box-orient: vertical;
  127. -webkit-line-clamp:2;/*设置 需要显示的行数*/
  128. }
  129. .numData{
  130. display: flex;
  131. justify-content: space-between;
  132. align-items: flex-end;
  133. .proNum{
  134. color: #999999;
  135. font-size: 14px;
  136. }
  137. .price{
  138. color: #f68717;
  139. font-size: 18px;
  140. }
  141. }
  142. .btn{
  143. font-size: 12px;
  144. background-color: #3081e8;
  145. color: #fff;
  146. float: left;
  147. border-radius: 30px;
  148. margin: 15px 0;
  149. margin-top: 10px;
  150. }
  151. }
  152. .activeData:nth-child(1){
  153. margin-left: 15px;
  154. }
  155. }
  156. .title{
  157. font-weight: bold;
  158. }
  159. .lookMore{
  160. color: #ccc;
  161. font-size: 14px;
  162. }
  163. }
  164. </style>