From ea1497cbb477825522c79cff1b7e1f2e96003ad2 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期一, 02 六月 2025 08:58:58 +0800 Subject: [PATCH] art: 工作流-待办列表调整 --- src/views/dashboard/Analysis.vue | 29 ++++++++++++++++------------- 1 files changed, 16 insertions(+), 13 deletions(-) diff --git a/src/views/dashboard/Analysis.vue b/src/views/dashboard/Analysis.vue index 1503277..df755a1 100644 --- a/src/views/dashboard/Analysis.vue +++ b/src/views/dashboard/Analysis.vue @@ -1,25 +1,28 @@ <template> - <div> - + <div class="container"> </div> </template> <script> export default { - name: "Analysis", - components: { - - }, + name: 'Analysis', + components: {}, data() { - return { - - } + return {} }, created() { }, - methods: { - - } + methods: {} } -</script> \ No newline at end of file +</script> + +<style scoped lang="less"> + .container { + flex: 1; + background-image: url("../../assets/dashboard.png"); + background-repeat: no-repeat; + background-size: 100% 100%; + } + +</style> \ No newline at end of file -- Gitblit v1.9.3