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}} - + + +