Quellcode durchsuchen

修改文字说明

allen vor 1 Woche
Ursprung
Commit
979c4f289b

+ 3 - 3
ips-ui/src/views/biz/features/index.vue

@@ -466,7 +466,7 @@ export default {
     handleAdd() {
       this.reset();
       this.open = true;
-      this.title = "添加特征提取";
+      this.title = "添加复合干扰源识别网络";
     },
     /** 修改按钮操作 */
     handleUpdate(row) {
@@ -475,7 +475,7 @@ export default {
       getFeatures(id).then((response) => {
         this.form = response.data;
         this.open = true;
-        this.title = "修改特征提取";
+        this.title = "修改复合干扰源识别网络";
       });
     },
     handleRun(row) {
@@ -510,7 +510,7 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal
-        .confirm('是否确认删除特征提取?')
+        .confirm('是否确认删除复合干扰源识别网络?')
         .then(function () {
           return delFeatures(ids);
         })

+ 6 - 6
ips-ui/src/views/biz/test/index.vue

@@ -223,7 +223,7 @@
       @pagination="getList"
     />
 
-    <!-- 添加或修改分类测试对话框 -->
+    <!-- 添加或修改复合干扰源识别网络对话框 -->
     <el-dialog
       :title="title"
       :visible.sync="open"
@@ -336,7 +336,7 @@ export default {
       showSearch: true,
       // 总条数
       total: 0,
-      // 分类测试表格数据
+      // 复合干扰源识别网络表格数据
       testList: [],
       // 弹出层标题
       title: "",
@@ -380,7 +380,7 @@ export default {
     this.getOptions();
   },
   methods: {
-    /** 查询分类测试列表 */
+    /** 查询复合干扰源识别网络列表 */
     getList() {
       this.loading = true;
       listTest(this.queryParams).then((response) => {
@@ -434,7 +434,7 @@ export default {
     handleAdd() {
       this.reset();
       this.open = true;
-      this.title = "添加分类测试";
+      this.title = "添加复合干扰源识别网络";
     },
     /** 修改按钮操作 */
     handleUpdate(row) {
@@ -443,7 +443,7 @@ export default {
       getTest(id).then((response) => {
         this.form = response.data;
         this.open = true;
-        this.title = "修改分类测试";
+        this.title = "修改复合干扰源识别网络";
       });
     },
     handleRun(row) {
@@ -478,7 +478,7 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal
-        .confirm('是否确认删除分类测试?')
+        .confirm('是否确认删除复合干扰源识别网络?')
         .then(function () {
           return delTest(ids);
         })

+ 6 - 6
ips-ui/src/views/biz/training/index.vue

@@ -223,7 +223,7 @@
       @pagination="getList"
     />
 
-    <!-- 添加或修改模型训练对话框 -->
+    <!-- 添加或修改集成卷积网络对话框 -->
     <el-dialog
       :title="title"
       :visible.sync="open"
@@ -331,7 +331,7 @@ export default {
       showSearch: true,
       // 总条数
       total: 0,
-      // 模型训练表格数据
+      // 集成卷积网络表格数据
       trainingList: [],
       // 弹出层标题
       title: "",
@@ -375,7 +375,7 @@ export default {
     this.getOptions();
   },
   methods: {
-    /** 查询模型训练列表 */
+    /** 查询集成卷积网络列表 */
     getList() {
       this.loading = true;
       listTraining(this.queryParams).then((response) => {
@@ -429,7 +429,7 @@ export default {
     handleAdd() {
       this.reset();
       this.open = true;
-      this.title = "添加模型训练";
+      this.title = "添加集成卷积网络";
     },
     /** 修改按钮操作 */
     handleUpdate(row) {
@@ -438,7 +438,7 @@ export default {
       getTraining(id).then((response) => {
         this.form = response.data;
         this.open = true;
-        this.title = "修改模型训练";
+        this.title = "修改集成卷积网络";
       });
     },
     handleRun(row) {
@@ -473,7 +473,7 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal
-        .confirm('是否确认删除模型训练?')
+        .confirm('是否确认删除集成卷积网络?')
         .then(function () {
           return delTraining(ids);
         })