rui.jiang 5 months ago
parent
commit
5460974d10
2 changed files with 28 additions and 0 deletions
  1. 16 0
      src/views/performance/assetssMag.vue
  2. 12 0
      src/views/transition/index.vue

+ 16 - 0
src/views/performance/assetssMag.vue

@@ -21,6 +21,11 @@
           >
           <el-button @click="reset('ruleForm')" size="small">重置</el-button>
         </el-form-item>
+
+        <el-form-item class="right-align">
+          <el-button @click="Newanalyse" size="small">创建分析</el-button>
+          <el-button @click="examine" size="small">查看导入数据</el-button>
+        </el-form-item>
       </el-form>
     </div>
     <div class="list-page">
@@ -513,6 +518,13 @@ export default {
         }
       }, 10000); // 每10秒调用一次
     },
+
+    Newanalyse() {},
+    examine() {
+      this.$router.push({
+        path: "/home/transition/index",
+      });
+    },
   },
   mounted() {
     this.startPolling();
@@ -628,4 +640,8 @@ export default {
 canvas {
   border: 1px solid #dcdfe6;
 }
+
+.right-align {
+  white-space: nowrap;
+}
 </style>

+ 12 - 0
src/views/transition/index.vue

@@ -0,0 +1,12 @@
+<template>
+  <div>
+    
+  </div>
+</template>
+
+<script>
+export default {};
+</script>
+
+<style>
+</style>