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 @@ + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + 导出 + + + + + + + + + + + + + + + + + + + + + 查看详情 + + + + + + + + + + + + + + + + + + + + + + + + + + + {{dict.label}} + + + + + + + + + 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}} - + + + {{d.row.province}}{{d.row.city}}{{d.row.county}}{{d.row.address}} + + @@ -127,7 +131,7 @@ - + @@ -156,11 +160,23 @@ placeholder="请选择营业时间范围"> - - + + + + + {{form.province}}{{form.city}}{{form.county}} + + + + 选择定位 + + - - + + + + + @@ -232,14 +248,20 @@ export default { { required: true, message: "店铺名称不能为空", trigger: "change" } ], address: [ - { required: true, message: "详细地址不能为空", trigger: "change" } + { required: true, message: "定位地址不能为空", trigger: "change" } ], type: [ - { required: true, message: "详细地址不能为空", trigger: "change" } + { required: true, message: "店铺类型不能为空", trigger: "change" } ], businessTimeStart: [ { required: true, message: "营业时间不允许为空", trigger: "change" } ], + contactName: [ + { required: true, message: "联系人不允许为空", trigger: "change" } + ], + contactMobile: [ + { required: true, message: "联系电话不允许为空", trigger: "change" } + ], }, showPlaceSearchMap: false, span: 12, @@ -270,12 +292,13 @@ export default { methods: { parseTime, onSubmitAddress(addr) { - this.form.address = addr.address; + this.form.address = addr.name; this.form.lat = addr.lat; this.form.lng = addr.lng; this.form.province = addr.province; this.form.city = addr.city; this.form.county = addr.county; + this.form.specificAddress = addr.name; }, /** 查询商户列表列表 */ getList() { @@ -302,9 +325,9 @@ export default { specificAddress: null, businessTimeStart: "08:00", businessTimeEnd: "18:00", - province: null, - city: null, - county: null, + province: "福建省", + city: "宁德市", + county: "福鼎市", lng: null, lat: null, createTime: null, diff --git a/src/views/ss/suit/index.vue b/src/views/ss/suit/index.vue index 834056e..495054c 100644 --- a/src/views/ss/suit/index.vue +++ b/src/views/ss/suit/index.vue @@ -79,7 +79,7 @@ - + diff --git a/src/views/system/device/detail.vue b/src/views/system/device/detail.vue index 5d03f96..668f9b9 100644 --- a/src/views/system/device/detail.vue +++ b/src/views/system/device/detail.vue @@ -18,9 +18,12 @@ {{deviceData.mac | defaultValue}} - + {{deviceData.model | defaultValue}} + + + {{deviceData.userName | defaultValue}} {{deviceData.groupName | defaultValue}} {{deviceData.remark | defaultValue}} @@ -89,7 +92,7 @@ import TenantList from "@/views/system/device/components/tenantList.vue"; export default { name: 'deviceDetail', components: {TenantList, ResetRecord, BindRecord, ReadingRecord, MeterRecordReport, QrCode, RechargeRecord, LineChart}, - dicts: ['sm_device_status', 'sm_device_outage_way', 'sm_device_notice_way'], + dicts: ['sm_device_status', 'sm_device_outage_way', 'sm_device_notice_way', 'sm_model_tag'], data() { return { loading: false, diff --git a/src/views/system/model/index.vue b/src/views/system/model/index.vue index 33cc295..7129ec5 100644 --- a/src/views/system/model/index.vue +++ b/src/views/system/model/index.vue @@ -82,6 +82,9 @@ + + + @@ -133,13 +136,26 @@ - + + + + + + - + + + + @@ -161,6 +177,7 @@ import {listModel, getModel, addModel, updateModel, logicDelModel} from "@/api/s export default { name: "Model", + dicts: ['sm_model_tag'], data() { return { // 遮罩层 @@ -194,9 +211,27 @@ export default { form: {}, // 表单校验 rules: { + modelName: [ + { required: true, message: "型号名称不能为空", trigger: "blur" } + ], + model: [ + { required: true, message: "型号不能为空", trigger: "blur" } + ], + idCode: [ + { required: true, message: "识别码不能为空", trigger: "blur" } + ], + tags: [ + { required: true, message: "型号标签不能为空", trigger: "blur" }, + { min: 1, type: 'array', message: "型号标签不能为空", trigger: "blur" } + ] } }; }, + computed: { + isEdit() { + return this.title === "修改型号列表"; + } + }, created() { this.getList(); }, diff --git a/src/views/system/recharge/index.vue b/src/views/system/recharge/index.vue index f8afb38..ad30c7e 100644 --- a/src/views/system/recharge/index.vue +++ b/src/views/system/recharge/index.vue @@ -17,10 +17,10 @@ @keyup.enter.native="handleQuery" /> - + @@ -50,32 +50,27 @@ - + {{d.row.money | money}} - - - {{d.row.deviceAmount | money}} - - - + {{d.row.arrivalAmount | money}} - - - {{d.row.channelCost | money}} - - {{d.row.serviceCharge | money}} + + + {{d.row.channelCost | money}} + + {{d.row.serviceCharge - d.row.channelCost | money}} @@ -83,7 +78,7 @@ - +