diff --git a/vue/gold-system/src/assets/css/common.css b/vue/gold-system/src/assets/css/common.css index 338f371..2b43cb7 100644 --- a/vue/gold-system/src/assets/css/common.css +++ b/vue/gold-system/src/assets/css/common.css @@ -63,4 +63,10 @@ border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 10px solid green; +} + +.grey-triangle { + width: 10px; + height: 5px; + background-color: grey; } \ No newline at end of file diff --git a/vue/gold-system/src/router/index.js b/vue/gold-system/src/router/index.js index 89ce114..a4fcf30 100644 --- a/vue/gold-system/src/router/index.js +++ b/vue/gold-system/src/router/index.js @@ -4,6 +4,7 @@ const router=createRouter({ history:createWebHashHistory(), routes:[ {path:'/',redirect:"/workspace"}, + {path:'/test',component:()=>import("../views/z.vue")}, { path:'/index',component:()=>import("../views/index.vue"), children:[ diff --git a/vue/gold-system/src/views/workspace/index.vue b/vue/gold-system/src/views/workspace/index.vue index b88e3d4..be6a906 100644 --- a/vue/gold-system/src/views/workspace/index.vue +++ b/vue/gold-system/src/views/workspace/index.vue @@ -1,396 +1,441 @@ + + + + \ No newline at end of file