|
@@ -5,8 +5,10 @@
|
|
|
<view class="img cell-img">
|
|
|
<image :src="i.pic" mode="aspectFill"></image>
|
|
|
|
|
|
- <image class="star" @click.stop="coll" :data-e="i"
|
|
|
- :src="collArr.includes(i.acId) ? pic_coll2 : pic_coll " mode="aspectFill"></image>
|
|
|
+ <view class="starView" @click.stop="coll" :data-e="i">
|
|
|
+ <image class="star" :src="collArr.includes(i.acId) ? pic_coll2 : pic_coll " mode="aspectFill"></image>
|
|
|
+
|
|
|
+ </view>
|
|
|
|
|
|
|
|
|
</view>
|
|
@@ -78,7 +80,7 @@
|
|
|
// 收藏list
|
|
|
collArr: [],
|
|
|
// 节流阀
|
|
|
- stopTimer:0,
|
|
|
+ stopTimer: 0,
|
|
|
|
|
|
timer: null,
|
|
|
// animationDataArr: [],
|
|
@@ -116,10 +118,10 @@
|
|
|
title: '点击过快'
|
|
|
})
|
|
|
this.stopTimer = 1
|
|
|
-
|
|
|
- setTimeout(()=>{
|
|
|
- this.stopTimer=0
|
|
|
- },500)
|
|
|
+
|
|
|
+ setTimeout(() => {
|
|
|
+ this.stopTimer = 0
|
|
|
+ }, 500)
|
|
|
|
|
|
// return console.log(event);
|
|
|
let aId = event.currentTarget.dataset.e.acId
|
|
@@ -215,7 +217,7 @@
|
|
|
|
|
|
// 获取收藏事件
|
|
|
getdata() {
|
|
|
- console.log(111);
|
|
|
+ // console.log(111);
|
|
|
// this.timer=setInterval(() => {
|
|
|
// if(this.animationDataArr.length>0){
|
|
|
// console.log(this.animationDataArr.length);
|
|
@@ -227,7 +229,7 @@
|
|
|
if (!value) return this.collArr = []
|
|
|
|
|
|
// 触发收藏事件
|
|
|
- console.log('触发收藏事件');
|
|
|
+ // console.log('触发收藏事件');
|
|
|
// this.collArr: [],
|
|
|
let data = {
|
|
|
oid: this.$store.state.user.openid, //用户id
|
|
@@ -268,10 +270,22 @@
|
|
|
flex-shrink: 0;
|
|
|
position: relative;
|
|
|
|
|
|
- .star {
|
|
|
+ .starView {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+
|
|
|
+ box-sizing: content-box;
|
|
|
+ padding-bottom: 10rpx;
|
|
|
+ padding-left: 10rpx;
|
|
|
position: absolute;
|
|
|
- right: 10rpx;
|
|
|
- top: 10rpx;
|
|
|
+ right: 0rpx;
|
|
|
+ top: 0rpx;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .star {
|
|
|
width: 30rpx;
|
|
|
height: 30rpx;
|
|
|
}
|