mineSubscribe.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. <template>
  2. <view class="content" >
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="" style="width: 750rpx;height: 60px;">
  5. <view class="activeTitle">
  6. <view class="left" @click="phoneLogin" :class="current==0?active:test">
  7. <text>教研室活动</text>
  8. <view :class="current==0?yun:test"></view>
  9. </view>
  10. <view class="right" @click="accountLogin" :class="current==1?active:test">
  11. <text>非常规活动</text>
  12. <view :class="current==1?yun:test"></view>
  13. </view>
  14. </view>
  15. </view>
  16. <swiper class="scroll-view-height" @change="swipeIndex" :current="current" :duration="300">
  17. <swiper-item>
  18. <scroll-view scroll-y="true" style="height: 80vh;">
  19. <view class="activeClass">
  20. <view class="classBox" v-for="i in 20" :key="i">
  21. <view class="classLeft">
  22. <view class="class_Img">
  23. <image src="../../static/mine/activeclass.png" mode=""></image>
  24. </view>
  25. <view class="class_Text">
  26. <view class="text_Title">
  27. <span class="manage">类型</span>
  28. <span>教研室标题</span>
  29. </view>
  30. <view class="text_Intro">
  31. <span>说明文字教研室简介</span>
  32. </view>
  33. </view>
  34. </view>
  35. <view class="classright">
  36. <image src="../../static/mine/Union.png" mode=""></image>
  37. </view>
  38. </view>
  39. </view>
  40. </scroll-view>
  41. </swiper-item>
  42. <swiper-item>
  43. <view class="activeClass">
  44. <view class="classBox" v-for="i in 7" :key="i">
  45. <view class="classLeft">
  46. <view class="class_Img">
  47. <image src="../../static/mine/myactive.png" mode=""></image>
  48. </view>
  49. <view class="class_Text">
  50. <view class="text_Title">
  51. <span class="manage">类型</span>
  52. <span>活动标题</span>
  53. </view>
  54. <view class="text_Intro">
  55. <span>说明文字教研室简介</span>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="classright">
  60. <image src="../../static/mine/Union.png" mode=""></image>
  61. </view>
  62. </view>
  63. </view>
  64. </swiper-item>
  65. </swiper>
  66. </view>
  67. </template>
  68. <script>
  69. export default {
  70. data() {
  71. return {
  72. navBarData: {
  73. title: '我的订阅',
  74. btn: 1
  75. },
  76. current:0,//切换
  77. aaa:`calc(100vh-60vh)`,
  78. navheight:this.navheight, //导航栏高度
  79. active:'active', //类名
  80. test:'test',
  81. yun:'yun',
  82. };
  83. },
  84. computed: {
  85. dynamicStyle() {
  86. return {
  87. height: `calc(100vh - 10px)`
  88. };
  89. }
  90. },
  91. methods: {
  92. swipeIndex(index){
  93. this.current=index.detail.current;
  94. },
  95. phoneLogin(){
  96. this.current=0
  97. },
  98. accountLogin(){
  99. this.current=1
  100. },
  101. }
  102. }
  103. </script>
  104. <style lang="scss">
  105. .content{
  106. height: 100vh;
  107. width: 750rpx;
  108. background-color: #ffffff;
  109. .activeTitle{
  110. position: fixed;
  111. z-index: 9;
  112. width: 100%;
  113. height: 60px;
  114. background-color: white;
  115. border-top: 1px solid lightgray;
  116. display: flex;
  117. justify-content: center;
  118. padding: 0 30px;
  119. font-size: 34rpx;
  120. .test{
  121. // height: ;
  122. }
  123. .active{
  124. position: relative;
  125. font-weight: bold;
  126. .yun{
  127. width: 80rpx;
  128. height: 0rpx;
  129. position: absolute;
  130. left: 50%;
  131. top: 65%;
  132. transform: translate(-50%,-50%);
  133. box-shadow: 0px 0px 10px 2px #4a97f2;
  134. }
  135. }
  136. .left{
  137. width: 50%;
  138. height: 100%;
  139. display: flex;
  140. justify-content: center;
  141. align-items: center;
  142. }
  143. .right{
  144. width: 50%;
  145. height: 100%;
  146. display: flex;
  147. justify-content: center;
  148. align-items: center;
  149. }
  150. }
  151. .scroll-view-height{
  152. // height: 200vmin;
  153. height: 80vh;
  154. // height: auto;
  155. .activeClass{
  156. width: 100%;
  157. // height: auto;
  158. .classBox{
  159. display: flex;
  160. justify-content: space-between;
  161. padding: 0 47rpx;
  162. background-color: #fff;
  163. height: 144rpx;
  164. .classLeft{
  165. display: flex;
  166. height: 100%;
  167. .class_Img{
  168. display: flex;
  169. align-items: center;
  170. flex-grow: 1;
  171. image{
  172. width: 80rpx;
  173. height: 80rpx;
  174. }
  175. }
  176. .class_Text{
  177. display: flex;
  178. justify-content: center;
  179. flex-grow: 2;
  180. flex-direction: column;
  181. .text_Title{
  182. display: flex;
  183. margin-bottom: 6px;
  184. span{
  185. &:last-child {
  186. color: #000;
  187. font-size: 28rpx;
  188. font-weight: 600;
  189. }
  190. &.manage {
  191. border: 1px #00b2b6 solid;
  192. font-size: 10px;
  193. display: flex;
  194. white-space: nowrap;
  195. justify-content: center;
  196. align-items: center;
  197. padding: 1px 6px;
  198. border-radius: 3px;
  199. margin-right: 10rpx;
  200. color: #00b2b6;
  201. margin-left: 6px;
  202. font-weight: 600;
  203. }
  204. }
  205. }
  206. .text_Intro{
  207. display: flex;
  208. span{
  209. font-size: 24rpx;
  210. font-weight: 400;
  211. color: rgb(191, 191, 191);
  212. margin-left: 6px;
  213. }
  214. }
  215. }
  216. }
  217. .classright{
  218. display: flex;
  219. height: 100%;
  220. align-items: center;
  221. image{
  222. width: 38rpx;
  223. height: 42rpx;
  224. }
  225. }
  226. }
  227. }
  228. }
  229. }
  230. </style>