From 24462ed7d52db340e3c6a90197a14636a64e8029 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A4=A7=E5=8F=94?= <494979559@qq.com> Date: Sun, 5 May 2024 17:10:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=85=E9=9A=9C=E4=B8=8A=E6=8A=A5=E3=80=81?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E3=80=81=E5=95=86=E6=88=B7=E5=90=88=E4=BD=9C?= =?UTF-8?q?=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/ss/abnormal.js | 44 +++ .../Map/PlaceSearch/PlaceSearchDialog.vue | 2 + src/views/ss/abnormal/index.vue | 296 ++++++++++++++++++ src/views/ss/store/index.vue | 47 ++- src/views/ss/suit/index.vue | 2 +- src/views/system/device/detail.vue | 7 +- src/views/system/model/index.vue | 39 ++- src/views/system/recharge/index.vue | 25 +- 8 files changed, 430 insertions(+), 32 deletions(-) create mode 100644 src/api/ss/abnormal.js create mode 100644 src/views/ss/abnormal/index.vue diff --git a/src/api/ss/abnormal.js b/src/api/ss/abnormal.js new file mode 100644 index 0000000..cca8a0d --- /dev/null +++ b/src/api/ss/abnormal.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询设备故障列表 +export function listAbnormal(query) { + return request({ + url: '/ss/abnormal/list', + method: 'get', + params: query + }) +} + +// 查询设备故障详细 +export function getAbnormal(abnormalId) { + return request({ + url: '/ss/abnormal/' + abnormalId, + method: 'get' + }) +} + +// 新增设备故障 +export function addAbnormal(data) { + return request({ + url: '/ss/abnormal', + method: 'post', + data: data + }) +} + +// 修改设备故障 +export function updateAbnormal(data) { + return request({ + url: '/ss/abnormal', + method: 'put', + data: data + }) +} + +// 删除设备故障 +export function delAbnormal(abnormalId) { + return request({ + url: '/ss/abnormal/' + abnormalId, + method: 'delete' + }) +} diff --git a/src/components/Map/PlaceSearch/PlaceSearchDialog.vue b/src/components/Map/PlaceSearch/PlaceSearchDialog.vue index 25dbc57..86a75d8 100644 --- a/src/components/Map/PlaceSearch/PlaceSearchDialog.vue +++ b/src/components/Map/PlaceSearch/PlaceSearchDialog.vue @@ -61,6 +61,7 @@ export default { province: component.province, city: component.city === '' ? '市辖区' : component.city, county: component.district, + name: component.street + component.streetNumber } }, onSelectChange(addr) { @@ -73,6 +74,7 @@ export default { province: data.pname, city: data.cityname === data.pname ? '市辖区' : data.cityname, county: data.adname, + name: data.address + data.name, } }, // 确定 diff --git a/src/views/ss/abnormal/index.vue b/src/views/ss/abnormal/index.vue new file mode 100644 index 0000000..0c99f02 --- /dev/null +++ b/src/views/ss/abnormal/index.vue @@ -0,0 +1,296 @@ + + + diff --git a/src/views/ss/store/index.vue b/src/views/ss/store/index.vue index 5109a00..deb8f30 100644 --- a/src/views/ss/store/index.vue +++ b/src/views/ss/store/index.vue @@ -89,7 +89,11 @@ {{d.row.businessTimeStart}} 至 {{d.row.businessTimeEnd}} - + + +