From 16ee35c91d67c515f808fb29da7dcba5d2c5dcd0 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Sat, 06 Jan 2024 18:00:10 +0800
Subject: [PATCH] 数据管理下,页面风格,按钮大小统一; 场所管理审核异常处理; 发起事务页面处理;
---
src/api/userHouse/list/house.js | 20 +++++++++++++-------
1 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/src/api/userHouse/list/house.js b/src/api/userHouse/list/house.js
index 967a7b2..f2013dc 100644
--- a/src/api/userHouse/list/house.js
+++ b/src/api/userHouse/list/house.js
@@ -36,7 +36,7 @@
export const add = (row) => {
return request({
- url: '/api/blade-house/house/submit',
+ url: '/api/blade-house/house/saveOrUpdateHouse',
method: 'post',
data: row
})
@@ -50,13 +50,19 @@
})
}
-export const getDetatil = (id) => {
+export const getDetatil = (params) => {
return request({
- url: '/api/blade-house/house/detail',
+ url: '/api/blade-house/house/getHouseDetail',
method: 'get',
- params: {
- id
- }
+ params: params
+ })
+}
+
+export const getDetatils = (params) => {
+ return request({
+ url: '/api/blade-house/house/getHouseDetail',
+ method: 'get',
+ params: params
})
}
@@ -69,4 +75,4 @@
type
}
})
-}
+}
\ No newline at end of file
--
Gitblit v1.9.3