mineSubscribe.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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 class="zw-font">特色活动</text>
  12. <view :class="current==1?yun:test"></view>
  13. </view>
  14. </view>
  15. </view> -->
  16. <view class="activeClass">
  17. <view class="classBox" @click="gotoDetail" :data-all="item" v-for="(item,index) in classList" :key="index">
  18. <view class="classLeft">
  19. <!-- <view class="class_Img"> -->
  20. <image :src="item.pic" mode="aspectFill"></image>
  21. <!-- </view> -->
  22. <view class="class_Text">
  23. <view class="text_Title">
  24. <text class="manage">类型</text>
  25. <text class="wenzi">{{ item.acName }}</text>
  26. </view>
  27. <view class="text_Intro">
  28. <text>{{ item.brief }}</text>
  29. </view>
  30. <view class="classright">
  31. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/dingyue_blue.png" mode="aspectFill" @click.stop="sub" :data-e="item"></image>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <!-- <swiper class="scroll-view-height" @change="swipeIndex" :current="current" :duration="300">
  38. <swiper-item>
  39. <scroll-view scroll-y="true" style="height: 80vh;">
  40. <view class="activeClass">
  41. <view class="classBox" @click="" v-for="(item,index) in classList" :key="index">
  42. <view class="classLeft">
  43. <view class="class_Img">
  44. <image :src="item.pic" mode="aspectFill"></image>
  45. </view>
  46. <view class="class_Text">
  47. <view class="text_Title">
  48. <text class="manage">类型</text>
  49. <text>{{ item.acName }}</text>
  50. </view>
  51. <view class="text_Intro">
  52. <text>{{ item.brief }}</text>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="classright">
  57. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/dingyue_blue.png"
  58. mode="aspectFill" @click="sub" :data-e="item"></image>
  59. </view>
  60. </view>
  61. </view>
  62. </scroll-view>
  63. </swiper-item>
  64. <swiper-item>
  65. <scroll-view scroll-y="true" style="height: 80vh;">
  66. <view class="activeClass">
  67. <view class="classBox" @click="gotoWeb_2(index)" v-for="(item,index) in activeList"
  68. :key="index">
  69. <view class="classLeft">
  70. <view class="class_Img">
  71. <image :src="activeList[index].img" mode="aspectFill"></image>
  72. </view>
  73. <view class="class_Text">
  74. <view class="text_Title">
  75. <text class="manage">类型</text>
  76. <text>{{ item.className }}</text>
  77. </view>
  78. <view class="text_Intro">
  79. <text>{{ item.intro }}</text>
  80. </view>
  81. </view>
  82. </view>
  83. <view class="classright">
  84. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//mine/Union.png"
  85. mode=""></image>
  86. </view>
  87. </view>
  88. </view>
  89. </scroll-view>
  90. </swiper-item>
  91. </swiper> -->
  92. </view>
  93. </template>
  94. <script>
  95. export default {
  96. data() {
  97. return {
  98. navBarData: {
  99. title: '我的订阅',
  100. btn: 1
  101. },
  102. current: 0, //切换
  103. aaa: `calc(100vh-60vh)`,
  104. navheight: this.navheight, //导航栏高度
  105. active: 'active', //类名
  106. test: 'test',
  107. yun: 'yun',
  108. subArr: [],
  109. // 渲染列表
  110. classList: [],
  111. activeList: [],
  112. };
  113. },
  114. computed: {
  115. dynamicStyle() {
  116. return {
  117. height: `calc(100vh - 10px)`
  118. };
  119. }
  120. },
  121. methods: {
  122. getData() {
  123. console.log(111);
  124. let data = {
  125. oid: this.$store.state.user.openid, //用户id
  126. type: 1
  127. }
  128. this.$request('/selectOperator', 'POST', data).then(res => {
  129. console.log('获取订阅', res);
  130. this.classList = res[0]
  131. })
  132. // let data = {
  133. // oid: this.$store.state.user.openid, //用户id
  134. // }
  135. // this.$request('/selectSub', 'POST', data).then(res => {
  136. // this.subArr = JSON.parse(res[0][0].sub)
  137. // // console.log(this.collArr);
  138. // // let a=this.collArr.join(', ');
  139. // // return console.log({a});
  140. // let data = {
  141. // oid: this.$store.state.user.openid, //用户id
  142. // list: this.subArr
  143. // }
  144. // // return console.log(data);
  145. // this.$request('/selectSubList', 'POST', data).then(res => {
  146. // // console.log("要渲染的数据", res);
  147. // // this.collArr=res[0]
  148. // this.classList = res[0]
  149. // // console.log(this.classList);
  150. // })
  151. // })
  152. },
  153. // 这里获取的活动肯定是已订阅的,就不用判断直接删除就可以了
  154. sub(event) {
  155. let aId = event.currentTarget.dataset.e.acId
  156. let data = {
  157. acid: aId,
  158. oid: this.$store.state.user.openid, //用户id
  159. ty: 1
  160. }
  161. this.$request('/deleteOperator', 'POST', data).then(res => {
  162. console.log(res);
  163. this.getData()
  164. })
  165. // let aId = event.currentTarget.dataset.e.acId
  166. // // 先获取用户订阅信息
  167. // let data = {
  168. // oid: this.$store.state.user.openid, //用户id
  169. // }
  170. // this.$request('/selectSub', 'POST', data).then(res => {
  171. // let subs = JSON.parse(res[0][0].sub)
  172. // // 把未取消订阅的数据提取出来
  173. // const newArray = subs.filter(item => item !== aId);
  174. // let arr3 = {
  175. // oid: this.$store.state.user.openid, //用户id
  176. // acid: JSON.stringify(newArray)
  177. // }
  178. // this.$request('/updateSub', 'POST', arr3).then(res => {
  179. // // 删除后重新获取数据进行渲染
  180. // this.getData()
  181. // uni.showToast({
  182. // title: '已取消订阅',
  183. // icon: 'error',
  184. // duration: 1000
  185. // })
  186. // })
  187. // })
  188. },
  189. swipeIndex(index) {
  190. this.current = index.detail.current;
  191. },
  192. phoneLogin() {
  193. this.current = 0
  194. },
  195. accountLogin() {
  196. this.current = 1
  197. },
  198. gotoWeb(index) {
  199. const urls = [
  200. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1181",
  201. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
  202. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
  203. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1234",
  204. ];
  205. if (index >= 0 && index < urls.length) {
  206. const url = urls[index];
  207. uni.navigateTo({
  208. url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
  209. });
  210. }
  211. },
  212. // 跳转详情页
  213. gotoDetail(e){
  214. let data=e.currentTarget.dataset.all
  215. if(data.type<=1){
  216. uni.navigateTo({
  217. url: `/pages/activityDetail/activityDetail?acId=${data.acId}`,
  218. });
  219. }else{
  220. uni.navigateTo({
  221. url: `/pages/teachingDetail/teachingDetail?acId=${data.acId}`
  222. });
  223. }
  224. },
  225. gotoWeb_2(index) {
  226. const urls = [
  227. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1183",
  228. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1211",
  229. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1210",
  230. "https://szptxnjys.yuketang.cn/pro/portal/announcementdetail/1209",
  231. ];
  232. if (index >= 0 && index < urls.length) {
  233. const url = urls[index];
  234. uni.navigateTo({
  235. url: "/pages/skipone/skipone?url=" + encodeURIComponent(url),
  236. });
  237. }
  238. }
  239. },
  240. onShow() {
  241. this.getData()
  242. }
  243. }
  244. </script>
  245. <style lang="scss">
  246. .content {
  247. height: 100vh;
  248. width: 750rpx;
  249. background-color: #ffffff;
  250. .activeTitle {
  251. position: fixed;
  252. z-index: 9;
  253. width: 100%;
  254. height: 60px;
  255. background-color: white;
  256. border-top: 1px solid lightgray;
  257. display: flex;
  258. justify-content: center;
  259. padding: 0 30px;
  260. font-size: 34rpx;
  261. .test {
  262. // height: ;
  263. }
  264. .active {
  265. position: relative;
  266. font-weight: bold;
  267. .yun {
  268. width: 80rpx;
  269. height: 0rpx;
  270. position: absolute;
  271. left: 50%;
  272. top: 65%;
  273. transform: translate(-50%, -50%);
  274. box-shadow: 0px 0px 10px 2px #4a97f2;
  275. }
  276. }
  277. .left {
  278. width: 50%;
  279. height: 100%;
  280. display: flex;
  281. justify-content: center;
  282. align-items: center;
  283. }
  284. .right {
  285. width: 50%;
  286. height: 100%;
  287. display: flex;
  288. justify-content: center;
  289. align-items: center;
  290. }
  291. }
  292. .scroll-view-height {
  293. // height: 200vmin;
  294. height: 80vh;
  295. // height: auto;
  296. .activeClass {
  297. width: 100%;
  298. // height: auto;
  299. .classBox {
  300. display: flex;
  301. justify-content: space-between;
  302. padding: 0 47rpx;
  303. background-color: #fff;
  304. height: 144rpx;
  305. .classLeft {
  306. display: flex;
  307. height: 100%;
  308. .class_Img {
  309. display: flex;
  310. align-items: center;
  311. flex-grow: 1;
  312. image {
  313. width: 80rpx;
  314. height: 80rpx;
  315. border-radius: 10rpx;
  316. }
  317. }
  318. .class_Text {
  319. display: flex;
  320. justify-content: center;
  321. flex-grow: 2;
  322. flex-direction: column;
  323. margin-left: 20rpx;
  324. .text_Title {
  325. display: flex;
  326. margin-bottom: 6px;
  327. align-items: center;
  328. text {
  329. &:last-child {
  330. width: 220px;
  331. color: #000;
  332. font-size: 28rpx;
  333. font-weight: 600;
  334. display: -webkit-box;
  335. word-break: break-all;
  336. text-overflow: ellipsis;
  337. overflow: hidden;
  338. -webkit-box-orient: vertical;
  339. -webkit-line-clamp: 1;
  340. /*设置 需要显示的行数*/
  341. }
  342. &.manage {
  343. border: 1px #00b2b6 solid;
  344. font-size: 20rpx;
  345. width: 64rpx;
  346. display: flex;
  347. height: 32rpx;
  348. white-space: nowrap;
  349. justify-content: center;
  350. align-items: center;
  351. // padding: 4px 12px 4px 12px;
  352. border-radius: 5rpx;
  353. margin-right: 10rpx;
  354. color: #00b2b6;
  355. }
  356. }
  357. }
  358. .text_Intro {
  359. display: flex;
  360. text {
  361. font-size: 24rpx;
  362. font-weight: 400;
  363. color: rgb(191, 191, 191);
  364. width: 90%;
  365. letter-spacing: 2rpx;
  366. display: -webkit-box;
  367. word-break: break-all;
  368. text-overflow: ellipsis;
  369. overflow: hidden;
  370. -webkit-box-orient: vertical;
  371. -webkit-line-clamp: 1;
  372. /*设置 需要显示的行数*/
  373. // margin-left: 6px;
  374. }
  375. }
  376. }
  377. }
  378. .classright {
  379. display: flex;
  380. height: 100%;
  381. align-items: center;
  382. image {
  383. width: 38rpx;
  384. height: 42rpx;
  385. }
  386. }
  387. }
  388. }
  389. }
  390. }
  391. .activeClass {
  392. width: 100%;
  393. .classBox {
  394. width: 100%;
  395. display: flex;
  396. justify-content: space-between;
  397. background-color: #fff;
  398. position: relative;
  399. padding: 40rpx;
  400. .classLeft {
  401. display: flex;
  402. justify-content: space-between;
  403. height: 100%;
  404. width: 100%;
  405. image {
  406. width: 120rpx;
  407. height: 120rpx;
  408. border-radius: 10rpx;
  409. }
  410. // }
  411. .class_Text {
  412. display: flex;
  413. justify-content: space-between;
  414. flex: 1;
  415. flex-direction: column;
  416. margin-left: 20rpx;
  417. position: relative;
  418. .text_Title {
  419. display: flex;
  420. // justify-content: center;
  421. align-items: center;
  422. // justify-content: space-between;
  423. // width: 500rpx;
  424. .manage {
  425. border: 1px #00b2b6 solid;
  426. font-size: 20rpx;
  427. width: 64rpx;
  428. display: flex;
  429. height: 32rpx;
  430. white-space: nowrap;
  431. justify-content: center;
  432. align-items: center;
  433. border-radius: 5rpx;
  434. margin-right: 10rpx;
  435. color: #00b2b6;
  436. }
  437. .wenzi {
  438. // width: 100%;
  439. line-height: 32rpx;
  440. flex: 1;
  441. padding-right: 50rpx;
  442. color: #000;
  443. font-size: 28rpx;
  444. font-weight: 600;
  445. display: -webkit-box;
  446. word-break: break-all;
  447. text-overflow: ellipsis;
  448. overflow: hidden;
  449. -webkit-box-orient: vertical;
  450. -webkit-line-clamp: 1;
  451. }
  452. }
  453. .text_Intro {
  454. display: flex;
  455. width: 100%;
  456. text {
  457. font-size: 24rpx;
  458. font-weight: 400;
  459. color: rgb(191, 191, 191);
  460. width: 90%;
  461. letter-spacing: 2rpx;
  462. display: -webkit-box;
  463. word-break: break-all;
  464. text-overflow: ellipsis;
  465. overflow: hidden;
  466. -webkit-box-orient: vertical;
  467. -webkit-line-clamp: 1;
  468. /*设置 需要显示的行数*/
  469. // margin-left: 6px;
  470. }
  471. }
  472. }
  473. }
  474. .classright {
  475. height: 100%;
  476. position: absolute;
  477. top: 0;
  478. right: 0;
  479. image {
  480. width: 38rpx;
  481. height: 42rpx;
  482. }
  483. }
  484. }
  485. }
  486. </style>