|
@@ -178,6 +178,46 @@ export default {
|
|
|
return list
|
|
|
})(),
|
|
|
{
|
|
|
+ name: 'el-select',
|
|
|
+ options: [
|
|
|
+ { label: '默认好评', value: 'D' },
|
|
|
+ { label: '好评', value: 'A' },
|
|
|
+ { label: '中评', value: 'B' },
|
|
|
+ { label: '差评', value: 'C' },
|
|
|
+ { label: '未评价', value: 'N' },
|
|
|
+ { label: '其他', value: 'O' }
|
|
|
+ ],
|
|
|
+ md: 24,
|
|
|
+ attributes: { disabled: true, placeholder: '请选择', width: '100%' },
|
|
|
+ formItemAttributes: { label: '服务评价', prop: 'appraiseStatus' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'el-input',
|
|
|
+ md: 24,
|
|
|
+ attributes: {
|
|
|
+ disabled: true,
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '首次评价时间',
|
|
|
+ prop: 'appraiseTime'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'el-input',
|
|
|
+ md: 24,
|
|
|
+ attributes: {
|
|
|
+ disabled: true,
|
|
|
+ type: 'textarea',
|
|
|
+ rows: 3,
|
|
|
+ placeholder: '请输入'
|
|
|
+ },
|
|
|
+ formItemAttributes: {
|
|
|
+ label: '首次评价内容',
|
|
|
+ prop: 'appraiseContent'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
isShow: this.formOptions.remark.isShow && !!this.id,
|
|
|
name: 'el-input',
|
|
|
md: 24,
|