fix: BUG修改
This commit is contained in:
parent
c33eb87eb0
commit
8432bafdd5
@ -18,7 +18,7 @@
|
||||
<span>额定人数: {{ equipInfo.ratedPeopleNum ? equipInfo.ratedPeopleNum : 0 }}人</span>
|
||||
<span>当前楼层数: {{ equipInfo.floorNum ? equipInfo.floorNum : 0 }}</span>
|
||||
<span>最大高度: {{ equipInfo.height ? equipInfo.height : 0 }}m</span>
|
||||
<!-- <span>高度百分比: {{ equipInfo.heightRatio ? equipInfo.heightRatio : 0 }}%</span> -->
|
||||
<span>高度百分比: {{ equipInfo.heightRatio ? equipInfo.heightRatio : 0 }}%</span>
|
||||
<!-- <span>额定上行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span>
|
||||
<span>额定下行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span> -->
|
||||
</div>
|
||||
|
||||
@ -57,7 +57,7 @@
|
||||
<span>额定人数: {{ equipInfo.ratedPeopleNum ? equipInfo.ratedPeopleNum : 0 }}人</span>
|
||||
<span>当前楼层数: {{ equipInfo.floorNum ? equipInfo.floorNum : 0 }}</span>
|
||||
<span>最大高度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span>
|
||||
<!-- <span>高度百分比: {{ equipInfo.heightRatio ? equipInfo.heightRatio : 0 }}%</span> -->
|
||||
<span>高度百分比: {{ equipInfo.heightRatio ? equipInfo.heightRatio : 0 }}%</span>
|
||||
<!-- <span>额定上行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span>
|
||||
<span>额定下行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span> -->
|
||||
</div>
|
||||
@ -403,7 +403,7 @@ const getAlarmList = async () => {
|
||||
requestData.createTime_end = searchForm.value.timeRange[1];
|
||||
}
|
||||
const res = await lifterAlarmPage(requestData);
|
||||
console.log(res);
|
||||
// console.log(res);
|
||||
if (res && res.result && res.result.records.length > 0) {
|
||||
alarmList.value = res.result.records;
|
||||
pages.value.total = +res.result.total;
|
||||
@ -462,7 +462,6 @@ const search = () => {
|
||||
getMonitorList();
|
||||
}
|
||||
};
|
||||
|
||||
// 获取项目名称分页
|
||||
const getProPage = async () => {
|
||||
let requestData = {
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
<span>额定人数: {{ equipInfo.ratedPeopleNum ? equipInfo.ratedPeopleNum : 0 }}人</span>
|
||||
<span>当前楼层数: {{ equipInfo.floorNum ? equipInfo.floorNum : 0 }}</span>
|
||||
<span>最大高度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span>
|
||||
<!-- <span>高度百分比: {{ equipInfo.heightRatio ? equipInfo.heightRatio : 0 }}%</span> -->
|
||||
<span>高度百分比: {{ equipInfo.heightRatio ? equipInfo.heightRatio : 0 }}%</span>
|
||||
<!-- <span>额定上行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span>
|
||||
<span>额定下行速度: {{ equipInfo.maxHeight ? equipInfo.maxHeight : 0 }}m</span> -->
|
||||
</div>
|
||||
@ -268,7 +268,8 @@ const alarmTransform = (obj: any) => {
|
||||
const getMonitorList = async () => {
|
||||
let requestData = {
|
||||
pageNo: pages.value.pageNo,
|
||||
pageSize: pages.value.pageSize
|
||||
pageSize: pages.value.pageSize,
|
||||
devId: equipInfo.value.id
|
||||
} as any;
|
||||
if (activeValue.value == "eng") {
|
||||
requestData.engineeringSn = searchSn.value;
|
||||
@ -280,7 +281,7 @@ const getMonitorList = async () => {
|
||||
requestData.createTime_end = searchForm.value.timeRange[1];
|
||||
}
|
||||
const res = await lifterDataPage(requestData);
|
||||
console.log(res);
|
||||
// console.log(res);
|
||||
if (res && res.result && res.result.records.length > 0) {
|
||||
monitorList.value = res.result.records;
|
||||
pages.value.total = +res.result.total;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user