28968 3 週間 前
コミット
84537f19cd

+ 3 - 3
src/views/demo/dataAugmentation/index.vue

@@ -45,16 +45,16 @@
         <el-button type="primary" link icon="View" v-auth="['demo:DataAugmentation:query']" @click="openDialog(3, '任务查看', scope.row)">
           查看
         </el-button>
-        <!-- <el-button
+        <el-button
           type="primary"
           link
           icon="View"
           v-auth="['demo:DataAugmentation:query']"
           @click="viewLogRef.handleOpen(scope.row.id)"
-          v-if="scope.row.status != '0' && scope.row.status != '1'"
+          v-if="scope.row.status != '0'"
         >
           日志
-        </el-button> -->
+        </el-button>
         <el-button type="primary" link icon="Delete" v-auth="['demo:DataAugmentation:remove']" @click="deleteDataAugmentation(scope.row)">
           删除
         </el-button>

+ 1 - 1
src/views/demo/imageMosaic/index.vue

@@ -43,7 +43,7 @@
           icon="View"
           v-auth="['demo:DataAugmentation:query']"
           @click="viewLogRef.handleOpen(scope.row.id)"
-          v-if="scope.row.status != '0' && scope.row.status != '1'"
+          v-if="scope.row.status != '0'"
         >
           日志
         </el-button>

+ 1 - 1
src/views/demo/targetDamageAcess/index.vue

@@ -51,7 +51,7 @@
           icon="View"
           v-auth="['demo:DataAugmentation:query']"
           @click="viewLogRef.handleOpen(scope.row.id)"
-          v-if="scope.row.status != '0' && scope.row.status != '1'"
+          v-if="scope.row.status != '0'"
         >
           日志
         </el-button>

+ 1 - 1
src/views/demo/targetTrack/index.vue

@@ -43,7 +43,7 @@
           icon="View"
           v-auth="['demo:DataAugmentation:query']"
           @click="viewLogRef.handleOpen(scope.row.id)"
-          v-if="scope.row.status != '0' && scope.row.status != '1'"
+          v-if="scope.row.status != '0'"
         >
           日志
         </el-button>

+ 6 - 2
src/views/demo/traceMerge/index.vue

@@ -48,7 +48,9 @@
           <span style="min-width: 80px">
             任务文件
             <el-tooltip :content="fileDescription" placement="top">
-              <el-icon><InfoFilled /></el-icon>
+              <el-icon>
+                <InfoFilled />
+              </el-icon>
             </el-tooltip>
           </span>
 
@@ -57,7 +59,9 @@
         <el-container v-for="(item, index) in jsonParams" :key="index" style="align-items: center; margin-top: 5px">
           <span style="min-width: 80px; max-width: 150px">{{ item.name }}</span>
           <el-tooltip :content="item.prompt" placement="top">
-            <el-icon><InfoFilled /></el-icon>
+            <el-icon>
+              <InfoFilled />
+            </el-icon>
           </el-tooltip>
           <el-input v-model="item.value" :placeholder="item.defaultValue" style="max-width: 300px" />
         </el-container>

+ 2 - 0
src/views/system/config/index.vue

@@ -240,6 +240,8 @@ const setItemsOptions = () => {
       prop: 'parameters',
       rules: [{ required: true, message: '参数不能为空', trigger: 'blur' }],
       compOptions: {
+        type: 'textarea',
+        rows: 2,
         placeholder: '请输入参数'
       }
     },