activityPageNew.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <template>
  2. <view class="activityPageNew">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="search">
  5. <uni-search-bar v-model="searchText" bgColor="#f0f2f5" class="btntop" placeholder="搜索" cancelButton="none"
  6. clearButton="none"></uni-search-bar>
  7. </view>
  8. <view class="top">
  9. <view class="right" @click="accountLogin" :class="current == 0 ? info1 : info2">
  10. <text class="">常规教研</text>
  11. <view v-if="current == 0" class="yun">
  12. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//yym/Ellipse 10.png"
  13. mode="aspectFill"></image>
  14. </view>
  15. </view>
  16. <view class="left" @click="phoneLogin" :class="current == 1 ? info1 : info2">
  17. <text class="">专题教研</text>
  18. <view v-if="current == 1" class="yun">
  19. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/yym/Ellipse 10.png"
  20. mode="aspectFill"></image>
  21. </view>
  22. </view>
  23. <view class="right" @click="costClass" :class="current == 2 ? info1 : info2">
  24. <text class="">付费教研</text>
  25. <view v-if="current == 2" class="yun">
  26. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/yym/Ellipse 10.png"
  27. mode="aspectFill"></image>
  28. </view>
  29. </view>
  30. </view>
  31. <swiper class="scroll-view-height" @change="swipeIndex" :current="current" :duration="300">
  32. <!-- 常规教研 -->
  33. <swiper-item>
  34. <scroll-view scroll-y="true" refresher-enabled='true' :refresher-triggered="putrigger"
  35. @refresherrefresh='purepulling' @scrolltolower="pulower" style="height: 100%;">
  36. <view>
  37. <listBlock1 ref="listBlock2" :classList="filteredClassList2"></listBlock1>
  38. </view>
  39. <view class="loading">
  40. <view v-if="puLoading==1">数据加载中...</view>
  41. <view v-if="puLoading==2">没有更多了~~</view>
  42. </view>
  43. </scroll-view>
  44. </swiper-item>
  45. <!-- 专题教研 -->
  46. <swiper-item>
  47. <scroll-view scroll-y="true" refresher-enabled='true' :refresher-triggered="trigger"
  48. @refresherrefresh='repulling' @scrolltolower="aclower" style="height: 100%;">
  49. <view class="">
  50. <listBlock1 ref="listBlock1" :classList="filteredClassList"></listBlock1>
  51. </view>
  52. <view class="loading">
  53. <view v-if="acLoading==1">数据加载中...</view>
  54. <view v-if="acLoading==2">没有更多了~~</view>
  55. </view>
  56. </scroll-view>
  57. </swiper-item>
  58. <!-- 付费教研 -->
  59. <swiper-item>
  60. <scroll-view scroll-y="true" style="height: 100%;">
  61. <!-- <view style="padding-bottom: 30rpx;"> -->
  62. <!-- <listBlock1 :classList="monlist" :indexId='indexId'></listBlock1> -->
  63. <!-- </view> -->
  64. <view class=""
  65. style="height: 100%; width: 750rpx;display: flex;justify-content: center;align-items: center;">
  66. <image src="../../static/Frame.png" style="width: 400rpx;height: 400rpx;" mode=""></image>
  67. </view>
  68. </scroll-view>
  69. </swiper-item>
  70. </swiper>
  71. </view>
  72. </template>
  73. <script>
  74. export default {
  75. data() {
  76. return {
  77. navBarData: {
  78. title: "活动",
  79. btn: 0,
  80. },
  81. indexId: 1,
  82. current: 0, //控制展示哪一个
  83. info1: "info1", //类名
  84. info2: "info2",
  85. // swiper: 0,
  86. searchText: "", // 搜索文本
  87. acLoading: 0, //0默认值 1加载中 2没有更多了
  88. accurrentPage: 1, //页数
  89. puLoading: 0, //0默认值 1加载中 2没有更多了
  90. pucurrentPage: 1,
  91. // 教研
  92. teclist: [],
  93. // 常规
  94. pulist: [],
  95. // 设置当前下拉刷新状态,true 表示下拉刷新已经被触发,false 表示下拉刷新未被触发
  96. trigger: false, //专题
  97. putrigger: false, //常规
  98. // 付费
  99. // monlist: [{
  100. // acId: "92e11d93-8778-11ee-b98c-005056b86db5",
  101. // acName: "丽湖职教双创教育国际虚拟教研室2023年常规教研活动安排",
  102. // acshape: "户外活动",
  103. // avatar: "http://139.159.246.165:7006/uploads/20231122/file-1700619408170.jpeg",
  104. // bnum: 0,
  105. // brief: "丽湖职教双创教育国际虚拟教研室为立足全国,辐射海外的国际化教研室,围绕创新创业教育的人才培养与课程建设开展深度研究。教研室以贯彻落实立德树人根本任务,通过加强跨专业、跨校、跨地域的教研交流,推动高校协同打造国际化的精品教学资源库、优秀教学案例库、优质教师培训资源库等,全面提高教师",
  106. // cost: "5000",
  107. // create_at: "2023.11.20 03:11",
  108. // pers: "15",
  109. // pic: "http://139.159.246.165:7006/uploads/20231120/file-1700466209242.png",
  110. // type: "1",
  111. // username: "袁一鸣",
  112. // }]
  113. };
  114. },
  115. // 模糊搜索
  116. computed: {
  117. filteredClassList() {
  118. const filteredList = this.teclist.filter((item) =>
  119. item.acName.includes(this.searchText)
  120. );
  121. return this.searchText ? filteredList : this.teclist;
  122. },
  123. filteredClassList2() {
  124. const filterdList2 = this.pulist.filter((item) =>
  125. item.acName.includes(this.searchText)
  126. );
  127. return this.searchText ? filterdList2 : this.pulist;
  128. },
  129. },
  130. methods: {
  131. repulling() {
  132. this.trigger = true
  133. // this.isrepulling = true
  134. setTimeout(() => {
  135. this.trigger = false;
  136. }, 1000);
  137. this.acLoading= 0 //0默认值 1加载中 2没有更多了
  138. this.accurrentPage= 1 //页数
  139. this.teclist= []// 教研
  140. // this.puLoading= 0 //0默认值 1加载中 2没有更多了
  141. // this.pucurrentPage=1
  142. // this.pulist= []// 常规
  143. this.getTecData()
  144. console.log(111);
  145. },
  146. purepulling(){
  147. this.putrigger = true
  148. // this.isrepulling = true
  149. setTimeout(() => {
  150. this.putrigger = false;
  151. }, 1000);
  152. // this.acLoading= 0 //0默认值 1加载中 2没有更多了
  153. // this.accurrentPage= 1 //页数
  154. // this.teclist= []// 教研
  155. this.puLoading= 0 //0默认值 1加载中 2没有更多了
  156. this.pucurrentPage=1
  157. this.pulist= []// 常规
  158. this.getpuData()
  159. console.log(111);
  160. },
  161. aclower() {
  162. console.log('没触底?');
  163. if (this.acLoading == 2) return
  164. this.acLoading = 1
  165. this.accurrentPage++
  166. setTimeout(this.getTecData, 1000)
  167. },
  168. pulower() {
  169. console.log('没触底?');
  170. if (this.puLoading == 2) return
  171. this.puLoading = 1
  172. this.pucurrentPage++
  173. setTimeout(this.getpuData, 1000)
  174. },
  175. // 获取专题
  176. getTecData() {
  177. let data = {
  178. openid: uni.getStorageSync('oId'),
  179. ty: 1,
  180. page: this.accurrentPage, //下拉获取更多的备用字段
  181. lim: 15 //一次获取多少数据
  182. }
  183. this.$request('/selectActivity', "POST", data).then(res => {
  184. // console.log('专题', res[0]);
  185. // this.teclist = res[0]
  186. if (!res[0].length) {
  187. this.acLoading = 2
  188. } else {
  189. this.acLoading = 0
  190. }
  191. this.teclist = [...this.teclist, ...res[0]]
  192. })
  193. },
  194. // 获取常规
  195. getpuData() {
  196. let data = {
  197. openid: uni.getStorageSync('oId'),
  198. ty: 2,
  199. page: this.pucurrentPage, //下拉获取更多的备用字段
  200. lim: 15 //一次获取多少数据
  201. }
  202. this.$request('/selectActivity', "POST", data).then(res => {
  203. // console.log('常规', res[0]);
  204. // this.pulist = res[0]
  205. if (!res[0].length) {
  206. this.puLoading = 2
  207. } else {
  208. this.puLoading = 0
  209. }
  210. this.pulist = [...this.pulist, ...res[0]]
  211. })
  212. },
  213. // 区域滑动变换头部
  214. swipeIndex(index) {
  215. this.current = index.detail.current;
  216. // this.$refs.listBlock1.getdata()
  217. },
  218. // 区域滑动
  219. accountLogin() {
  220. this.current = 0;
  221. },
  222. phoneLogin() {
  223. this.current = 1;
  224. },
  225. costClass() {
  226. this.current = 2;
  227. }
  228. },
  229. onLoad() {
  230. // 刷新
  231. // 教研
  232. // this.teclist = []
  233. // // 常规
  234. // this.pulist = []
  235. // this.accurrentPage = 1
  236. // this.pucurrentPage = 1
  237. // console.log('刷新',this.teclis);
  238. this.getpuData() //获取常规列表
  239. this.getTecData() //获取专题列表
  240. // 因为组件没有onshow
  241. // 获取订阅事件
  242. // this.$refs.listBlock1.getSub()
  243. },
  244. onShow() {
  245. this.getAllMessage() // 调用app.js中的方法
  246. // 获取收藏事件
  247. this.$refs.listBlock1.getdata() //专题
  248. this.$refs.listBlock2.getdata() //常规
  249. }
  250. };
  251. </script>
  252. <style lang="scss" scoped>
  253. .btntop {
  254. width: 100%;
  255. }
  256. .activityPageNew {
  257. display: flex;
  258. flex-direction: column;
  259. height: 100vh;
  260. .search {
  261. background-color: #ffffff;
  262. position: relative;
  263. display: flex;
  264. width: 750rpx;
  265. height: 88rpx;
  266. justify-content: center;
  267. align-items: center;
  268. .inpSer {
  269. width: 690rpx;
  270. height: 65rpx;
  271. margin: auto;
  272. background-color: rgba(240, 242, 245, 1);
  273. border-radius: 5rpx;
  274. color: rgba(0, 0, 0, 0.26);
  275. position: relative;
  276. .inpTxt {
  277. color: #000;
  278. height: 100%;
  279. width: 100%;
  280. }
  281. input::placeholder {
  282. color: #000;
  283. }
  284. .ico {
  285. position: absolute;
  286. top: 50%;
  287. left: 20rpx;
  288. transform: translate(0, -50%);
  289. display: flex;
  290. align-items: center;
  291. image {
  292. margin-right: 10rpx;
  293. }
  294. }
  295. }
  296. }
  297. .top {
  298. width: 100%;
  299. display: flex;
  300. justify-content: space-between;
  301. margin: auto;
  302. background-color: #ffffff;
  303. padding: 10px 60rpx;
  304. height: 98rpx;
  305. .info1 {
  306. font-weight: bold !important;
  307. position: relative;
  308. color: rgba(0, 0, 0, 0.8);
  309. font-size: 34rpx;
  310. line-height: 48rpx;
  311. width: 136rpx;
  312. height: 48rpx;
  313. text-align: center;
  314. // font-family: PingFang SC;
  315. // font-family: \9ed1\4f53;
  316. .yun {
  317. width: 134rpx;
  318. height: 32rpx;
  319. position: absolute;
  320. left: 0;
  321. bottom: -10rpx;
  322. // transform: translate(-50%,0%);
  323. // box-shadow: 0px 10rpx 30rpx 6rpx #4a97f2;
  324. image {
  325. width: 100%;
  326. height: 100%;
  327. }
  328. }
  329. }
  330. .info2 {
  331. color: rgba(0, 0, 0, 0.6);
  332. font-size: 34rpx;
  333. font-weight: 400;
  334. line-height: 48rpx;
  335. width: 136rpx;
  336. height: 48rpx;
  337. text-align: center;
  338. font-family: 微软雅黑;
  339. }
  340. }
  341. .scroll-view-height {
  342. flex: 1;
  343. width: 100%;
  344. display: flex;
  345. flex-wrap: wrap;
  346. justify-content: space-between;
  347. .cont {
  348. background-color: #ffffff;
  349. width: 332rpx;
  350. padding: 20rpx 15rpx;
  351. border-radius: 10px;
  352. margin-bottom: 20rpx;
  353. image {
  354. width: 300rpx;
  355. height: 170rpx;
  356. border-radius: 10rpx;
  357. }
  358. .tit {
  359. width: 257rpx;
  360. margin: 10rpx 0;
  361. // height: 80rpx;
  362. font-weight: bold;
  363. white-space: normal;
  364. display: -webkit-box;
  365. word-break: break-all;
  366. text-overflow: ellipsis;
  367. overflow: hidden;
  368. -webkit-box-orient: vertical;
  369. -webkit-line-clamp: 2;
  370. /*设置 需要显示的行数*/
  371. }
  372. .teacher {
  373. color: #999999;
  374. }
  375. }
  376. }
  377. }
  378. </style>