ソースを参照

落煤筒配置

KEYSTAR\KR0293 1 年間 前
コミット
b0c00bf2c1
3 ファイル変更19 行追加0 行削除
  1. BIN
      src/assets/ui-png/config.png
  2. 8 0
      src/router/index.ts
  3. 11 0
      src/views/config.vue

BIN
src/assets/ui-png/config.png


+ 8 - 0
src/router/index.ts

@@ -15,6 +15,14 @@ const staticRouter = [
                 },
             },
             {
+                path: '/config',
+                name: 'config',
+                component: () => import('@/views/config.vue'),
+                meta: {
+                    title: '落煤筒配置'
+                },
+            },            
+            {
                 path: '/monitor',
                 name: 'monitor',
                 component: () => import('@/views/coalDrop/Monitor.vue'),

+ 11 - 0
src/views/config.vue

@@ -0,0 +1,11 @@
+<template>
+    <div class="container">
+        <img src="@/assets/ui-png/config.png" style="width: 100%;height: 100%;" alt="">
+    </div>
+</template>
+
+<script setup lang='ts'>
+
+</script>
+
+<style scoped></style>