diff --git a/src/views/records/checkin/index.vue b/src/views/records/checkin/index.vue
index 35dfc54..a979323 100644
--- a/src/views/records/checkin/index.vue
+++ b/src/views/records/checkin/index.vue
@@ -76,7 +76,7 @@
-
+
diff --git a/src/views/records/live/index.vue b/src/views/records/live/index.vue
new file mode 100644
index 0000000..5c66f48
--- /dev/null
+++ b/src/views/records/live/index.vue
@@ -0,0 +1,467 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.gender == "1" ? "男" : "女" }}
+
+
+
+
+
+
+ {{
+ scope.row.state === 1
+ ? "已入住"
+ : scope.row.state === 5
+ ? "已退房"
+ : ""
+ }}
+
+
+
+
+
+
+
+ 查看
+
+
+
+
+
+
+ 所在区域:{{ info.parentName }}
+ 小区/公寓:{{ info.apartmentName }}
+ 楼号:{{ info.buildingName }}
+
+ 单元:{{ info.unitName }}
+ 房屋:{{ info.houseName }}
+ 房间:{{ info.roomTypeName }}
+
+
+
+ 居住人:{{ info.graduateName }}
+ 性别:{{ info.gender == 1 ? "男" : "女" }}
+ 手机号:{{ info.telephone }}
+
+ 身份证号:{{ info.idCard }}
+ 入住日期:{{ info.checkInDate }}
+ 退房日期:{{ info.checkOutDate }}
+
+ 办理入住时间:{{ info.handleCheckInDate }}
+ 当前状态:
+ {{
+ info.state === 1
+ ? "已入住"
+ : info.state === 5
+ ? "已退房"
+ : ""
+ }}
+
+
+
+
+
+
+
+
+