diff --git a/src/api/system/store.js b/src/api/system/store.js
index a2649a2..8ee63ab 100644
--- a/src/api/system/store.js
+++ b/src/api/system/store.js
@@ -10,10 +10,11 @@ export function listStore(query) {
}
// 查询店铺详细
-export function getStore(storeId) {
+export function getStore(storeId,data) {
return request({
url: '/system/store/' + storeId,
- method: 'get'
+ method: 'get',
+ params: data
})
}
diff --git a/src/api/user/user.js b/src/api/user/user.js
index 06bb0d7..ca41434 100644
--- a/src/api/user/user.js
+++ b/src/api/user/user.js
@@ -21,10 +21,11 @@ export function fastSearch(query) {
// 查询用户详细
-export function getUser(userId) {
+export function getUser(userId, query) {
return request({
url: '/user/user/' + parseStrEmpty(userId),
- method: 'get'
+ method: 'get',
+ params: query
})
}
diff --git a/src/views/system/device/device_detail.vue b/src/views/system/device/device_detail.vue
index 3d1a90c..7e2affd 100644
--- a/src/views/system/device/device_detail.vue
+++ b/src/views/system/device/device_detail.vue
@@ -166,8 +166,7 @@
+ class="link-type">
{{ deviceData.userName }}
--
diff --git a/src/views/system/equipment/index.vue b/src/views/system/equipment/index.vue
index 79b00be..0bced3c 100644
--- a/src/views/system/equipment/index.vue
+++ b/src/views/system/equipment/index.vue
@@ -323,6 +323,7 @@ import {listStore} from "@/api/system/store";
import {listUser} from "@/api/system/user";
import QrCode from "@/components/QrCode/index.vue";
import { getDomain } from "@/api/common/common";
+import { deviceSwitch } from "@/api/system/device";
// 默认排序字段
const defaultSort = {
@@ -415,6 +416,7 @@ export default {
rules: {
},
domain: '', // 域名
+ oldForm: null
};
},
created() {
@@ -532,6 +534,7 @@ export default {
const equipmentId = row.equipmentId || this.ids
getEquipment(equipmentId).then(response => {
this.form = response.data;
+ this.oldForm = { ...response.data };
this.open = true;
this.title = "修改设施";
});
@@ -540,22 +543,43 @@ export default {
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
- if (this.form.equipmentId != null) {
- updateEquipment(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
+ if (this.form.deviceId &&
+ this.form.unlockMode !== this.oldForm?.unlockMode) {
+ const open = this.form.unlockMode === "2";
+ deviceSwitch({
+ deviceId: this.form.deviceId,
+ open: open
+ }).then(() => {
+ this.saveForm();
+ }).catch(() => {
+ this.$modal.msgError("设备开关操作失败");
});
} else {
- addEquipment(this.form).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
+ this.saveForm();
}
}
});
},
+ /** 保存表单 */
+ saveForm() {
+ let data = {
+ ...this.form
+ };
+
+ if (this.form.equipmentId != null) {
+ updateEquipment(data).then(response => {
+ this.$modal.msgSuccess("修改成功");
+ this.open = false;
+ this.getList();
+ });
+ } else {
+ addEquipment(data).then(response => {
+ this.$modal.msgSuccess("新增成功");
+ this.open = false;
+ this.getList();
+ });
+ }
+ },
/** 删除按钮操作 */
handleDelete(row) {
const equipmentIds = row.equipmentId || this.ids;
diff --git a/src/views/system/hallEqu/index.vue b/src/views/system/hallEqu/index.vue
index 7483168..06c6a4c 100644
--- a/src/views/system/hallEqu/index.vue
+++ b/src/views/system/hallEqu/index.vue
@@ -574,9 +574,14 @@ export default {
}
return feeRules.map(rule => rule.explain).filter(Boolean).join(',');
},
- /** 跳转到详情页面 */
+ /** 查看详情按钮操作 */
handleDetail(row) {
- this.$router.push(`/system/equipmentDetail/index/${row.roomId}`);
+ this.$router.push({
+ path: `/system/equipmentDetail/index/${row.roomId}`,
+ query: {
+ type: 'equipment'
+ }
+ });
},
/** 获取套餐选项 */
getRuleOptions(merchantId) {
diff --git a/src/views/system/order/index.vue b/src/views/system/order/index.vue
index 83d6f09..83aab3d 100644
--- a/src/views/system/order/index.vue
+++ b/src/views/system/order/index.vue
@@ -458,8 +458,8 @@ export default {
/** 查询订单列表 */
getList() {
this.loading = true;
- console.log(this.userId,'this.userId');
- console.log(this.merchantId,'this.merchantId');
+ // console.log(this.userId,'this.userId');
+ // console.log(this.merchantId,'this.merchantId');
listOrder(this.queryParams).then(response => {
this.orderList = response.rows;
this.total = response.total;
diff --git a/src/views/system/order/order_detail.vue b/src/views/system/order/order_detail.vue
index 3b2295f..f916d59 100644
--- a/src/views/system/order/order_detail.vue
+++ b/src/views/system/order/order_detail.vue
@@ -1,171 +1,193 @@
-
-
-