From 74344a2ec388b78fe906a22c31f8fdb77fc60b12 Mon Sep 17 00:00:00 2001 From: inleft <inleft@qq.com> Date: Fri, 04 Mar 2022 15:55:59 +0800 Subject: [PATCH] 404页面优化,页面响应式变化适配 --- src/components/mini/box1-info.vue | 18 +++++++++++++++++- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/src/components/mini/box1-info.vue b/src/components/mini/box1-info.vue index ea66ad9..a37ce07 100644 --- a/src/components/mini/box1-info.vue +++ b/src/components/mini/box1-info.vue @@ -9,14 +9,20 @@ <span>{{name}}</span> <span>{{sentence}}</span> <span> - <a-icon type="environment" />{{location}} + <router-link to="/findMe"> + <a-icon type="environment" />{{location}} + </router-link> </span> + </div> </div> </template> <script> + import { + getAppPage + } from '../../api/appManage.js' export default { name: "box", data() { @@ -26,6 +32,12 @@ sentence: "十里寒塘路,烟花一半醒", location: "广州" } + }, + created() { + // console.log(getAppPage().then((res) => { + // console.log(res); + // return res + // })); } } </script> @@ -47,6 +59,10 @@ /* 一言 */ .blog-user-message { + a { + color: #555; + } + text-align: center; font-size: 15px; color: #555; -- Gitblit v1.9.1