update
This commit is contained in:
@@ -166,7 +166,8 @@
|
||||
let resData = result.find((v: any) => v.type == item.type);
|
||||
item.userCount = resData.userCount;
|
||||
if (item.type === '1') {
|
||||
item.tips = resData?.minData === null || resData?.maxData === null ? '' : `${resData?.minData}~${resData?.maxData}次/分钟`;
|
||||
item.tips =
|
||||
resData?.minData === null || resData?.maxData === null ? '' : `最小值${resData?.minData}~最大值${resData?.maxData}次/分钟`;
|
||||
}
|
||||
item.data = item.data.map((val: any) => {
|
||||
val.value = resData[val.key];
|
||||
|
||||
Reference in New Issue
Block a user