|
@@ -302,6 +302,22 @@ export default {
|
|
|
formItemAttributes: { label: '', prop: 'address', 'label-width': '0px', rules: this.formOptions.address.isRules },
|
|
|
attributes: { disabled: !this.formOptions.address.isEdit, placeholder: '详细地址' }
|
|
|
},
|
|
|
+ {
|
|
|
+ isShow: this.formOptions.remark.isShow && !this.id,
|
|
|
+ name: 'el-input',
|
|
|
+ md: 24,
|
|
|
+ attributes: {
|
|
|
+ disabled: !this.formOptions.remark.isEdit,
|
|
|
+ type: 'textarea',
|
|
|
+ rows: 3,
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '备注',
|
|
|
+ prop: 'remark',
|
|
|
+ rules: this.formOptions.remark.isRules
|
|
|
+ }
|
|
|
+ }
|
|
|
]
|
|
|
}
|
|
|
},
|