|
@@ -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);
|
|
|
})
|