activityPage.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. this.activeList = res[0]
  89. })
  90. },
  91. // 获取直播活动
  92. getData2() {
  93. let data = {
  94. openid: uni.getStorageSync('oId'),
  95. ty: 0,
  96. page: 1, //下拉获取更多的备用字段
  97. lim: 12 //一次获取多少数据
  98. }
  99. this.$request('/selectActivity', "POST", data).then(res => {
  100. this.liveList = res[0]
  101. })
  102. },
  103. // 获取收藏
  104. getcoll(){
  105. let data = {
  106. oid: this.$store.state.user.openid, //用户id
  107. type: 0
  108. }
  109. this.$request('/selectOperator', 'POST', data).then(res => {
  110. // console.log('获取收藏', res);
  111. // 每次调用前清零,防止push叠加错误
  112. this.collArr = []
  113. // 将acid遍历到collArr中
  114. res[0].forEach(i => {
  115. this.collArr.push(i.acId)
  116. })
  117. })
  118. },
  119. // 收藏事件
  120. coll(event){
  121. // 未登录去登录
  122. const value = this.$store.state.user.openid;
  123. if (value == '') {
  124. uni.navigateTo({
  125. url: "/pages/login_Wechat/login_Wechat",
  126. });
  127. return
  128. }
  129. let aId=event.currentTarget.dataset.e.acId
  130. let iscoll = null
  131. // 查询是否收藏过
  132. let data = {
  133. acid: aId,
  134. oid: this.$store.state.user.openid, //用户id
  135. ty: 0
  136. }
  137. this.$request('/selectOneOperator', 'POST', data).then(res => {
  138. // console.log('查询是否收藏过',res);
  139. res[0].length ? iscoll = true : iscoll = false;
  140. // iscoll为true表示已经收藏过,执行删除 为true则收藏
  141. if (iscoll) {
  142. console.log('执行删除');
  143. this.$request('/deleteOperator', 'POST', data).then(res => {
  144. console.log(res);
  145. console.log('this',this);
  146. this.getcoll()
  147. })
  148. } else {
  149. console.log('执行添加');
  150. this.$request('/insertOperator', 'POST', data).then(res => {
  151. console.log(res);
  152. this.getcoll()
  153. })
  154. }
  155. })
  156. },
  157. // 查看更多常规教研活动事件
  158. lookMore() {
  159. const value = this.$store.state.user.openid;
  160. if (value == '') {
  161. uni.navigateTo({
  162. url: "/pages/login_Wechat/login_Wechat",
  163. });
  164. } else {
  165. uni.navigateTo({
  166. url: "/pages/activityList/activityList",
  167. });
  168. }
  169. },
  170. // 查看更多直播活动事件
  171. gotoLiveList() {
  172. uni.navigateTo({
  173. url: '/pages/liveActivityList/liveActivityList'
  174. })
  175. },
  176. // 跳转到发布页
  177. fabClick() {
  178. const value = this.$store.state.user.openid;
  179. if (value == '') {
  180. uni.navigateTo({
  181. url: "/pages/login_Wechat/login_Wechat",
  182. });
  183. } else {
  184. uni.navigateTo({
  185. url: "/pages/publish/publish",
  186. });
  187. }
  188. },
  189. // 跳转活动详情页
  190. gotoAnnoun(e) {
  191. // return console.log( e.currentTarget.dataset.index);
  192. let aid=e.currentTarget.dataset.index
  193. const value = this.$store.state.user.openid;
  194. if (value == '') {
  195. uni.navigateTo({
  196. url: "/pages/login_Wechat/login_Wechat",
  197. });
  198. } else {
  199. uni.navigateTo({
  200. url: `/pages/activityDetail/activityDetail?acId=${aid}`,
  201. });
  202. }
  203. },
  204. },
  205. onShow() {
  206. this.getData()
  207. this.getData2()
  208. this.getcoll()
  209. }
  210. };
  211. </script>
  212. <style lang="scss">
  213. .activity {
  214. .qiu {
  215. width: 90rpx;
  216. height: 90rpx;
  217. position: fixed;
  218. z-index: 19;
  219. right: 30rpx;
  220. bottom: 10vh;
  221. border-radius: 50%;
  222. background-color: rgba(0, 86, 168, 1);
  223. display: flex;
  224. justify-content: center;
  225. align-items: center;
  226. image {
  227. position: absolute;
  228. width: 36rpx;
  229. height: 36rpx;
  230. }
  231. }
  232. .mid {
  233. // margin:20px 0;
  234. .activeData {
  235. width: 460rpx;
  236. display: inline-block;
  237. margin-right: 20px;
  238. image {
  239. width: 100%;
  240. height: 120px;
  241. border-radius: 10px;
  242. margin-bottom: 10px;
  243. }
  244. .liveBroadcast {
  245. flex: 1;
  246. width: 460rpx;
  247. display: flex;
  248. flex-direction: column;
  249. align-content: flex-end;
  250. .title {
  251. display: flex;
  252. align-items: center;
  253. margin-bottom: 10rpx;
  254. .tag {
  255. // border: 1px #00b2b6 solid;
  256. // // font-size: 12px;
  257. // width: 64rpx;
  258. // height: 38rpx;
  259. // display: flex;
  260. // white-space: nowrap;
  261. // justify-content: center;
  262. // align-items: center;
  263. // // padding: 2px 4px;
  264. // padding: 1rpx 4rpx;
  265. // border-radius: 3px;
  266. // margin-right: 10rpx;
  267. // color: #00b2b6;]\
  268. flex-shrink: 0;
  269. border: 1px #00b2b6 solid;
  270. font-size: 20rpx;
  271. width: 64rpx;
  272. display: flex;
  273. height: 34rpx;
  274. white-space: nowrap;
  275. justify-content: center;
  276. align-items: center;
  277. // padding: 4px 12px 4px 12px;
  278. border-radius: 5rpx;
  279. margin-right: 10rpx;
  280. color: #00b2b6;
  281. }
  282. text {
  283. // display: -webkit-box;//对象作为弹性伸缩盒子模型显示
  284. // overflow: hidden;//溢出隐藏
  285. // -webkit-box-orient: vertical;//设置伸缩盒子对象的子元素的排列方式
  286. // -webkit-line-clamp: 2;//设置 块元素包含的文本行数
  287. overflow: hidden;
  288. text-overflow: ellipsis;
  289. white-space: nowrap;
  290. }
  291. }
  292. .operate {
  293. display: flex;
  294. justify-content: space-between;
  295. align-items: center;
  296. padding: 20rpx 0;
  297. color: #666666;
  298. // margin-bottom: 20rpx;
  299. // padding-bottom: 20rpx;
  300. .left {
  301. display: flex;
  302. align-items: center;
  303. .img {
  304. width: 48rpx;
  305. height: 48rpx;
  306. margin-right: 10rpx;
  307. image {
  308. width: 100%;
  309. height: 100%;
  310. border-radius: 50%;
  311. }
  312. }
  313. .user {}
  314. }
  315. .collection {
  316. display: flex;
  317. align-items: center;
  318. justify-content: space-between;
  319. width: 88rpx;
  320. height: 32rpx;
  321. position: relative;
  322. .img {
  323. position: absolute;
  324. left: 0;
  325. top: 6rpx;
  326. transform: translate(-130%, 0);
  327. }
  328. image {
  329. width: 27rpx;
  330. height: 25rpx;
  331. display: block;
  332. }
  333. // float: right;
  334. // font-size: 14px;
  335. // padding-top: 10px;
  336. }
  337. }
  338. }
  339. }
  340. .activeData:nth-child(1) {
  341. margin-left: 15px;
  342. }
  343. }
  344. .title {
  345. font-weight: bold;
  346. // color: #999999;
  347. }
  348. .lookMore {
  349. color: #666666;
  350. // font-size: 14px;
  351. }
  352. }
  353. </style>