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