【update】-增加备注字段的回显
This commit is contained in:
@@ -114,6 +114,20 @@
|
||||
<seminar-partner-form ref="seminarPartnerForm" @formData="getFormData"></seminar-partner-form>
|
||||
</template>
|
||||
|
||||
<div class="item-title">其他信息</div>
|
||||
<a-row :gutter="24">
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
<a-form-item label="备注" :labelCol="remarksLabelCol" :wrapperCol="remarksWrapperCol">
|
||||
<a-textarea
|
||||
placeholder="请输入备注"
|
||||
:auto-size="{ minRows: 3, maxRows: 6 }"
|
||||
v-decorator="['remark']"
|
||||
:maxLength='200'
|
||||
@change="e => {e.target.value = (e.target.value + '').trim()}"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
|
||||
<div class="center">
|
||||
<a-button class="submit" type="primary" @click="handleOk" v-preventclick>确定</a-button>
|
||||
<a-button @click="handleCancel">取消</a-button>
|
||||
@@ -354,7 +368,8 @@ export default {
|
||||
'email',
|
||||
'post',
|
||||
'identity',
|
||||
'guestType'
|
||||
'guestType',
|
||||
'remark'
|
||||
))
|
||||
})
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user