index.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <template>
  2. <view class="content">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="top">
  5. <!-- <image src="https://teacherapi.cocorobo.cn/teaching-file/static//logo.png" mode="aspectFill"></image> -->
  6. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/yym/Rectangle25.png" mode="aspectFill"
  7. @click="gotoHome">
  8. </image>
  9. </view>
  10. <viewX-Case class="mid">
  11. <template #title>
  12. <view class="title three-font">精选活动</view>
  13. </template>
  14. <template #lookMore>
  15. <view class="lookMore fz-font" @click="gotoActivity">查看更多</view>
  16. </template>
  17. <template #activeBlock>
  18. <view class="activeData" @click="gotoActivityDetail" v-for="(item, index) in activeList" :key="index"
  19. :data-aid="item.acId">
  20. <image :src="item.pic" mode="aspectFill"></image>
  21. <view class="activeTit sBtn-font" style="font-weight: bold">
  22. {{ item.acName }}
  23. </view>
  24. <view class="numData">
  25. <view class="proNum bqZ-font">{{ item.pers }} 人报名</view>
  26. <view class="price num-font">
  27. <text class="fz-font">¥</text>{{ item.cost }}
  28. </view>
  29. </view>
  30. <button class="btn sBtn-font" @click.stop="gotoHd" :data-index="index">
  31. 立即报名
  32. </button>
  33. </view>
  34. </template>
  35. </viewX-Case>
  36. <viewX-Case>
  37. <template #title>
  38. <view class="title three-font">教研室活动</view>
  39. </template>
  40. <template #lookMore>
  41. <view class="lookMore fz-font" @click="listBlock1More">查看更多</view>
  42. </template>
  43. <template #teaching>
  44. <!-- 推荐课程组件 -->
  45. <listBlock1 ref="listBlock1" :classList="classList"></listBlock1>
  46. </template>
  47. </viewX-Case>
  48. <view class="" style="height: 30rpx; width: 100%"> </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. title: "Hello",
  56. navBarData: {
  57. title: "首页", //导航栏标题
  58. btn: 0, //是否显示返回按钮 0不显示 1 显示
  59. },
  60. activeList: [],
  61. classList: []
  62. };
  63. },
  64. onLoad() {},
  65. methods: {
  66. getData() {
  67. let data = {
  68. openid: uni.getStorageSync('oId'),
  69. ty: 2,
  70. page: 1, //下拉获取更多的备用字段
  71. lim: 12 //一次获取多少数据
  72. }
  73. this.$request('/selectActivity', "POST", data).then(res => {
  74. // console.log(res[0]);
  75. // this.activeList=[...this.activeList,...res[0]]
  76. this.activeList = res[0]
  77. })
  78. },
  79. // 获取推荐课程list 数据
  80. getlistBlock1Data() {
  81. let data = {
  82. openid: uni.getStorageSync('oId'),
  83. ty: 3,
  84. page: 1, //下拉获取更多的备用字段
  85. lim: 12 //一次获取多少数据
  86. }
  87. this.$request('/selectActivity', "POST", data).then(res => {
  88. console.log(res[0]);
  89. // this.activeList=[...this.activeList,...res[0]]
  90. this.classList = res[0]
  91. // console.log('推荐课程',this.classList);
  92. })
  93. },
  94. // 跳转到推荐课程查看更多
  95. listBlock1More() {
  96. const value = this.$store.state.user.openid;
  97. if (value == '') return this.goLog()
  98. uni.navigateTo({
  99. url: "/pages/teachingList/teachingList",
  100. });
  101. },
  102. gotoTeDetail() {
  103. const value = this.$store.state.user.openid;
  104. if (value == '') return this.goLog()
  105. uni.navigateTo({
  106. url: "/pages/teachingDetail/teachingDetail",
  107. });
  108. },
  109. // 跳转到专题教研活动查看更多
  110. gotoActivity() {
  111. const value = this.$store.state.user.openid;
  112. if (value == '') return this.goLog()
  113. uni.navigateTo({
  114. url: "/pages/activityList_2/activityList_2",
  115. });
  116. },
  117. // 跳转到详情页
  118. gotoActivityDetail(e) {
  119. // return console.log(e.currentTarget.dataset);
  120. let aid = e.currentTarget.dataset.aid;
  121. const value = this.$store.state.user.openid;
  122. if (value == '') return this.goLog()
  123. uni.navigateTo({
  124. url: `/pages/teachingDetail/teachingDetail?acId=${aid}`
  125. });
  126. },
  127. // 专题教研活动跳转外部链接
  128. gotoHd(e) {
  129. // return console.log(e);
  130. let num = e.currentTarget.dataset['index'];
  131. const value = this.$store.state.user.openid;
  132. if (value == '') return this.goLog()
  133. // let num = e.currentTarget.dataset['index'];
  134. const urls = [
  135. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1181",
  136. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
  137. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
  138. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1234",
  139. ];
  140. if (num > 3) num = 3
  141. uni.navigateTo({
  142. url: "/pages/skipone/skipone?url=" + encodeURIComponent(urls[num]),
  143. });
  144. },
  145. // 顶部大图跳转外部链接
  146. gotoHome() {
  147. // const web = this.classList[this.current];
  148. const url = "https://mp.weixin.qq.com/s/QZEGcvBn3aW7aHirMFLBQA";
  149. uni.navigateTo({
  150. url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
  151. });
  152. },
  153. goLog() {
  154. uni.navigateTo({
  155. url: "/pages/login_Wechat/login_Wechat",
  156. });
  157. }
  158. },
  159. onShow() {
  160. this.getData()
  161. this.getlistBlock1Data()
  162. this.$refs.listBlock1.getdata()
  163. this.$refs.listBlock1.getSub()
  164. }
  165. };
  166. </script>
  167. <style lang="scss" scoped>
  168. .content {
  169. // .listBlock1PIC {
  170. // width: 160rpx;
  171. // height: 160rpx;
  172. // border-radius: 10rpx;
  173. // }
  174. .list1btn {
  175. z-index: 5;
  176. border: none;
  177. padding: 0;
  178. text-align: center;
  179. // padding: 8px, 24px, 8px, 24px;
  180. background-color: rgba(48, 129, 232, 1);
  181. color: #fff;
  182. border-radius: 100rpx;
  183. float: right;
  184. width: 144rpx;
  185. height: 48rpx;
  186. line-height: 48rpx;
  187. letter-spacing: 1px;
  188. }
  189. // background-color: ;
  190. // background-color: #f0f2f5;
  191. .top {
  192. width: 750rpx;
  193. height: 288rpx;
  194. display: flex;
  195. margin-bottom: 20rpx;
  196. align-items: center;
  197. background-color: #fff;
  198. justify-content: center;
  199. image {
  200. height: 246rpx;
  201. width: 690rpx;
  202. border-radius: 12rpx;
  203. }
  204. }
  205. .mid {
  206. margin: 10px 0;
  207. height: 498rpx;
  208. .activeData {
  209. width: 290rpx;
  210. display: inline-block;
  211. padding-right: 20rpx;
  212. image {
  213. width: 100%;
  214. height: 80px;
  215. border-radius: 10px;
  216. margin-bottom: 10rpx;
  217. }
  218. .activeTit {
  219. // font-weight: 600;
  220. height: 64rpx;
  221. white-space: normal;
  222. /*隐藏溢出*/
  223. /*当文本溢出包含元素时显示省略符号来代表被修剪的文本*/
  224. /*规定段落中的文本不进行换行*/
  225. letter-spacing: 2rpx;
  226. display: -webkit-box;
  227. word-break: break-all;
  228. text-overflow: ellipsis;
  229. overflow: hidden;
  230. -webkit-box-orient: vertical;
  231. -webkit-line-clamp: 2;
  232. /*设置 需要显示的行数*/
  233. }
  234. .numData {
  235. display: flex;
  236. justify-content: space-between;
  237. align-items: baseline;
  238. // padding: 10rpx 0;
  239. .proNum {
  240. color: #999999;
  241. // font-size: 14px;
  242. }
  243. .price {
  244. color: #f68717;
  245. // font-size: 18px;
  246. }
  247. }
  248. .btn {
  249. border: none;
  250. padding: 0;
  251. float: left;
  252. text-align: center;
  253. // padding: 8px 24px 8px 24px;
  254. background-color: #3081e8;
  255. color: #fff;
  256. border-radius: 100rpx;
  257. width: 144rpx;
  258. height: 48rpx;
  259. line-height: 48rpx;
  260. letter-spacing: 1px;
  261. margin-bottom: 30rpx;
  262. }
  263. }
  264. .activeData:nth-child(1) {
  265. margin-left: 15px;
  266. }
  267. }
  268. .title {
  269. font-weight: bold;
  270. }
  271. .lookMore {
  272. color: #666666;
  273. // font-size: 14px;
  274. }
  275. }
  276. </style>