From 245bf725a653aaabaad844f44dfa1bfd385a97e3 Mon Sep 17 00:00:00 2001 From: ZY <zc857179121@qq.com> Date: 星期二, 01 四月 2025 11:37:08 +0800 Subject: [PATCH] 1 --- Monitor-APP/pages/home/home.vue | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/Monitor-APP/pages/home/home.vue b/Monitor-APP/pages/home/home.vue index d5ccb02..bb29374 100644 --- a/Monitor-APP/pages/home/home.vue +++ b/Monitor-APP/pages/home/home.vue @@ -382,6 +382,7 @@ homeViewShow: true, infoViewShow: false, errorInfoViewShow: false, + errorBoardShow: false, homeMode: [], carInfo: [], infoMode: [], @@ -510,6 +511,23 @@ }, 1800000) }, methods: { + getCarInfoTest() { + let that = this + var result = ycqdata.carError + var res = result.data + that.carInfoModel(res) + }, + getCarInfo() { + let that = this + uni.request({ + url: that.commonUrl + "/monitor/device/error", + method: "GET", + success(result) { + var res = result.data + that.carInfoModel(res) + } + }) + }, carInfoModel(res) { let infoList = [] -- Gitblit v1.9.1