From fa9253b07847ea1eb57bb38dd56ed62e692d4c7b Mon Sep 17 00:00:00 2001 From: tx <2622874537@qq.com> Date: Thu, 9 Jan 2025 18:02:49 +0800 Subject: [PATCH] 11 --- src/api/system/device.js | 77 ++- src/components/Charts/MiniLine.vue | 81 +++ src/views/index.vue | 212 ++++-- src/views/system/changeBalance/index.vue | 6 +- src/views/system/detail/index.vue | 4 + src/views/system/device/device_detail.vue | 223 ++++--- src/views/system/device/index.vue | 7 + src/views/system/equipment/index.vue | 5 +- src/views/system/order/index.vue | 18 +- src/views/system/room/index.vue | 6 +- src/views/system/rule/index.vue | 5 +- src/views/system/store/index.vue | 5 + src/views/system/userWithdraw/index.vue | 8 +- src/views/system/withdraw/index.vue | 4 + .../user/user/components/UserConfigDialog.vue | 2 +- src/views/user/user/components/bindList.vue | 198 ++++++ src/views/user/user/components/userDevice.vue | 2 +- src/views/user/user/detail.vue | 605 +++++++++++++----- src/views/user/user/index.vue | 5 +- 19 files changed, 1104 insertions(+), 369 deletions(-) create mode 100644 src/components/Charts/MiniLine.vue create mode 100644 src/views/user/user/components/bindList.vue diff --git a/src/api/system/device.js b/src/api/system/device.js index 3df6f16..aa8a103 100644 --- a/src/api/system/device.js +++ b/src/api/system/device.js @@ -93,45 +93,11 @@ export function allDevice() { }) } -// 开锁 -export function handleUnlocking(data){ - return request({ - url: '/system/device/admin/unlockingByMac?mac='+data.mac, - method: 'post' - }) -} -// 关锁 -export function handleLock(data){ - return request({ - url: '/system/device/admin/lockByMac?mac='+data.mac, - method: 'post' - }) -} -// 响铃寻车 -export function ring(data){ - return request({ - url: '/app/device/ringByMac?mac='+data.mac, - method: 'post' - }) -} -// 坐垫锁 -export function seatCushionLock(data){ - return request({ - url: '/appVerify/device/seatCushionLockByMac?mac='+data.mac, - method: 'post' - }) -} -// 重启设备 -export function reboot(data){ - return request({ - url: '/system/device/device/reboot?mac='+data.mac, - method: 'post' - }) -} + // 根据sn查询设备 export function getDeviceBySn(sn){ return request({ @@ -147,4 +113,45 @@ export function bindDeviceFacility(data){ method: 'post', // data: data }) +} + +// 设备开关 +export function deviceSwitch(data){ + return request({ + url: '/system/device/'+data.deviceId+'/switch?open='+data.open, + method: 'put', + // data: data + }) +} +// 刷新设备 +export function refreshIot(deviceId){ + return request({ + url: '/system/device/'+deviceId+'/refreshIot', + method: 'get' + }) +} + +// 重启设备 +export function rebootDevice(deviceId){ + return request({ + url: '/system/device/'+deviceId+'/reboot', + method: 'put' + }) +} +// 设备下线 +export function offlineDevice(deviceId){ + return request({ + url: '/system/device/'+deviceId+'/offline', + method: 'put' + }) +} + + +// 设备投放 +export function placementDevice(data){ + return request({ + url: '/system/device/placement/', + method: 'post', + data: data + }) } \ No newline at end of file diff --git a/src/components/Charts/MiniLine.vue b/src/components/Charts/MiniLine.vue new file mode 100644 index 0000000..d3c07b2 --- /dev/null +++ b/src/components/Charts/MiniLine.vue @@ -0,0 +1,81 @@ + + + + + \ No newline at end of file diff --git a/src/views/index.vue b/src/views/index.vue index e01fed8..b3bdbbe 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -1,86 +1,158 @@ - - + \ No newline at end of file diff --git a/src/views/system/changeBalance/index.vue b/src/views/system/changeBalance/index.vue index 1501d96..f008c90 100644 --- a/src/views/system/changeBalance/index.vue +++ b/src/views/system/changeBalance/index.vue @@ -188,6 +188,7 @@ import { listChangeBalance, getChangeBalance, delChangeBalance, addChangeBalance export default { name: "ChangeBalance", dicts: ['rl_change_type', 'rl_business_type','rl_user_type'], + props: ['userId'], data() { return { // 遮罩层 @@ -237,6 +238,9 @@ export default { methods: { /** 查询余额变动列表 */ getList() { + if (this.userId) { + this.queryParams.userId = this.userId; + } this.loading = true; listChangeBalance(this.queryParams).then(response => { this.changeBalanceList = response.rows; @@ -244,7 +248,7 @@ export default { this.loading = false; }); }, - // 取消按钮 + // 取消按钮 cancel() { this.open = false; this.reset(); diff --git a/src/views/system/detail/index.vue b/src/views/system/detail/index.vue index 4afd36a..67f54ce 100644 --- a/src/views/system/detail/index.vue +++ b/src/views/system/detail/index.vue @@ -123,6 +123,7 @@ import { listDetail, getDetail, delDetail, addDetail, updateDetail } from "@/api export default { name: "Detail", dicts: ['rl_user_type','rl_dividend_status'], + props: ['userId'], data() { return { // 遮罩层 @@ -202,6 +203,9 @@ export default { /** 查询分账明细列表 */ getList() { this.loading = true; + if (this.userId) { + this.queryParams.userId = this.userId; + } listDetail(this.queryParams).then(response => { this.detailList = response.rows; this.total = response.total; diff --git a/src/views/system/device/device_detail.vue b/src/views/system/device/device_detail.vue index b910a7f..5f69dfe 100644 --- a/src/views/system/device/device_detail.vue +++ b/src/views/system/device/device_detail.vue @@ -91,10 +91,10 @@
归属信息
- 绑定商户 绑定设施 + @click="openBindFacilityDialog">绑定设施 -->
@@ -112,8 +112,8 @@ - {{ deviceData.room.roomName || '--' }} - + {{ deviceData.room.roomName || '--' }} + @@ -123,17 +123,18 @@ - {{ deviceData.storeName || '--' }} - + {{ deviceData.storeName || '--' }} +
绑定设施: - - {{ deviceData.equ.name }} - + + {{ deviceData.equ.name }} +
@@ -143,8 +144,8 @@ - {{ deviceData.userName || '--' }} - + {{ deviceData.userName || '--' }} +
备注: @@ -255,16 +256,20 @@
- 打开 - 关闭 - 关闭 + + 重启 + 更新 + 绑定商户 + 绑定设施 +
@@ -287,8 +292,8 @@ - - + +