From 5d92a11e8a307dc4098079e4bad7ce88ddc154f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=9C=E8=B4=A4=E9=87=91?= <1960116313@qq.com> Date: Wed, 6 Jul 2022 16:35:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E9=A6=96=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wel/index.vue | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/src/views/wel/index.vue b/src/views/wel/index.vue index 15426a4..457cc22 100644 --- a/src/views/wel/index.vue +++ b/src/views/wel/index.vue @@ -1,7 +1,16 @@ <template> + <!-- <div class="app-container"> --> + <!-- <Clinent v-if="userInfo.tenant_id != '000000'" /> --> + <!-- <Administrator v-else /> --> + <!-- <Clinent></Clinent> --> + <!-- </div> --> <div class="app-container"> - <Clinent v-if="userInfo.tenant_id != '000000'" /> - <Administrator v-else /> + <div class="dashboard-container"> + <div class="dashboard-text">欢迎访问物联网管理后台!</div> + <div> + <img src="@/assets/shouye.png" alt class="dashboard-img" /> + </div> + </div> </div> </template> @@ -24,4 +33,17 @@ export default { }; </script> -<style scoped lang="scss"></style> +<style scoped lang="scss"> +.dashboard-container { + width: 100%; + text-align: center; +} +.dashboard-text { + color: #333; + font-size: 18px; + margin-top: 15%; +} +.dashboard-img { + margin-top: 40px; +} +</style>