@@ -279,7 +279,7 @@ | |||||
totalTimeShow: false, | totalTimeShow: false, | ||||
statDateStart: '', | statDateStart: '', | ||||
statDateEnd: '', | statDateEnd: '', | ||||
needShow: ['客户管理', '接待记录', '销讲数据', '设备管理', '值班顾问', '违禁记录'], // 权限配置需要展示出来的功能入口 | |||||
needShow: ['客户管理', '接待记录', '销讲数据', '设备管理', '值班顾问', '顾问排名', '违禁记录'], // 权限配置需要展示出来的功能入口 | |||||
}; | }; | ||||
}, | }, | ||||
@@ -850,8 +850,6 @@ | |||||
path = '../../static/images/prohibited.png' | path = '../../static/images/prohibited.png' | ||||
break | break | ||||
} | } | ||||
console.log(path) | |||||
return path | return path | ||||
} | } | ||||
} | } | ||||
@@ -443,8 +443,14 @@ | |||||
// 分割数组排名前三,倒三 | // 分割数组排名前三,倒三 | ||||
getTopThree() { | getTopThree() { | ||||
if (this.weekObj.XJTopList && this.weekObj.XJTopList.length > 0) { | 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) | this.carryOutTop = this.weekObj.XJTopList.reverse().slice(0, 3) | ||||
console.log(this.weekObj.XJTopList) | |||||
} | } | ||||
if (this.weekObj.ZXLTopList && this.weekObj.ZXLTopList.length > 0) { | if (this.weekObj.ZXLTopList && this.weekObj.ZXLTopList.length > 0) { | ||||
this.consultant = this.weekObj.ZXLTopList.reverse().slice(0, 3) | this.consultant = this.weekObj.ZXLTopList.reverse().slice(0, 3) | ||||
@@ -1,10 +1,10 @@ | |||||
// http.js使用域名 | // 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.161:8080/autoSR/api'; // 长龙 | ||||
// const baseUrl = 'http://192.168.31.86:9090/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'; // 数智正式 | // const baseUrl = 'https://hfju.com/api'; // 数智正式 | ||||