update
1.睡眠图标缺失字段
This commit is contained in:
@@ -153,9 +153,18 @@
|
|||||||
let tar = params[0];
|
let tar = params[0];
|
||||||
let str = '';
|
let str = '';
|
||||||
if (type.value === 1) {
|
if (type.value === 1) {
|
||||||
str = tar1.value > 0 ? '深睡' : '浅睡';
|
str = xArr[tar.dataIndex] + '<br/>' + (tar1.value > 0 ? '浅睡' : '深睡');
|
||||||
} else {
|
} else {
|
||||||
str = '深睡' + ' : ' + (tar.value ? tar.value : 0) + '<br/>' + '浅睡' + ' : ' + (tar1.value ? tar1.value : 0);
|
str =
|
||||||
|
xArr[tar.dataIndex] +
|
||||||
|
'<br/>' +
|
||||||
|
'深睡' +
|
||||||
|
' : ' +
|
||||||
|
(tar.value ? tar.value : 0) +
|
||||||
|
'<br/>' +
|
||||||
|
'浅睡' +
|
||||||
|
' : ' +
|
||||||
|
(tar1.value ? tar1.value : 0);
|
||||||
}
|
}
|
||||||
return str;
|
return str;
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user