activityPage.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. <template>
  2. <view class="activity">
  3. <statusBar :item="navBarData"></statusBar>
  4. <viewX-Case class="mid">
  5. <template #title>
  6. <view class="title three-font">直播活动</view>
  7. </template>
  8. <template #lookMore>
  9. <view class="lookMore fz-font" @click="gotoLiveList">查看更多</view>
  10. </template>
  11. <template #activeBlock>
  12. <view class="activeData" v-for="(item, index) in liveList" :key="index">
  13. <!-- <image src="https://teacherapi.cocorobo.cn/teaching-file/static//activity/bg1.png" mode="aspectFill"></image> -->
  14. <image :src="item.pic" mode="aspectFill" @click="gotoAnnoun" :data-index="item.acId"></image>
  15. <view class="liveBroadcast">
  16. <view class="title">
  17. <view class="tag bqZ-font">类型</view>
  18. <text three-font>{{ item.acName }}</text>
  19. </view>
  20. <view class="operate">
  21. <view class="left">
  22. <view class="img">
  23. <image :src="item.avatar" mode="aspectFill"></image>
  24. </view>
  25. <view class="user fwb-font">{{ item.username }}</view>
  26. </view>
  27. <view class="collection" @click="coll" :data-e="item">
  28. <view class="img">
  29. <image :src="collArr.includes(item.acId) ? pic_coll2 : pic_coll" mode="aspectFill">
  30. </image>
  31. </view>
  32. <text class="fz-font">收藏</text>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. </viewX-Case>
  39. <viewX-Case style="margin-top: 10px">
  40. <template #title>
  41. <view class="title three-font">活动推荐</view>
  42. </template>
  43. <template #lookMore>
  44. <view class="lookMore fz-font" @click="lookMore">查看更多</view>
  45. </template>
  46. <template #activeBlock>
  47. <!-- <activity-case v-for="i in 10" :key="i"></activity-case> -->
  48. <teaching-case :activeList="activeList"></teaching-case>
  49. </template>
  50. </viewX-Case>
  51. <view class="" style="height: 30rpx; width: 100%"> </view>
  52. <view class="qiu" @click="fabClick">
  53. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//yym/jia.png" mode="aspectFill"></image>
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. export default {
  59. data() {
  60. return {
  61. navBarData: {
  62. title: "活动", //导航栏标题
  63. btn: 0, //是否显示返回按钮 0不显示 1 显示
  64. },
  65. actData: {
  66. btn: 1,
  67. },
  68. title: "uni-fab",
  69. // 直播活动列表
  70. liveList: [],
  71. // 教研活动列表
  72. activeList: [],
  73. collArr: [],
  74. pic_coll: 'https://teacherapi.cocorobo.cn/teaching-file/static/yym/Star 1 (Stroke).png',
  75. pic_coll2: 'https://teacherapi.cocorobo.cn/teaching-file/static/mine/Collect_yellow.png'
  76. };
  77. },
  78. methods: {
  79. // 获取活动推荐
  80. getData() {
  81. let data = {
  82. openid: uni.getStorageSync('oId'),
  83. ty: 1,
  84. page: 1, //下拉获取更多的备用字段
  85. lim: 12 //一次获取多少数据
  86. }
  87. this.$request('/selectActivity', "POST", data).then(res => {
  88. console.log(res[0]);
  89. this.activeList = res[0]
  90. })
  91. },
  92. // 获取直播活动
  93. getData2() {
  94. let data = {
  95. openid: uni.getStorageSync('oId'),
  96. ty: 0,
  97. page: 1, //下拉获取更多的备用字段
  98. lim: 12 //一次获取多少数据
  99. }
  100. this.$request('/selectActivity', "POST", data).then(res => {
  101. this.liveList = res[0]
  102. })
  103. },
  104. // 获取收藏
  105. getcoll() {
  106. let data = {
  107. oid: this.$store.state.user.openid, //用户id
  108. type: 0
  109. }
  110. this.$request('/selectOperator', 'POST', data).then(res => {
  111. // console.log('获取收藏', res);
  112. // 每次调用前清零,防止push叠加错误
  113. this.collArr = []
  114. // 将acid遍历到collArr中
  115. res[0].forEach(i => {
  116. this.collArr.push(i.acId)
  117. })
  118. })
  119. },
  120. // 收藏事件
  121. coll(event) {
  122. // 未登录去登录
  123. const value = this.$store.state.user.openid;
  124. if (value == '') {
  125. uni.navigateTo({
  126. url: "/pages/login_Wechat/login_Wechat",
  127. });
  128. return
  129. }
  130. let aId = event.currentTarget.dataset.e.acId
  131. let iscoll = null
  132. // 查询是否收藏过
  133. let data = {
  134. acid: aId,
  135. oid: this.$store.state.user.openid, //用户id
  136. ty: 0
  137. }
  138. this.$request('/selectOneOperator', 'POST', data).then(res => {
  139. // console.log('查询是否收藏过',res);
  140. res[0].length ? iscoll = true : iscoll = false;
  141. // iscoll为true表示已经收藏过,执行删除 为true则收藏
  142. if (iscoll) {
  143. console.log('执行删除');
  144. this.$request('/deleteOperator', 'POST', data).then(res => {
  145. console.log(res);
  146. console.log('this', this);
  147. this.getcoll()
  148. })
  149. } else {
  150. console.log('执行添加');
  151. this.$request('/insertOperator', 'POST', data).then(res => {
  152. console.log(res);
  153. this.getcoll()
  154. })
  155. }
  156. })
  157. },
  158. // 查看更多常规教研活动事件
  159. lookMore() {
  160. const value = this.$store.state.user.openid;
  161. if (value == '') {
  162. uni.navigateTo({
  163. url: "/pages/login_Wechat/login_Wechat",
  164. });
  165. } else {
  166. uni.navigateTo({
  167. url: "/pages/activityList/activityList",
  168. });
  169. }
  170. },
  171. // 查看更多直播活动事件
  172. gotoLiveList() {
  173. uni.navigateTo({
  174. url: '/pages/liveActivityList/liveActivityList'
  175. })
  176. },
  177. // 跳转到发布页
  178. fabClick() {
  179. const value = this.$store.state.user.openid;
  180. if (value == '') {
  181. uni.navigateTo({
  182. url: "/pages/login_Wechat/login_Wechat",
  183. });
  184. } else {
  185. uni.navigateTo({
  186. url: "/pages/publish/publish",
  187. });
  188. }
  189. },
  190. // 跳转活动详情页
  191. gotoAnnoun(e) {
  192. // return console.log( e.currentTarget.dataset.index);
  193. let aid = e.currentTarget.dataset.index
  194. const value = this.$store.state.user.openid;
  195. if (value == '') {
  196. uni.navigateTo({
  197. url: "/pages/login_Wechat/login_Wechat",
  198. });
  199. } else {
  200. uni.navigateTo({
  201. url: `/pages/activityDetail/activityDetail?acId=${aid}`,
  202. });
  203. }
  204. },
  205. },
  206. onShow() {
  207. this.getData()
  208. this.getData2()
  209. this.getcoll()
  210. this.getAllMessage() // 调用app.js中的方法
  211. }
  212. };
  213. </script>
  214. <style lang="scss">
  215. .activity {
  216. .qiu {
  217. width: 90rpx;
  218. height: 90rpx;
  219. position: fixed;
  220. z-index: 19;
  221. right: 30rpx;
  222. bottom: 10vh;
  223. border-radius: 50%;
  224. background-color: rgba(0, 86, 168, 1);
  225. display: flex;
  226. justify-content: center;
  227. align-items: center;
  228. image {
  229. position: absolute;
  230. width: 36rpx;
  231. height: 36rpx;
  232. }
  233. }
  234. .mid {
  235. // margin:20px 0;
  236. .activeData {
  237. width: 460rpx;
  238. display: inline-block;
  239. margin-right: 20px;
  240. image {
  241. width: 100%;
  242. height: 120px;
  243. border-radius: 10px;
  244. margin-bottom: 10px;
  245. }
  246. .liveBroadcast {
  247. flex: 1;
  248. width: 460rpx;
  249. display: flex;
  250. flex-direction: column;
  251. align-content: flex-end;
  252. .title {
  253. display: flex;
  254. align-items: center;
  255. margin-bottom: 10rpx;
  256. .tag {
  257. flex-shrink: 0;
  258. border: 1px #00b2b6 solid;
  259. font-size: 20rpx;
  260. width: 64rpx;
  261. display: flex;
  262. height: 34rpx;
  263. white-space: nowrap;
  264. justify-content: center;
  265. align-items: center;
  266. // padding: 4px 12px 4px 12px;
  267. border-radius: 5rpx;
  268. margin-right: 10rpx;
  269. color: #00b2b6;
  270. }
  271. text {
  272. // display: -webkit-box;//对象作为弹性伸缩盒子模型显示
  273. // overflow: hidden;//溢出隐藏
  274. // -webkit-box-orient: vertical;//设置伸缩盒子对象的子元素的排列方式
  275. // -webkit-line-clamp: 2;//设置 块元素包含的文本行数
  276. overflow: hidden;
  277. text-overflow: ellipsis;
  278. white-space: nowrap;
  279. }
  280. }
  281. .operate {
  282. display: flex;
  283. justify-content: space-between;
  284. align-items: center;
  285. padding: 20rpx 0;
  286. color: #666666;
  287. .left {
  288. display: flex;
  289. align-items: center;
  290. .img {
  291. width: 48rpx;
  292. height: 48rpx;
  293. margin-right: 10rpx;
  294. image {
  295. width: 100%;
  296. height: 100%;
  297. border-radius: 50%;
  298. }
  299. }
  300. .user {
  301. width: 70%;
  302. overflow: hidden;
  303. text-overflow: ellipsis;
  304. white-space: nowrap;
  305. }
  306. }
  307. .collection {
  308. display: flex;
  309. align-items: center;
  310. justify-content: space-between;
  311. width: 88rpx;
  312. height: 32rpx;
  313. position: relative;
  314. .img {
  315. position: absolute;
  316. left: 0;
  317. top: 6rpx;
  318. transform: translate(-130%, 0);
  319. }
  320. image {
  321. width: 27rpx;
  322. height: 25rpx;
  323. display: block;
  324. }
  325. // float: right;
  326. // font-size: 14px;
  327. // padding-top: 10px;
  328. }
  329. }
  330. }
  331. }
  332. .activeData:nth-child(1) {
  333. margin-left: 15px;
  334. }
  335. }
  336. .title {
  337. font-weight: bold;
  338. // color: #999999;
  339. }
  340. .lookMore {
  341. color: #666666;
  342. // font-size: 14px;
  343. }
  344. }
  345. </style>