From 733c77f47ba77e7f9f5aea914915c488f8a1e4e9 Mon Sep 17 00:00:00 2001
From: wangyx <2838268875@qq.com>
Date: Thu, 7 Aug 2025 16:55:22 +0800
Subject: [PATCH] =?UTF-8?q?=E5=BC=BA=E5=88=B6=E6=B8=85=E9=80=80=E8=AE=B0?=
=?UTF-8?q?=E5=BD=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/api.js | 23 ++++++
pagesA/checkout/list/list.vue | 2 -
pagesA/force/index/index.vue | 127 +++++++++++++++++++++++++++-------
pagesA/force/list/list.vue | 36 +++++-----
4 files changed, 142 insertions(+), 46 deletions(-)
diff --git a/pages/api.js b/pages/api.js
index 368ed5c..36c56f8 100644
--- a/pages/api.js
+++ b/pages/api.js
@@ -209,3 +209,26 @@ export function handleRepair(data) {
data: data,
});
}
+// 查询退房记录列表
+export function listCheckOutRec(pageNum, pageSize, requestBody) {
+ return request({
+ url: "/apartment/manager/listCheckOutRec?pageNum=" + pageNum + "&pageSize=" + pageSize,
+ method: "post",
+ data: requestBody,
+ });
+}
+// 退房记录详情
+export function getRecCheckOutInfo(id) {
+ return request({
+ url: "/apartment/manager/checkOutRecDetail?checkOutRecId=" + id,
+ method: "get",
+ });
+}
+// 强制清退记录修改
+export function updateForceEvictionRecord(data) {
+ return request({
+ url: `/mz/forcedeviction`,
+ method: "put",
+ params: data,
+ });
+}
\ No newline at end of file
diff --git a/pagesA/checkout/list/list.vue b/pagesA/checkout/list/list.vue
index e59a13e..5d1d500 100644
--- a/pagesA/checkout/list/list.vue
+++ b/pagesA/checkout/list/list.vue
@@ -79,8 +79,6 @@ export default {
async fetchData() {
try {
const res = await listCheckout(this.form);
- console.log(res, "res");
-
const tempList = res.rows || [];
let page = this.form.pageNum;
if (page === 1) {
diff --git a/pagesA/force/index/index.vue b/pagesA/force/index/index.vue
index 69aae12..784ddc3 100644
--- a/pagesA/force/index/index.vue
+++ b/pagesA/force/index/index.vue
@@ -3,7 +3,7 @@
-
+
+
-
- {{ baseInfo.graduateName }}
+
+ {{ baseInfo.buildingName || "" }}{{ baseInfo.unitName || ""
+ }}{{ baseInfo.houseName || ""
+ }}{{ baseInfo.roomTypeName || "" }}
-
- {{ roomAllPath }}
+
+ {{
+ baseInfo.graduateName || ""
+ }}
-
- {{ baseInfo.telephone }}
+
+
+ {{
+ baseInfo.gender == 1 ? "男" : baseInfo.gender == 2 ? "女" : ""
+ }}
+
+
+ {{
+ baseInfo.telephone || ""
+ }}
-
+
+
加载中...
@@ -36,7 +41,7 @@