fix(测试跟踪): 测试计划查看报告控制台报错
--bug=1018686 --user=李玉号 【测试跟踪】测试计划-查看报告-打开性能报告-Console报错 https://www.tapd.cn/55049933/s/1291568
This commit is contained in:
parent
3abdea7bd4
commit
6ab483382f
|
@ -91,8 +91,8 @@ export default {
|
|||
getProjectApplicationConfig('TRACK_SHARE_REPORT_TIME')
|
||||
.then(res => {
|
||||
if (res.data) {
|
||||
let quantity = res.data.typeValue.substring(0, res.data.typeValue.length - 1);
|
||||
let unit = res.data.typeValue.substring(res.data.typeValue.length - 1);
|
||||
let quantity = res.data.typeValue ? res.data.typeValue.substring(0, res.data.typeValue.length - 1) : null;
|
||||
let unit = res.data.typeValue ? res.data.typeValue.substring(res.data.typeValue.length - 1) : null;
|
||||
if (unit === 'H') {
|
||||
res.data.typeValue = quantity + this.$t('commons.date_unit.hour');
|
||||
} else if (unit === 'D') {
|
||||
|
@ -102,6 +102,9 @@ export default {
|
|||
} else if (unit === 'Y') {
|
||||
res.data.typeValue = quantity + this.$t('commons.date_unit.year');
|
||||
}
|
||||
if (quantity == null && unit == null) {
|
||||
res.data.typeValue = '24' + this.$t('commons.date_unit.hour');
|
||||
}
|
||||
this.application = res.data;
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue