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 @@
-
+
+
+
+
+
+
+
+
+
+ ¥ {{ detail[stat.field] || '0.00' }}
+ {{ detail[stat.field] || '0' }}
+
+
+ 今日
+
+ {{ stat.today }}
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
\ 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 @@
@@ -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 @@
-
-
+
+
@@ -373,17 +378,20 @@
import {
getDevice,
updateDevice,
- handleLock,
- handleUnlocking,
+ refreshIot,
reboot,
refreshDevice,
delDevice,
bindDeviceFacility,
- bindDeviceUser
+ bindDeviceUser,
+ deviceSwitch,
+ rebootDevice,
+ offlineDevice
} from '@/api/system/device'
import { listUser } from "@/api/user/user"
import { listData } from '@/api/system/dict/data'
import { listEquipment } from "@/api/system/equipment"
+
import QrCode from '@/components/QrCode/index.vue'
import QRCode from 'qrcode'
import Role from '@/views/system/rule/index.vue'
@@ -391,8 +399,8 @@ import Log from '@/views/system/commandLog/index.vue'
export default {
name: "DeviceDetail",
components: {
- QrCode,Role,Log
- },
+ QrCode, Role, Log
+ },
dicts: ['ss_equipment_type', 'ss_equipment_status', 'ss_user_type'],
data() {
return {
@@ -483,7 +491,7 @@ export default {
}
},
methods: {
- toUserDetail(){
+ toUserDetail() {
if (this.deviceData.userId) {
this.$router.push(`/user/detail/${this.deviceData.userId}`);
}
@@ -536,9 +544,11 @@ export default {
pageSize: this.facilityQueryParams.pageSize,
name: undefined,
type: undefined,
- status: undefined
+ status: undefined,
+ storeId: this.deviceData.storeId
};
-
+ console.log(queryParams, 'queryParams');
+
listEquipment(queryParams).then(response => {
this.facilityList = response.rows;
this.facilityTotal = response.total;
@@ -592,26 +602,48 @@ export default {
},
handleUnlocking(row) {
- handleUnlocking(row.deviceId).then(() => {
- this.$message.success("设备已解锁")
+ deviceSwitch({ deviceId: row.deviceId, open: true }).then((response) => {
+ if (response.code == 200) {
+ this.fetchDeviceData(row.deviceId)
+ this.$message.success("设备已打开")
+
+ } else {
+ this.$message.error("设备打开失败")
+ }
})
},
handleLock(row) {
- handleLock(row.deviceId).then(() => {
- this.$message.success("设备已锁定")
+ deviceSwitch({ deviceId: row.deviceId, open: false }).then((response) => {
+ if (response.code == 200) {
+ this.fetchDeviceData(row.deviceId)
+ this.$message.success("设备已关闭")
+
+ } else {
+ this.$message.error("设备关闭失败")
+ }
})
},
reboot(row) {
- reboot(row.deviceId).then(() => {
- this.$message.success("设备已重启")
+ rebootDevice(row.deviceId).then((response) => {
+ if (response.code == 200) {
+ this.fetchDeviceData(row.deviceId)
+ this.$message.success("设备已重启")
+ } else {
+ this.$message.error("设备重启失败")
+ }
})
},
refresh(row) {
- refreshDevice(row.deviceId).then(() => {
- this.$message.success("设备已更新")
+ refreshIot(row.deviceId).then((response) => {
+ if (response.code == 200) {
+ this.fetchDeviceData(row.deviceId)
+ this.$message.success("设备已刷新")
+ } else {
+ this.$message.error("设备刷新失败")
+ }
})
},
@@ -629,21 +661,19 @@ export default {
this.getFacilityList()
},
- getFacilityList() {
- this.facilityTableLoading = true
- listEquipment(this.facilityQueryParams).then(response => {
- this.facilityList = response.rows || []
- this.facilityTotal = response.total || 0
- this.facilityTableLoading = false
- })
- },
+ // getFacilityList() {
+ // this.facilityTableLoading = true
+ // listEquipment(this.facilityQueryParams).then(response => {
+ // this.facilityList = response.rows || []
+ // this.facilityTotal = response.total || 0
+ // this.facilityTableLoading = false
+ // })
+ // },
handleBindFacility(row) {
- this.$modal.confirm('确认要将该设备绑定到设施"' + row.name + '"吗?').then(() => {
- return bindDeviceFacility({
- deviceId: this.deviceData.deviceId,
- equipmentId: row.equipmentId
- })
+ placementDevice({
+ deviceId: this.deviceData.deviceId,
+ type: row.type
}).then(() => {
this.$modal.msgSuccess("绑定成功")
this.bindFacilityDialogVisible = false
@@ -654,16 +684,18 @@ export default {
handleOnline(row) {
const status = row.status === '8' ? '0' : '8'
const statusText = status === '8' ? '禁用' : '启用'
-
- this.$modal.confirm('确认要' + statusText + '该设备吗?').then(() => {
- return updateDevice({
- deviceId: row.deviceId,
- status: status
+ if (status == '8') {
+ offlineDevice(row.deviceId).then((response) => {
+ if (response.code == 200) {
+ this.$message.success("设备已下线")
+ this.fetchDeviceData(row.deviceId)
+ } else {
+ this.$message.error("设备下线失败")
+ }
})
- }).then(() => {
- this.$modal.msgSuccess(statusText + "成功")
- this.fetchDeviceData(row.deviceId)
- }).catch(() => { })
+ } else {
+
+ }
},
openBindUserDialog() {
@@ -680,35 +712,40 @@ export default {
})
},
// 搜索按钮操作
- handleUserQuery() {
- this.userQueryParams.pageNum = 1;
- this.getUserList();
- },
+ handleUserQuery() {
+ this.userQueryParams.pageNum = 1;
+ this.getUserList();
+ },
- // 重置按钮操作
- resetUserQuery() {
- this.$refs["queryForm"].resetFields();
- this.userQueryParams = {
- pageNum: 1,
- pageSize: 10,
- userName: undefined,
- phonenumber: undefined,
- status: undefined,
- userType: '01'
- };
+ // 重置按钮操作
+ resetUserQuery() {
+ this.$refs["queryForm"].resetFields();
+ this.userQueryParams = {
+ pageNum: 1,
+ pageSize: 10,
+ userName: undefined,
+ phonenumber: undefined,
+ status: undefined,
+ userType: '01'
+ };
this.handleUserQuery();
},
handleBindUser(row) {
this.$modal.confirm('确认要将该设备绑定到商户"' + row.userName + '"吗?').then(() => {
- return bindDeviceUser({
- deviceId: this.deviceData.deviceId,
- userId: row.userId
- })
- }).then(() => {
- this.$modal.msgSuccess("绑定成功")
- this.bindUserDialogVisible = false
- this.fetchDeviceData(this.deviceData.deviceId)
- }).catch(() => { })
+
+ }).then((response) => {
+ if (response.code == 200) {
+ this.$modal.msgSuccess("绑定成功")
+ this.bindUserDialogVisible = false
+ this.fetchDeviceData(this.deviceData.deviceId)
+ } else {
+ this.$message.error("绑定失败")
+ }
+ }).catch((err) => {
+ console.log(err, 'err');
+
+ this.$message.error("绑定失败", err)
+ })
}
}
}
@@ -718,15 +755,17 @@ export default {
\ No newline at end of file
diff --git a/src/views/user/user/components/userDevice.vue b/src/views/user/user/components/userDevice.vue
index b84a04c..a708a65 100644
--- a/src/views/user/user/components/userDevice.vue
+++ b/src/views/user/user/components/userDevice.vue
@@ -46,7 +46,7 @@ export default {
props: {
// 用户id
userId: {
- type: String,
+ type: Number,
default: null,
}
},
diff --git a/src/views/user/user/detail.vue b/src/views/user/user/detail.vue
index 802efe0..789ba08 100644
--- a/src/views/user/user/detail.vue
+++ b/src/views/user/user/detail.vue
@@ -1,6 +1,9 @@
+
+
+
@@ -21,15 +24,17 @@
-
+
用户详情
-
- 用户配置
-
+
+
+ 修改
+ 配置
@@ -81,7 +86,7 @@
-
+
@@ -115,36 +119,174 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{
+ dict.label
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %
+
+
+
+
+
+
+
+
+
+
+
+
+
+ %
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
\ No newline at end of file
diff --git a/src/views/user/user/index.vue b/src/views/user/user/index.vue
index 03bae84..6710f39 100644
--- a/src/views/user/user/index.vue
+++ b/src/views/user/user/index.vue
@@ -134,8 +134,7 @@
type="text"
icon="el-icon-view"
@click="handleView(scope.row)"
- v-hasPermi="['system:smUser:detail']"
- v-if="scope.row.userType == '01'"
+ v-hasPermi="['system:smUser:detail']"
>详情
-
+