From 5dc1049f01c2b5e373d498eddb4a41550c4a6771 Mon Sep 17 00:00:00 2001 From: A1300399510 Date: Wed, 19 Jul 2023 18:47:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E7=9A=84-=E5=8F=91=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/img/publicImage/collect-icon.png | Bin 0 -> 1773 bytes src/assets/img/publicImage/eye-icon.svg | 11 + src/components/public/apartment-item.vue | 2 +- src/components/public/public-list-item.vue | 212 +++++++++++++++++++- src/main.js | 2 +- src/views/edit.vue | 14 +- src/views/housingView/apartment.vue | 4 +- src/views/user.vue | 129 +++++++++--- vue.config.js | 1 + 9 files changed, 331 insertions(+), 44 deletions(-) create mode 100644 src/assets/img/publicImage/collect-icon.png create mode 100644 src/assets/img/publicImage/eye-icon.svg diff --git a/src/assets/img/publicImage/collect-icon.png b/src/assets/img/publicImage/collect-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..36b6b886ca09bd205ce66ece9d1fc8fbc74db918 GIT binary patch literal 1773 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA3?vioaBc-sEa{HEjtmSN`?>!lvI6;x#X;^) z4C~IxyaaL-l0AZa85pY67#JE_7#My5g&JNkFq8sKd6mGxU^Rn*LA+qju0R_G1}2#R zpAc7|f>AIU0$4*p`uEE%K#9#IL4Lsu9B$H^-zYfGJ@`w}Vdg%Yi9e_Be$6vW-lA;M zcHVj4jsI0D|L))No`0c~VXaEf#t#BZzKU7rHfa7`;lUzg9@Dh^wBXIYOjjnhz{Mxt zYXA9hb$wUbwl5dL4!rmz^Xf_}U&NxEwJt@6n2UqNFK0wc#L3;}j7q$_HCy#DduYD; zla;JKh0pZezcKndI_;fve1H1qW0Ng=6CPD~X{~y2ZpYc~4&RF=<-vI`>sM>kbY81I zYClcs*WZE!pz|4%yxm;OkH}&m4PtvRxSh>>C`57PN zD01|8ktP%GloPsVf|RwqbQdd})!FWH)abNHbf)3bqoTgK7r$+)-JEm&+phl!>Gzmh z?{W0o-HlIsw&(L)>-=e_Z~X6^VOhMGIZ0E`PO6?s@N75R41R~r4twLhZAxA>x^P}t z@vmEDhxn^bo~*`{MIw)tl=gbgtv3`}Vk8{2WF_;Z&PPTPr&XdBz4~${(#88?n!a+> zI<^yvr_Mf}E9#Nh`6j-TC2Zw(F3m7^wrc`6ubsME>hhEI;a%3&*Ao+(>qE9oJh4x+ zdh>~w1$ml!H?t=D-3XHkc>Ad{|Fq`qeaidp=!ba7AN-hWQugatcX@BL z#EJ;*mOibOCiFh@mh`X6c;nmhGZrkpcXw58n9jF`ooA~ySm`;aY;fLVS(8%Lxw++V zrAV~Haho35%T?bAEs;M ziKu@tnp$Yt8g6>fFjmsFPipBsj{S)~Q+{dfiwQmzF(LLv`gO(|dk?%?>4v~0$f( zUUXdP0VhNIo!VbKo9*&HoKUuTq$N1P>xz1*kJbO%>py$izgDYKWD1Z}zYxJAwQ`%s zi5+5I>R!uMnC(@mIw~`HanRctI<IQDA>*XVkazAK7(^9EvKNG-`p#SGB}7q9i4;B-JXp zC>2OC7#SED>KYp88X1Hb8d{l}SQ!{=8(3Hw7^F>G52{fR8glbfGSez?YY;yzz743s z3uHraS-MqHVsWZ&X;CIaT4qkFmA<}yMt*Lpequ^)W}bd#a( + + + + + + + + + + \ No newline at end of file diff --git a/src/components/public/apartment-item.vue b/src/components/public/apartment-item.vue index ce5a237..8d747fa 100644 --- a/src/components/public/apartment-item.vue +++ b/src/components/public/apartment-item.vue @@ -3,7 +3,7 @@
{{ item['title'] }}
{{ item['propaganda'] }}
-
+
{{ it }}
diff --git a/src/components/public/public-list-item.vue b/src/components/public/public-list-item.vue index e6b924a..c1a35ca 100644 --- a/src/components/public/public-list-item.vue +++ b/src/components/public/public-list-item.vue @@ -7,13 +7,15 @@
- {{ data && data.subject || '暂无标题' }} +
认证审核中
+
{{ stateData.text }}
+ {{ data.subject || '暂无标题' }}
-
{{ data && data.gptype }}
-
{{ listData.type[data && data.type] }} +
{{ data.gptype }}
+
{{ listData.type[data.type] }}
{{ listData.elevator[data.elevator] }}
@@ -32,7 +34,6 @@
-
{{ location[item['location'] >>> 0] + ' > ' + location[item['location']] }} @@ -46,6 +47,30 @@ [ 租期{{ data.rentalduration == 0 ? '不限' : listData['rentalduration'][data.rentalduration] }} ]
+
+
+ 房源ID:{{ data['id'] }} +
+ + +
@@ -61,7 +86,20 @@
-
+ +
{{ data.author }} @@ -78,22 +116,32 @@ \ No newline at end of file diff --git a/src/main.js b/src/main.js index 16836e1..0b49ad5 100644 --- a/src/main.js +++ b/src/main.js @@ -20,7 +20,6 @@ import { ElPopover, ElDatePicker, ElMessage, - ElSpace, ElSkeleton, ElSkeletonItem // 其他需要的组件 @@ -71,6 +70,7 @@ app.use(ElDatePicker, { }) app.use(ElSkeleton) app.use(ElSkeletonItem) +app.use(ElMessage) app.use(store).use(router).use(Axios).mount('#app') diff --git a/src/views/edit.vue b/src/views/edit.vue index 5841677..fcc7ac1 100644 --- a/src/views/edit.vue +++ b/src/views/edit.vue @@ -662,8 +662,6 @@ diff --git a/vue.config.js b/vue.config.js index da4dadb..59168cb 100644 --- a/vue.config.js +++ b/vue.config.js @@ -40,6 +40,7 @@ module.exports = defineConfig({ .end() }, devServer: { + hot: true, proxy: { '/Api': { target: 'https://app.gter.net',//请求的接口的前缀