From 23655ae6fc23c883a2ef94568a32c488535b8fc2 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期一, 28 十月 2024 17:08:43 +0800 Subject: [PATCH] 1、调整总控车间看板导航栏背景图 2、总控车间看板假数据配置时的字数限制为5个字的调整为99个字 --- src/views/dashboard/Analysis.vue | 26 +++++++++++++++++--------- 1 files changed, 17 insertions(+), 9 deletions(-) diff --git a/src/views/dashboard/Analysis.vue b/src/views/dashboard/Analysis.vue index 1b9ab1c..e87c134 100644 --- a/src/views/dashboard/Analysis.vue +++ b/src/views/dashboard/Analysis.vue @@ -1,6 +1,6 @@ <template> - <div> - + <div class="container"> + <img src="@/assets/dashboard.jpg"> </div> </template> @@ -8,20 +8,28 @@ export default { - name: "Analysis", - components: { - - }, + name: 'Analysis', + components: {}, data() { return { - indexStyle:1 + indexStyle: 1 } }, created() { }, - methods: { + methods: {} + } +</script> +<style scoped lang="less"> + .container { + flex: 1; + display: flex; + flex-direction: column; + img { + width: 100%; + flex: 1; } } -</script> \ No newline at end of file +</style> \ No newline at end of file -- Gitblit v1.9.3