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 @@ 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']" - >一键上线 + >一键解禁 一键下线 + >一键禁用 - + - - + + + - - + - - - - + + + + + + - + - +