diff --git a/public/favicon.ico b/public/favicon.ico
index e263760..4c51bcc 100644
Binary files a/public/favicon.ico and b/public/favicon.ico differ
diff --git a/src/api/recs.js b/src/api/recs.js
new file mode 100644
index 0000000..668b163
--- /dev/null
+++ b/src/api/recs.js
@@ -0,0 +1,9 @@
+import request from '@/utils/request'
+// 【选房记录】入住预约列表(首页弹框用)
+export function checkInReservation (query) {
+ return request({
+ url: '/apartment/manager/listWaitingCheckInChooseRecs',
+ method: 'get',
+ params: query,
+ })
+}
\ No newline at end of file
diff --git a/src/assets/logo/logo.png b/src/assets/logo/logo.png
index e263760..4c51bcc 100644
Binary files a/src/assets/logo/logo.png and b/src/assets/logo/logo.png differ
diff --git a/src/views/components/CommonReminder.vue b/src/views/components/CommonReminder.vue
index c2bdf78..2668b4c 100644
--- a/src/views/components/CommonReminder.vue
+++ b/src/views/components/CommonReminder.vue
@@ -1,31 +1,25 @@
-
-
-
+
+
+
-
+
-
+
+
+
@@ -108,68 +110,70 @@
- {{ action.label }}
+ 入住办理
-
+
+
\ No newline at end of file
diff --git a/src/views/index.vue b/src/views/index.vue
index b3f7680..9b6beef 100644
--- a/src/views/index.vue
+++ b/src/views/index.vue
@@ -218,17 +218,16 @@
@getList="getList"
/>
-
+
+
+
@@ -402,11 +401,7 @@ export default {
total: 3,
// 遮罩层
reservationVisible: false,
- reservationQueryParams: {
- pageNum: 1,
- pageSize: 10,
- },
- reservationTotal: 4,
+
// 入住预约数据
reservationTableData: [
@@ -465,18 +460,7 @@ export default {
row.status === "待办理" || row.status === "已超期",
},
],
- reservationActions: [
- {
- label: "继续办理",
- type: "primary",
- condition: (row) => true,
- },
- {
- label: "入住办理",
- type: "primary",
- condition: (row) => false,
- },
- ],
+
};
},
mounted() {