diff --git a/src/api/system/commandLog.js b/src/api/system/commandLog.js new file mode 100644 index 0000000..1d6d4f5 --- /dev/null +++ b/src/api/system/commandLog.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询命令日志列表 +export function listCommandLog(query) { + return request({ + url: '/system/commandLog/list', + method: 'get', + params: query + }) +} + +// 查询命令日志详细 +export function getCommandLog(id) { + return request({ + url: '/system/commandLog/' + id, + method: 'get' + }) +} + +// 新增命令日志 +export function addCommandLog(data) { + return request({ + url: '/system/commandLog', + method: 'post', + data: data + }) +} + +// 修改命令日志 +export function updateCommandLog(data) { + return request({ + url: '/system/commandLog', + method: 'put', + data: data + }) +} + +// 删除命令日志 +export function delCommandLog(id) { + return request({ + url: '/system/commandLog/' + id, + method: 'delete' + }) +} diff --git a/src/api/system/order.js b/src/api/system/order.js index ca00d12..0e8f858 100644 --- a/src/api/system/order.js +++ b/src/api/system/order.js @@ -84,6 +84,14 @@ export function deduction(data) { return request({ url: '/appVerify/order/deduction', method: 'post', - params: data + data: data + }) +} + +// 押金退款 +export function handleRefund(orderId) { + return request({ + url: '/system/order/depositRefund/'+orderId, + method: 'post', }) } diff --git a/src/components/Map/location/LocationMap.vue b/src/components/Map/location/LocationMap.vue index a2b1eba..c2c38f3 100644 --- a/src/components/Map/location/LocationMap.vue +++ b/src/components/Map/location/LocationMap.vue @@ -142,25 +142,31 @@ export default { }) } }, - addMarker(lng, lat, title,status,onlineStatus) { + addMarker: function(lng, lat, title, status, onlineStatus) { //创建一个 Marker 实例: - console.log("title==========="+title) + console.log('title===========' + title) + let icon = this.formarStatus(status, onlineStatus) + console.log('icon===========' + icon) let marker = new AMap.Marker({ position: new AMap.LngLat(lng, lat), //经纬度对象 - icon: this.formarStatus(status,onlineStatus), + icon: new AMap.Icon({ + image: icon, + size: new AMap.Size(25, 30), // 设置图标的宽高 + imageSize: new AMap.Size(25, 30) // 设置图标的实际显示尺寸 + }), title: title, - offset: new AMap.Pixel(-20, -40) - }); + offset: new AMap.Pixel(-12.5, -35) + }) //将创建的点标记添加到已有的地图实例: - this.map.add(marker); - this.markers.push(marker); + this.map.add(marker) + this.markers.push(marker) // 创建一个 Text 实例来显示标题 let text = new AMap.Text({ text: title, anchor: 'center', // 设置文本的锚点 position: new AMap.LngLat(lng, lat), // 经纬度对象 - offset: new AMap.Pixel(0, -55), + offset: new AMap.Pixel(0, -50), style: { 'background-color': '#1890ff', // 背景颜色为蓝色 'border': 'none', // 边框颜色与背景一致 @@ -169,36 +175,34 @@ export default { 'font-size': '14px', // 字体大小 'padding': '5px 10px' // 内边距,调整文本框的大小 } - }); + }) // 将文本标签添加到地图实例 - this.map.add(text); + this.map.add(text) }, formarStatus(status,onlineStatus){ - function formarStatus(status,onlineStatus) { - if(onlineStatus == "0"){ - if(status == "3"){ - return globalConfig.icon.redyellow; - }else if(status == "4"){ - return globalConfig.icon.orangered; - } - return globalConfig.icon.red; - }else{ - if(status == "0"){ - return globalConfig.icon.gray; - }else if(status == "1"){ - return globalConfig.icon.blue; - }else if(status == "2"){ - return globalConfig.icon.green; - }else if(status == "3"){ - return globalConfig.icon.yellow; - }else if(status == "4"){ - return globalConfig.icon.orange; - }else if(status == "8"){ - return globalConfig.icon.gray; - }else if(status == "9"){ - return globalConfig.icon.gray; - } + if(onlineStatus == "0"){ + if(status == "3"){ + return globalConfig.icon.redyellow; + }else if(status == "4"){ + return globalConfig.icon.orangered; + } + return globalConfig.icon.red; + }else{ + if(status == "0"){ + return globalConfig.icon.gray; + }else if(status == "1"){ + return globalConfig.icon.blue; + }else if(status == "2"){ + return globalConfig.icon.green; + }else if(status == "3"){ + return globalConfig.icon.yellow; + }else if(status == "4"){ + return globalConfig.icon.orange; + }else if(status == "8"){ + return globalConfig.icon.gray; + }else if(status == "9"){ + return globalConfig.icon.gray; } } }, diff --git a/src/views/index.vue b/src/views/index.vue index 51bfd72..7c6804b 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -1,17 +1,30 @@ + + 可用余额: {{balance}} 元 + diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index 0a091ea..3ad88be 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -169,7 +169,7 @@ - + diff --git a/src/views/system/device/index.vue b/src/views/system/device/index.vue index 1ddc434..d368e2f 100644 --- a/src/views/system/device/index.vue +++ b/src/views/system/device/index.vue @@ -48,10 +48,10 @@ @@ -113,7 +113,7 @@ :disabled="multiple" @click="oneClickOnline" v-hasPermi="['system:device:edit']" - >一键上线 + >一键解禁 一键下线 + >一键禁用 - + - - + + + - - + - - - - + + + + + + @@ -180,12 +182,12 @@ - + {{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }} - + {{ scope.row.status === '0' ? '上线' : '下线' }} + >{{ scope.row.status === '0' ? '出仓' : '回仓' }} {{ scope.row.status === '8' ? '上线' : '下线' }} + >{{ scope.row.status === '8' ? '解禁' : '禁用' }} - + { + // console.log("response.data------",response.data) + let options = response.data; + let mergedObj = { dictValue: '34', dictLabel: '使用中' }; + options = options.filter(option => { + return option.dictValue !== '3' && option.dictValue !== '4'; + }); + options.splice(4, 0, mergedObj); + this.statusOptions = options; + // console.log("statusOptions------",this.statusOptions) + }); this.userName = this.$store.state.user.name; this.getList(); - console.log("------"+this.activeIndex) + // console.log("------"+this.activeIndex) if(this.userName === 'admin'){ listDept({status: '0' }).then(response => { this.deptOptions = response.data; }); } + listModel(this.queryParams).then(response => { + this.modelOptions = response.rows; + }); + listArea(this.queryParams).then(response => { + this.areaOptions = response.rows; + }); + }, + watch: { + 'form.modelId': function(newVal) { + if (newVal) { + this.fetchData(newVal); + } + } }, methods: { + /** 当选择车型时调用 */ + fetchData(modelId) { + // console.log("根据车型id查询运营商"+modelId) + getModel(modelId).then(response => { + this.areaOptions = response.data.areaList; + let areaOptions = response.data.areaList; + areaOptions.length > 0 ? this.form.areaId = areaOptions[0].areaId : this.form.areaId = null; + }); + }, + /** 排序触发事件 */ + handleSortChange(column, prop, order) { + this.queryParams.orderByColumn = column.prop; + this.queryParams.isAsc = column.order; + this.getList(); + }, + formatVoltage(row){ + if(row == undefined || row.voltage == null){ + return ""; + } + return row.voltage + 'V'; + }, + formatPower(row){ + if(row == undefined || row.remainingPower == null){ + return ""; + } + return row.remainingPower + '%'; + }, oneClickOnline(row){ const deviceIds = row.deviceId || this.ids; - this.$modal.confirm('确认一键上线?').then(function() { + this.$modal.confirm('确认一键解禁?').then(function() { return oneClickOnline(deviceIds); }).then(() => { this.getList(); @@ -529,7 +585,7 @@ export default { }, oneClickOffline(row){ const deviceIds = row.deviceId || this.ids; - this.$modal.confirm('确认一键下线?').then(function() { + this.$modal.confirm('确认一键禁用?').then(function() { return oneClickOffline(deviceIds); }).then(() => { this.getList(); @@ -584,12 +640,6 @@ export default { this.total = response.total; this.loading = false; }); - listModel(this.queryParams).then(response => { - this.modelOptions = response.rows; - }); - listArea(this.queryParams).then(response => { - this.areaOptions = response.rows; - }); }, // 取消按钮 cancel() { @@ -664,10 +714,10 @@ export default { const deviceId = row.deviceId || this.ids getDevice(deviceId).then(response => { let form1 = response.data; - let text = form1.status === '0'? '上线': '下线'; + let text = form1.status === '0'? '出仓': '回仓'; form1.status = form1.status === '0'? '1': '0'; if(form1.areaId == null){ - this.$modal.msgError("未绑定运营区,无法上线!") + this.$modal.msgError("未绑定运营区,无法出仓!") }else{ this.$modal.confirm('是否确认'+text+'设备MAC为"' + form1.mac + '"的设备吗?').then(function() { return updateDevice(form1); @@ -684,10 +734,10 @@ export default { const deviceId = row.deviceId || this.ids getDevice(deviceId).then(response => { let form1 = response.data; - let text = form1.status === '8'? '上线': '下线'; + let text = form1.status === '8'? '解禁': '禁用'; form1.status = form1.status === '8'? '1': '8'; if(form1.areaId == null){ - this.$modal.msgError("未绑定运营区,无法上线!") + this.$modal.msgError("未绑定运营区,无法解禁!") }else{ this.$modal.confirm('是否确认'+text+'设备MAC为"' + form1.mac + '"的设备吗?').then(function() { return updateDevice(form1); diff --git a/src/views/system/flow/index.vue b/src/views/system/flow/index.vue index edde8ee..c6f84f6 100644 --- a/src/views/system/flow/index.vue +++ b/src/views/system/flow/index.vue @@ -1,14 +1,16 @@ - - - - - - - - + + + + + + - + @@ -185,6 +188,7 @@