jyt 1 年之前
父節點
當前提交
a20c601c56
共有 3 個文件被更改,包括 12 次插入8 次删除
  1. +1
    -3
      pages/index/index.vue
  2. +7
    -1
      pages/reportExcel/dayReport.vue
  3. +4
    -4
      utils/domain.js

+ 1
- 3
pages/index/index.vue 查看文件

@@ -279,7 +279,7 @@
totalTimeShow: false,
statDateStart: '',
statDateEnd: '',
needShow: ['客户管理', '接待记录', '销讲数据', '设备管理', '值班顾问', '违禁记录'], // 权限配置需要展示出来的功能入口
needShow: ['客户管理', '接待记录', '销讲数据', '设备管理', '值班顾问', '顾问排名', '违禁记录'], // 权限配置需要展示出来的功能入口
};
},

@@ -850,8 +850,6 @@
path = '../../static/images/prohibited.png'
break
}
console.log(path)
return path
}
}


+ 7
- 1
pages/reportExcel/dayReport.vue 查看文件

@@ -443,8 +443,14 @@
// 分割数组排名前三,倒三
getTopThree() {
if (this.weekObj.XJTopList && this.weekObj.XJTopList.length > 0) {
this.carryOutLast = this.weekObj.XJTopList.slice(0, 3)
this.carryOutLast = this.weekObj.XJTopList.slice(0, 3).reverse()
this.carryOutLast.map((item, index) => {
if (item.value == 100) {
this.carryOutLast.splice(index, 1)
}
})
this.carryOutTop = this.weekObj.XJTopList.reverse().slice(0, 3)
console.log(this.weekObj.XJTopList)
}
if (this.weekObj.ZXLTopList && this.weekObj.ZXLTopList.length > 0) {
this.consultant = this.weekObj.ZXLTopList.reverse().slice(0, 3)


+ 4
- 4
utils/domain.js 查看文件

@@ -1,10 +1,10 @@
// http.js使用域名
const baseUrl = 'http://81.70.55.170:9090/autoSR/api';// 最新测试
// const baseUrl = 'http://192.168.31.211:8080/api';// 泽明
// const baseUrl = 'http://localhost:8080/autoSR/api'; // 本地
// const baseUrl = 'http://81.70.55.170:9090/autoSR/api';// 最新测试
// const baseUrl = 'http://192.168.31.148:8080/api';// 泽明
// const baseUrl = 'http://127.0.0.1:8080/autoSR/api'; // 本地
// const baseUrl = 'http://192.168.31.161:8080/autoSR/api'; // 长龙
// const baseUrl = 'http://192.168.31.86:9090/api'; // 盛浩
// const baseUrl = 'https://zkgj.quhouse.com/api'; // 质控正式
const baseUrl = 'https://zkgj.quhouse.com/api'; // 质控正式
// const baseUrl = 'https://hfju.com/api'; // 数智正式




Loading…
取消
儲存