resource.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. <template>
  2. <view class="resource">
  3. <statusBar :item="navBarData"></statusBar>
  4. <!-- 消息提示 -->
  5. <msgPop :goNum='1'></msgPop>
  6. <view class="search">
  7. <uni-search-bar v-model.trim="searchText" bgColor="#f0f2f5" class="btntop" placeholder="搜索"
  8. cancelButton="none" clearButton="none"></uni-search-bar>
  9. </view>
  10. <view class="top">
  11. <view class="left" @click="phoneLogin" :class="current == 0 ? info1 : info2">
  12. <text class="">资源库</text>
  13. <view v-if="current == 0" class="yun">
  14. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//yym/Ellipse 10.png"
  15. mode="aspectFill"></image>
  16. </view>
  17. </view>
  18. <view class="right" @click="accountLogin" :class="current == 1 ? info1 : info2">
  19. <text class="">精品慕课</text>
  20. <view v-if="current == 1" class="yun">
  21. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//yym/Ellipse 10.png"
  22. mode="aspectFill"></image>
  23. </view>
  24. </view>
  25. <view class="right" @click="costClass" :class="current == 2 ? info1 : info2">
  26. <text class="">付费课程</text>
  27. <view v-if="current == 2" class="yun">
  28. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//yym/Ellipse 10.png"
  29. mode="aspectFill"></image>
  30. </view>
  31. </view>
  32. </view>
  33. <swiper class="scroll-view-height" @change="swipeIndex" :current="current" :duration="300">
  34. <swiper-item>
  35. <scroll-view scroll-y="true" refresher-enabled='true' :refresher-triggered="trigger"
  36. @refresherrefresh='repulling' @scrolltolower="relower" style="height: 100%;">
  37. <view class="searchPagedata" v-if="!classList.length">暂无数据</view>
  38. <view class="">
  39. <teaching-case ref="reso" :acList='classList'></teaching-case>
  40. </view>
  41. <view class="loading">
  42. <view v-if="reLoading==1">数据加载中...</view>
  43. <view v-if="reLoading==2">没有更多了~~</view>
  44. </view>
  45. </scroll-view>
  46. </swiper-item>
  47. <swiper-item>
  48. <scroll-view scroll-y="true" refresher-enabled='true' :refresher-triggered="putrigger"
  49. @refresherrefresh='purepulling' @scrolltolower="tealower" style="height: 100%;">
  50. <view class="searchPagedata" v-if="!classList2.length">暂无数据</view>
  51. <view class="">
  52. <teaching-case ref="tech" :acList='classList2'></teaching-case>
  53. </view>
  54. <view class="loading">
  55. <view v-if="teaLoading==1">数据加载中...</view>
  56. <view v-if="teaLoading==2">没有更多了~~</view>
  57. </view>
  58. </scroll-view>
  59. </swiper-item>
  60. <swiper-item>
  61. <scroll-view scroll-y="true" style="height: 100%;">
  62. <view class=""
  63. style="height: 100%; width: 750rpx;display: flex;justify-content: center;align-items: center;">
  64. <image src="../../static/Frame.png" style="width: 400rpx;height: 400rpx;" mode=""></image>
  65. </view>
  66. </scroll-view>
  67. </swiper-item>
  68. </swiper>
  69. </view>
  70. </template>
  71. <script>
  72. export default {
  73. data() {
  74. return {
  75. navBarData: {
  76. title: "课程",
  77. btn: 0,
  78. },
  79. indexId: 1,
  80. current: 0, //页面切换
  81. info1: "info1", //类名
  82. info2: "info2",
  83. // swiper: 0,
  84. searchText: "", // 搜索文本
  85. pic_coll: 'https://teacherapi.cocorobo.cn/teaching-file/static/Stara.png',
  86. pic_coll2: 'https://teacherapi.cocorobo.cn/teaching-file/static/mine/Collect_yellow.png',
  87. // 资源库
  88. classList: [],
  89. // 精品课程
  90. classList2: [],
  91. reLoading: 0, //0默认值 1加载中 2没有更多了
  92. recurrentPage: 1, //页数
  93. teaLoading: 0, //0默认值 1加载中 2没有更多了
  94. teacurrentPage: 1,
  95. // 设置当前下拉刷新状态,true 表示下拉刷新已经被触发,false 表示下拉刷新未被触发
  96. trigger: false, //专题
  97. putrigger: false, //常规
  98. // 在搜索框有文字的时候下拉刷新禁止触发watch,防止数据叠加
  99. bansearchData: false
  100. };
  101. },
  102. watch: {
  103. searchText(val) {
  104. if (this.bansearchData) return
  105. // console.log('巴尔纳广播in而哦啊办呢日内');
  106. // console.log('searchText', val);
  107. if (val === '') {
  108. // 资源库
  109. // if (this.current == 0) {
  110. this.classList = []
  111. this.reLoading = 0 //0默认值 1加载中 2没有更多了
  112. this.recurrentPage = 1 //页数
  113. this.getreList()
  114. // console.log('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa');
  115. // }
  116. // if (this.current == 1) {
  117. this.classList2 = []
  118. this.teaLoading = 0 //0默认值 1加载中 2没有更多了
  119. this.teacurrentPage = 1
  120. this.getteaList()
  121. // }
  122. // console.log(1111);
  123. // 精品课程
  124. return
  125. }
  126. // console.log(888888);
  127. // if(val===''){
  128. // this.pu
  129. // }
  130. this.selectSearchdata()
  131. }
  132. },
  133. // onUnload() {
  134. // this.$store.dispatch('asyncDelAll')
  135. // },
  136. methods: {
  137. selectSearchdata() {
  138. if (this.current === 2) return
  139. let data = {
  140. openid: uni.getStorageSync('oId'),
  141. txt: this.searchText,
  142. ty: this.current,
  143. // page: this.Searchpage,
  144. // lim: 15
  145. }
  146. // return console.log(data);
  147. this.$request('/selectActSearch', "get", data).then(res => {
  148. console.log('常规', res);
  149. if (this.current == 0) {
  150. this.classList = res[0]
  151. } else if (this.current == 1) {
  152. this.classList2 = res[0]
  153. }
  154. })
  155. },
  156. // 资源库下拉刷新
  157. repulling() {
  158. this.bansearchData = true
  159. this.trigger = true
  160. // this.isrepulling = true
  161. setTimeout(() => {
  162. this.trigger = false;
  163. }, 1000);
  164. // 资源库
  165. this.classList = []
  166. this.reLoading = 0 //0默认值 1加载中 2没有更多了
  167. this.recurrentPage = 1 //页数
  168. if (this.searchText !== '') {
  169. this.classList2 = []
  170. this.teaLoading = 0 //0默认值 1加载中 2没有更多了
  171. this.teacurrentPage = 1
  172. this.getteaList()
  173. }
  174. this.searchText = ''
  175. this.getreList()
  176. },
  177. // 精品慕课下拉刷新
  178. purepulling() {
  179. this.bansearchData = true
  180. this.putrigger = true
  181. // this.isrepulling = true
  182. setTimeout(() => {
  183. this.putrigger = false;
  184. }, 1000);
  185. // 精品课程
  186. this.classList2 = []
  187. this.teaLoading = 0 //0默认值 1加载中 2没有更多了
  188. this.teacurrentPage = 1
  189. if (this.searchText !== '') {
  190. this.classList = []
  191. this.reLoading = 0 //0默认值 1加载中 2没有更多了
  192. this.recurrentPage = 1 //页数
  193. this.getreList()
  194. }
  195. this.searchText = ''
  196. this.getteaList()
  197. },
  198. // 获取资源库
  199. getreList() {
  200. let data = {
  201. openid: uni.getStorageSync('oId'),
  202. ty: 0,
  203. page: this.recurrentPage,
  204. lim: 15
  205. }
  206. this.$request('/selectResource', "POST", data).then(res => {
  207. console.log('获取资源库', res);
  208. if (!res[0].length) {
  209. this.reLoading = 2
  210. } else {
  211. this.reLoading = 0
  212. }
  213. this.classList = [...this.classList, ...res[0]]
  214. this.bansearchData = false
  215. // this.classList2 = res[1]
  216. })
  217. },
  218. // 获取精品慕课
  219. getteaList() {
  220. let data = {
  221. openid: uni.getStorageSync('oId'),
  222. ty: 1,
  223. page: this.teacurrentPage,
  224. lim: 15
  225. }
  226. this.$request('/selectResource', "POST", data).then(res => {
  227. console.log('获取资源库', res);
  228. if (!res[0].length) {
  229. this.teaLoading = 2
  230. } else {
  231. this.teaLoading = 0
  232. }
  233. // console.log('前',this.classList2);
  234. this.classList2 = [...this.classList2, ...res[0]]
  235. this.bansearchData = false
  236. // console.log('后',this.classList2);
  237. // this.classList2 = res[1]
  238. })
  239. },
  240. // 资源库触底
  241. relower() {
  242. if (this.searchText !== '') return console.log('禁止触底');
  243. console.log('没触底?');
  244. if (this.reLoading == 2) return
  245. this.reLoading = 1
  246. this.recurrentPage++
  247. setTimeout(this.getreList, 1000)
  248. },
  249. // 精品慕课触底
  250. tealower() {
  251. if (this.searchText !== '') return console.log('禁止触底');
  252. console.log('没触底?');
  253. if (this.teaLoading == 2) return
  254. this.teaLoading = 1
  255. this.teacurrentPage++
  256. setTimeout(this.getteaList, 1000)
  257. },
  258. swipeIndex(index) {
  259. this.current = index.detail.current;
  260. if (this.searchText !== '') {
  261. this.selectSearchdata()
  262. }
  263. },
  264. // 区域滑动
  265. phoneLogin() {
  266. this.current = 0;
  267. },
  268. accountLogin() {
  269. this.current = 1;
  270. },
  271. costClass() {
  272. this.current = 2;
  273. }
  274. },
  275. onLoad() {
  276. this.getreList()
  277. this.getteaList()
  278. },
  279. onShow() {
  280. this.getAllMessage() // 调用app.js中的方法
  281. // 获取收藏
  282. this.$refs.reso.getdata()
  283. this.$refs.tech.getdata()
  284. }
  285. };
  286. </script>
  287. <style lang="scss" scoped>
  288. .btntop {
  289. width: 100%;
  290. }
  291. .searchPagedata {
  292. width: 750rpx;
  293. height: 40%;
  294. display: flex;
  295. justify-content: center;
  296. align-items: center;
  297. }
  298. .resource {
  299. display: flex;
  300. flex-direction: column;
  301. height: 100vh;
  302. .search {
  303. background-color: #ffffff;
  304. position: relative;
  305. display: flex;
  306. width: 750rpx;
  307. height: 88rpx;
  308. justify-content: center;
  309. align-items: center;
  310. }
  311. .top {
  312. width: 100%;
  313. display: flex;
  314. justify-content: space-between;
  315. margin: auto;
  316. background-color: #ffffff;
  317. padding: 10px 60rpx;
  318. height: 98rpx;
  319. .info1 {
  320. font-weight: bold !important;
  321. position: relative;
  322. color: rgba(0, 0, 0, 0.8);
  323. font-size: 34rpx;
  324. line-height: 48rpx;
  325. width: 136rpx;
  326. height: 48rpx;
  327. text-align: center;
  328. .yun {
  329. width: 134rpx;
  330. height: 32rpx;
  331. position: absolute;
  332. left: 0;
  333. bottom: -10rpx;
  334. image {
  335. width: 100%;
  336. height: 100%;
  337. }
  338. }
  339. }
  340. .info2 {
  341. color: rgba(0, 0, 0, 0.6);
  342. font-size: 34rpx;
  343. font-weight: 400;
  344. line-height: 48rpx;
  345. width: 136rpx;
  346. height: 48rpx;
  347. text-align: center;
  348. font-family: 微软雅黑;
  349. }
  350. }
  351. .scroll-view-height {
  352. flex: 1;
  353. width: 100%;
  354. display: flex;
  355. flex-wrap: wrap;
  356. justify-content: space-between;
  357. }
  358. }
  359. </style>