|
@ -9,9 +9,9 @@ |
|
|
<el-form-item label="描述" prop="remark"> |
|
|
<el-form-item label="描述" prop="remark"> |
|
|
<el-input v-model="editData.remark" placeholder="任务组描述"></el-input> |
|
|
<el-input v-model="editData.remark" placeholder="任务组描述"></el-input> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
<el-form-item label="状态" prop="status"> |
|
|
<!-- <el-form-item label="状态" prop="status"> |
|
|
<el-switch v-model="editData.status" active-value="1" inactive-value="0"></el-switch> |
|
|
<el-switch v-model="editData.status" active-value="1" inactive-value="0"></el-switch> |
|
|
</el-form-item> |
|
|
</el-form-item> --> |
|
|
<div style="display: flex; justify-content: flex-end;"> |
|
|
<div style="display: flex; justify-content: flex-end;"> |
|
|
<el-button @click="(modelVisible = false), (submitting = false)"> |
|
|
<el-button @click="(modelVisible = false), (submitting = false)"> |
|
|
取消 |
|
|
取消 |
|
@ -173,7 +173,7 @@ export default { |
|
|
this.editData = { |
|
|
this.editData = { |
|
|
id: res.data.id, |
|
|
id: res.data.id, |
|
|
groupName: res.data.groupName, |
|
|
groupName: res.data.groupName, |
|
|
status: res.data.status, |
|
|
// status: res.data.status, |
|
|
remark: res.data.remark, |
|
|
remark: res.data.remark, |
|
|
detailedConfiguration: res.data.detailedConfiguration |
|
|
detailedConfiguration: res.data.detailedConfiguration |
|
|
} |
|
|
} |
|
@ -206,7 +206,7 @@ export default { |
|
|
this.editData = { |
|
|
this.editData = { |
|
|
id: res.data.id, |
|
|
id: res.data.id, |
|
|
groupName: res.data.groupName, |
|
|
groupName: res.data.groupName, |
|
|
status: res.data.status, |
|
|
// status: res.data.status, |
|
|
remark: res.data.remark, |
|
|
remark: res.data.remark, |
|
|
detailedConfiguration: res.data.detailedConfiguration |
|
|
detailedConfiguration: res.data.detailedConfiguration |
|
|
} |
|
|
} |
|
@ -256,7 +256,7 @@ export default { |
|
|
this.editData = { |
|
|
this.editData = { |
|
|
id: this.propData.id, |
|
|
id: this.propData.id, |
|
|
groupName : this.propData.groupName, |
|
|
groupName : this.propData.groupName, |
|
|
status: this.propData.status, |
|
|
// status: this.propData.status, |
|
|
remark: this.propData.remark, |
|
|
remark: this.propData.remark, |
|
|
detailedConfiguration: this.propData.detailedConfiguration |
|
|
detailedConfiguration: this.propData.detailedConfiguration |
|
|
} |
|
|
} |
|
@ -264,7 +264,7 @@ export default { |
|
|
this.mode = "add" |
|
|
this.mode = "add" |
|
|
this.editData = { |
|
|
this.editData = { |
|
|
groupName: "", |
|
|
groupName: "", |
|
|
status: "1", |
|
|
// status: "1", |
|
|
remark: "", |
|
|
remark: "", |
|
|
detailedConfiguration: "" |
|
|
detailedConfiguration: "" |
|
|
} |
|
|
} |
|
|