diff --git a/.env.development b/.env.development index bd7c56d..ae45a51 100644 --- a/.env.development +++ b/.env.development @@ -1,6 +1,6 @@ #环境标识 VITE_ENV="开发环境" #基础服务 -VITE_API_URL="http://192.168.1.144:8080/mz-api" +VITE_API_URL="http://219.146.91.110:30801/mz-api" VITE_AMAP_KEY = 8b6b7a05f40d067af88f6f211412984e VITE_AMAP_SECURITY_KEY = 7439b95b4bb1850da7e5a1d65f1b8fc3 \ No newline at end of file diff --git a/epmet-apartment-front/index.html b/epmet-apartment-front/index.html index d1ef490..6df5865 100644 --- a/epmet-apartment-front/index.html +++ b/epmet-apartment-front/index.html @@ -7,10 +7,20 @@ 青岛市免租金住房保障平台 - - + +
+ + diff --git a/public/favicon.ico b/public/favicon.ico index df36fcf..4c51bcc 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/src/components/AppHeader.vue b/src/components/AppHeader.vue index b3a5b40..528e773 100644 --- a/src/components/AppHeader.vue +++ b/src/components/AppHeader.vue @@ -104,7 +104,7 @@ const navigationConfig = [ key: 'policy' }, { - name: '看房选房', + name: '选房', path: '/Showings', key: 'Showings' }, diff --git a/src/components/Crumbs.vue b/src/components/Crumbs.vue new file mode 100644 index 0000000..e20b9fb --- /dev/null +++ b/src/components/Crumbs.vue @@ -0,0 +1,83 @@ + + + + + + + \ No newline at end of file diff --git a/src/components/home/PolicyInfo.vue b/src/components/home/PolicyInfo.vue index 0c00fb8..1b428ef 100644 --- a/src/components/home/PolicyInfo.vue +++ b/src/components/home/PolicyInfo.vue @@ -34,6 +34,7 @@ :key="index" class="relative ml-10 w-min-[450px] h-min-[300px]" style="min-width: 450px; min-height: 300px" + @click="handleClickPolicy(item)" >
-
+
{{ item.createTime }} @@ -98,6 +99,9 @@ defineProps({ const handleClickTab = (item) => { emit('tab-change', item) } +const handleClickPolicy = (item) => { + router.push(`/policy?id=${item.id}`) +}