diff --git a/src/components/apartment/seachModule.vue b/src/components/apartment/seachModule.vue
index 16b7303..d90a21a 100644
--- a/src/components/apartment/seachModule.vue
+++ b/src/components/apartment/seachModule.vue
@@ -97,8 +97,8 @@
标签筛选
-
不限
-
{{ item["name"] }}
+
不限
+
{{ item }}
@@ -437,6 +437,9 @@ const selectOption = (type, value) => {
case "roomlistings":
pitchValue.value["roomlistings"] = value;
break;
+ case "tag":
+ pitchValue.value["tag"] = value;
+ break;
default:
break;
}
@@ -450,6 +453,10 @@ let deleteSeachVal = (i) => {
historyArr.value.splice(i, 1);
localStorage.setItem("historyArr", JSON.stringify(historyArr.value));
};
+
+const tagList = ["单人间", "大床房", "独立卫浴", "两房整租", "电梯"];
+let tag = ref(""); // 标签筛选选择
+