listBlock1.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <template>
  2. <view class="">
  3. <view class="listBlock1" v-for="(i,index) in classList" :key="index" @click="gotoDetail" :data-aid="i.acId">
  4. <view class="img cell-img">
  5. <image :src="i.pic" mode="aspectFill"></image>
  6. <view class="starView" @click.stop="coll" :data-e="i">
  7. <image class="star" :src="collArr.includes(i.acId) ? pic_coll2 : pic_coll " mode="aspectFill">
  8. </image>
  9. </view>
  10. </view>
  11. <view class="right">
  12. <view class="title">
  13. <view class="bqZ-font" style="font-size: 20rpx;" :class="i.acshape=='线下活动'?'tag':'tag1'">
  14. {{i.acshape}}
  15. </view>
  16. <view class="titTxt btn-font" style="font-size:34rpx ;">
  17. {{i.acName}}
  18. </view>
  19. </view>
  20. <view class="introduce">
  21. <view class="bri">
  22. {{ i.brief }}
  23. <!-- {{ i.address }} -->
  24. </view>
  25. <view class="tim">
  26. {{ i.create_at }}
  27. </view>
  28. </view>
  29. <view class="operate">
  30. <view class="left">
  31. <view class="add fz-font">已报名{{i.bnum}}人</view>
  32. </view>
  33. <!-- <view class="Oright" v-if="!indexId" @click.stop="gotoDetail" :data-aid="i.acId"> -->
  34. <view class="Oright" v-if="!indexId">
  35. <view class="text">{{ i.signNum?'已报名':'报名' }}</view>
  36. <view class="arrow">
  37. <image src="https://teacherapi.cocorobo.cn/teaching-file/static/mine/arrow-right-blue.png"
  38. mode="aspectFill"></image>
  39. </view>
  40. </view>
  41. <view class="Oright" v-if="indexId">
  42. <view class="mon">¥<text style="font-size: 40rpx;">{{i.cost}}</text> </view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </template>
  49. <script>
  50. export default {
  51. name: "listBlock1",
  52. // computed: {
  53. // ...mapState(['msgpop']) // 将 Vuex 中的 items 映射为组件的计算属性
  54. // },
  55. props: {
  56. classList: {
  57. type: Array,
  58. default () {
  59. return [];
  60. },
  61. },
  62. indexId: {
  63. type: Number,
  64. default () {
  65. return 0;
  66. },
  67. },
  68. },
  69. // props:['classList'],
  70. data() {
  71. return {
  72. // 收藏list
  73. collArr: [],
  74. // 节流阀
  75. stopTimer: 0,
  76. timer: null,
  77. // animationDataArr: [],
  78. // 收藏悬浮窗
  79. collpopulShow: false,
  80. // 决定悬浮窗显示哪些内容0 取消 1收藏
  81. collAoff: 0,
  82. // subArr: [],
  83. pic_coll: 'https://teacherapi.cocorobo.cn/teaching-file/static/Stara.png',
  84. pic_coll2: 'https://teacherapi.cocorobo.cn/teaching-file/static/mine/Collect_yellow.png',
  85. // pic_sub: 'https://teacherapi.cocorobo.cn/teaching-file/static/yym/Vector (Stroke).png',
  86. // pic_sub2: '../../static/mine/dingyue_blue.png'
  87. };
  88. },
  89. onShow() {},
  90. methods: {
  91. // 收藏事件
  92. coll(event) {
  93. const value = this.$store.state.user.openid;
  94. if (!value) {
  95. uni.showToast({
  96. title: '未登录,请登录',
  97. icon: 'none'
  98. })
  99. setTimeout(this.goLog, 1000)
  100. return
  101. }
  102. if (this.stopTimer) return uni.showToast({
  103. icon: 'none',
  104. title: '点击过快'
  105. })
  106. this.stopTimer = 1
  107. setTimeout(() => {
  108. this.stopTimer = 0
  109. }, 500)
  110. let aId = event.currentTarget.dataset.e.acId
  111. // let type= event.currentTarget.dataset.e.type
  112. //判断是否收藏
  113. let iscoll = null
  114. // 查询是否收藏过
  115. let data = {
  116. acid: aId,
  117. oid: this.$store.state.user.openid, //用户id
  118. ty: 0
  119. }
  120. this.$request('/selectOneOperator', 'POST', data).then(res => {
  121. // console.log('查询是否收藏过',res);
  122. res[0].length ? iscoll = true : iscoll = false;
  123. // iscoll为true表示已经收藏过,执行删除 为true则收藏
  124. if (iscoll) {
  125. // this.animationDataArr.push({
  126. // collAoff: 0
  127. // })
  128. this.$store.dispatch('asyncUpdatemsg', {
  129. collAoff: 0
  130. })
  131. // this.praiseMe()
  132. // console.log('执行删除');
  133. this.$request('/deleteOperator', 'POST', data).then(res => {
  134. this.getdata()
  135. setTimeout(() => {
  136. this.$store.dispatch('asyncDelMsg')
  137. }, 1500)
  138. })
  139. } else {
  140. // this.animationDataArr.push({
  141. // collAoff: 1
  142. // })
  143. // console.log('msgpop',this.$store.state.msgpop);
  144. this.$store.dispatch('asyncUpdatemsg', {
  145. collAoff: 1
  146. })
  147. // let aaa={collAoff: 1}
  148. // console.log('执行添加');
  149. this.$request('/insertOperator', 'POST', data).then(res => {
  150. this.getdata()
  151. // console.log(this.h);
  152. setTimeout(() => {
  153. this.$store.dispatch('asyncDelMsg')
  154. }, 1500)
  155. })
  156. }
  157. })
  158. },
  159. // 跳转到详情页
  160. gotoDetail(e) {
  161. const value = this.$store.state.user.openid;
  162. if (!value) {
  163. uni.showToast({
  164. title: '未登录,请登录',
  165. icon: 'none'
  166. })
  167. setTimeout(this.goLog, 1000)
  168. return
  169. }
  170. let aid = e.currentTarget.dataset.aid;
  171. uni.navigateTo({
  172. url: `/pages/activityDetailNew/activityDetailNew?acId=${aid}`
  173. });
  174. },
  175. //跳转到第三方链接
  176. gotoLink(e) {
  177. const value = this.$store.state.user.openid;
  178. if (!value) {
  179. uni.showToast({
  180. title: '未登录,请登录',
  181. icon: 'none'
  182. })
  183. setTimeout(this.goLog, 1000)
  184. return
  185. }
  186. let link = e.currentTarget.dataset.link;
  187. uni.navigateTo({
  188. url: "/pages/skipone/skipone?url=" + encodeURIComponent(link),
  189. });
  190. },
  191. // 获取收藏事件
  192. getdata() {
  193. // console.log(111);
  194. // this.timer=setInterval(() => {
  195. // if(this.animationDataArr.length>0){
  196. // console.log(this.animationDataArr.length);
  197. // this.animationDataArr.unshift()
  198. // }
  199. // }, 1500)
  200. const value = this.$store.state.user.openid;
  201. if (!value) return this.collArr = []
  202. // 触发收藏事件
  203. // console.log('触发收藏事件');
  204. // this.collArr: [],
  205. let data = {
  206. oid: this.$store.state.user.openid, //用户id
  207. type: 0
  208. }
  209. this.$request('/selectOperator', 'POST', data).then(res => {
  210. // console.log('获取收藏', res);
  211. // 每次调用前清零,防止push叠加错误
  212. this.collArr = []
  213. // 将acid遍历到collArr中
  214. res[0].forEach(i => {
  215. this.collArr.push(i.acId)
  216. })
  217. // console.log('this.collArr',this.collArr);
  218. })
  219. },
  220. goLog() {
  221. uni.navigateTo({
  222. url: "/pages/login_Wechat/login_Wechat",
  223. });
  224. },
  225. },
  226. }
  227. </script>
  228. <style lang="scss" scoped>
  229. .listBlock1 {
  230. display: flex;
  231. justify-content: space-between;
  232. background-color: #ffffff;
  233. padding: 20rpx 30rpx;
  234. width: 750rpx;
  235. .img {
  236. width: 160rpx;
  237. height: 160rpx;
  238. flex-shrink: 0;
  239. position: relative;
  240. .starView {
  241. width: 40rpx;
  242. height: 40rpx;
  243. box-sizing: content-box;
  244. padding-bottom: 10rpx;
  245. padding-left: 10rpx;
  246. position: absolute;
  247. right: 0rpx;
  248. top: 0rpx;
  249. display: flex;
  250. justify-content: center;
  251. align-items: center;
  252. }
  253. .star {
  254. width: 30rpx;
  255. height: 30rpx;
  256. }
  257. image {
  258. width: 100%;
  259. height: 100%;
  260. border-radius: 10rpx;
  261. }
  262. }
  263. .right {
  264. padding-left: 20rpx;
  265. flex: 1;
  266. display: flex;
  267. flex-direction: column;
  268. justify-content: space-between;
  269. .title {
  270. display: flex;
  271. width: 500rpx;
  272. justify-content: flex-start;
  273. align-items: center;
  274. .titTxt {
  275. color: rgba(0, 0, 0, 0.8);
  276. flex: 1;
  277. font-weight: bold;
  278. overflow: hidden;
  279. text-overflow: ellipsis;
  280. white-space: nowrap;
  281. }
  282. }
  283. .introduce {
  284. font-size: 24rpx;
  285. display: flex;
  286. justify-content: space-between;
  287. .bri {
  288. width: 250rpx;
  289. color: #a7a7a7;
  290. overflow: hidden;
  291. text-overflow: ellipsis;
  292. white-space: nowrap;
  293. }
  294. .tim {
  295. color: #a7a7a7;
  296. }
  297. }
  298. .operate {
  299. display: flex;
  300. justify-content: space-between;
  301. .left {
  302. display: flex;
  303. align-items: baseline;
  304. position: relative;
  305. width: 60%;
  306. .add {
  307. position: absolute;
  308. bottom: 0;
  309. left: 0;
  310. width: 100%;
  311. padding-left: 3rpx;
  312. color: rgba(0, 0, 0, 0.6) !important;
  313. }
  314. }
  315. .Oright {
  316. // width: 80px;
  317. display: flex;
  318. justify-content: flex-end;
  319. align-items: center;
  320. .mon {
  321. color: rgba(246, 135, 23, 1);
  322. font-weight: 700;
  323. font-size: 34rpx;
  324. }
  325. .text {
  326. font-size: 24rpx;
  327. color: #3081E8;
  328. }
  329. .arrow {
  330. display: flex;
  331. justify-content: center;
  332. margin-top: 5rpx;
  333. image {
  334. width: 32rpx;
  335. height: 32rpx;
  336. }
  337. }
  338. }
  339. }
  340. }
  341. .tag {
  342. border: 1px rgba(0, 178, 182, 1) solid;
  343. flex-shrink: 0;
  344. letter-spacing: 2rpx;
  345. // width: 104rpx;
  346. // height: 36rpx;
  347. padding: 2rpx 4rpx;
  348. display: flex;
  349. white-space: nowrap;
  350. justify-content: center;
  351. align-items: center;
  352. border-radius: 4rpx;
  353. margin-right: 10rpx;
  354. color: rgba(0, 178, 182, 1);
  355. line-height: 32rpx;
  356. }
  357. .tag1 {
  358. flex-shrink: 0;
  359. letter-spacing: 2rpx;
  360. // width: 104rpx;
  361. // height: 36rpx;
  362. padding: 2rpx 4rpx;
  363. display: flex;
  364. white-space: nowrap;
  365. justify-content: center;
  366. align-items: center;
  367. border-radius: 4rpx;
  368. margin-right: 10rpx;
  369. line-height: 32rpx;
  370. border: 1px rgba(0, 86, 168, 1) solid;
  371. color: rgba(0, 86, 168, 1);
  372. }
  373. }
  374. </style>