修改一些发现的问题,新增秒杀活动设置,优惠券动态时间 以及 精准发圈用户和小程序直播页面

This commit is contained in:
lemon橪
2021-06-04 17:35:59 +08:00
parent 3eee6b35e8
commit 40bf9781b1
41 changed files with 598 additions and 3815 deletions

View File

@@ -64,8 +64,8 @@ export default {
return {
// 时间
uvs: "", // 访客数
pvs: "", // 浏览量
uvs: 0, // 访客数
pvs: 0, // 浏览量
dateList: [
// 日期选择列表
@@ -198,8 +198,8 @@ export default {
if (res.result) {
this.data = res.result;
res.result.forEach((item) => {
this.uvs += item.uvNum;
this.pvs += item.pvNum;
this.uvs += parseInt(item.uvNum);
this.pvs += parseInt(item.pvNum);
});
if (!this.orderChart) {