diff --git a/src/assets/img/apartmentDetail/media-icon.svg b/src/assets/img/apartmentDetail/media-icon.svg
new file mode 100644
index 0000000..1910214
--- /dev/null
+++ b/src/assets/img/apartmentDetail/media-icon.svg
@@ -0,0 +1,21 @@
+
+
\ No newline at end of file
diff --git a/src/components/apartment/seachModule.vue b/src/components/apartment/seachModule.vue
index b487b09..d27b493 100644
--- a/src/components/apartment/seachModule.vue
+++ b/src/components/apartment/seachModule.vue
@@ -18,7 +18,8 @@
popper-style="background: transparent;padding:0;box-shadow: none;border: none;transform: translateX(50px);">
+ @keyup.enter='handleKeyword(pitchValue["keyword"])'
+ style="height:48px;width:460px;">
@@ -54,7 +55,7 @@
发布房源
-
@@ -70,8 +71,8 @@
微信扫码添加好友
+
-
@@ -181,6 +182,31 @@ const usestore = useStore();
const { wechat } = toRefs(usestore.state);
const router = useRouter()
+const value = ref('')
+
+const options = [
+ {
+ value: 'Option1',
+ label: 'Option1',
+ },
+ {
+ value: 'Option2',
+ label: 'Option2',
+ },
+ {
+ value: 'Option3',
+ label: 'Option3',
+ },
+ {
+ value: 'Option4',
+ label: 'Option4',
+ },
+ {
+ value: 'Option5',
+ label: 'Option5',
+ },
+]
+
const props = defineProps({
count: {
type: Number,
@@ -348,7 +374,7 @@ const selectOption = (type, value) => {
}
.seach-box-bg {
- background: #d7d7d7;
+ // background: #d7d7d7;
border-radius: 16px;
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.117647058823529);
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.117647058823529);
@@ -358,8 +384,9 @@ const selectOption = (type, value) => {
.seach-box {
background: #FFFFFF;
- transform: translate(0, 3px);
+ // transform: translate(0, 3px);
border-radius: 16px;
+ filter: drop-shadow(0px3px 0px #d7d7d7);
.top-seach {
padding: 20px;
diff --git a/src/views/apartmentDetail.vue b/src/views/apartmentDetail.vue
index 8262d58..c41e659 100644
--- a/src/views/apartmentDetail.vue
+++ b/src/views/apartmentDetail.vue
@@ -25,21 +25,49 @@
-
+
+
+
diff --git a/src/views/user.vue b/src/views/user.vue
index 9348457..7fb11c1 100644
--- a/src/views/user.vue
+++ b/src/views/user.vue
@@ -288,7 +288,7 @@ const handleScroll = () => {
const scrollHeight = document.documentElement.scrollHeight;
const clientHeight = document.documentElement.clientHeight;
const scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
- if (scrollTop + clientHeight >= scrollHeight) {
+ if (scrollTop + clientHeight >= scrollHeight - 350) {
if (tabState.value == 'publish') getPublishData()
else getFavData()
}