mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2025-12-18 17:05:54 +08:00
修改一些发现的问题,新增秒杀活动设置,优惠券动态时间 以及 精准发圈用户和小程序直播页面
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user