|
|
|
@ -28,6 +28,7 @@ |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="displayName" label="名称" width=""> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="containerRemark" label="备注" width="" /> |
|
|
|
<el-table-column prop="creatorName" label="创建者" width=""> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="creationTime" label="创建时间" width="200"> |
|
|
|
@ -107,7 +108,14 @@ |
|
|
|
<el-input v-model="form.containerColorName"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<div style="margin-top: 70px"><el-divider></el-divider></div> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="备注" prop="containerRemark"> |
|
|
|
<el-input v-model="form.containerRemark"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-divider/> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4" style="margin-left: 15px"> |
|
|
|
<el-form-item label="创建者"> |
|
|
|
<el-input |
|
|
|
@ -226,6 +234,7 @@ export default { |
|
|
|
displayName: "", |
|
|
|
containerColorName: "", |
|
|
|
containerColor: "", |
|
|
|
containerRemark:'', |
|
|
|
}, |
|
|
|
curRow: {}, |
|
|
|
}; |
|
|
|
@ -383,6 +392,7 @@ export default { |
|
|
|
displayName: this.form.displayName, |
|
|
|
containerColorName: this.form.containerColorName, |
|
|
|
containerColor: this.form.containerColor, |
|
|
|
containerRemark: this.form.containerRemark, |
|
|
|
}).then((res) => { |
|
|
|
this.$message.success("新增成功"); |
|
|
|
this.getlist(); |
|
|
|
@ -393,6 +403,7 @@ export default { |
|
|
|
displayName: this.form.displayName, |
|
|
|
containerColorName: this.form.containerColorName, |
|
|
|
containerColor: this.form.containerColor, |
|
|
|
containerRemark: this.form.containerRemark, |
|
|
|
}).then((res) => { |
|
|
|
this.$message.success("修改成功"); |
|
|
|
this.getlist(); |
|
|
|
|