浏览代码

feat(SCRM-4546): [DE][C端]临时停车。缴费首页无感积分弹框。点击关闭按钮,在进入缴费首页,当天24时内应该不会在显示

lock.qiu@kerryprops.com 1 年之前
父节点
当前提交
5becc42eb4
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/components/wx-points-auth/wx-points-auth.vue

+ 3 - 1
src/components/wx-points-auth/wx-points-auth.vue

@@ -74,8 +74,11 @@ export default {
         close() {
             this.show = false
             var arr_lbs_end_time = []
+
             if (uni.getStorageSync('lbs_end_time')) {
                 arr_lbs_end_time = uni.getStorageSync('lbs_end_time')
+                arr_lbs_end_time = arr_lbs_end_time.filter(item => item.lbsId !== this.$store.state?.lbsId);
+                console.log('del_arr_lbs_end_time:::', arr_lbs_end_time)
                 arr_lbs_end_time.push({
                     lbsId: this.$store.state?.lbsId,
                     time: new Date().getTime()
@@ -87,7 +90,6 @@ export default {
                     lbsId: this.$store.state?.lbsId,
                     time: new Date().getTime()
                 })
-                uni.setStorageSync("ceshi", 4534534534534534534)
                 uni.setStorageSync("lbs_end_time", arr_lbs_end_time)
             }
         },