【bug】 会议添加 联系人样式修改 提示语修改
This commit is contained in:
@@ -223,14 +223,14 @@
|
||||
<!--联系方式begin-->
|
||||
<div class="item-title">联系方式</div>
|
||||
<a-row :gutter="24">
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
<a-col :xxl="8" :xl="10" :sm="24">
|
||||
<a-form-item label="会议负责人" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<select-principal placeholder="请选择会议负责人"
|
||||
@change="selectPerson"
|
||||
v-decorator="['directorId',validatorRules.directorId]"></select-principal>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
<a-col :xxl="8" :xl="10" :sm="24">
|
||||
<a-form-item label="手机号" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入手机号"
|
||||
disabled
|
||||
@@ -240,10 +240,8 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<section>
|
||||
<a-row :gutter="24" v-for="(item, index) in model.meetingContactsList" :key="index">
|
||||
<a-col :xxl="8" :xl="10" :md="12">
|
||||
<a-row :gutter="24" v-for="(item, index) in model.meetingContactsList" :key="index">
|
||||
<a-col :xxl="8" :xl="10" :sm="24">
|
||||
<a-form-item label="会议联系人" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
|
||||
<!-- @change="selectPerson"-->
|
||||
@@ -256,7 +254,7 @@
|
||||
<!-- ,validateInviteCode.meetingContactsId-->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xxl="8" :xl="10" :md="12">
|
||||
<a-col :xxl="8" :xl="10" :sm="24">
|
||||
<a-form-item label="联系人手机号" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input
|
||||
@change="(e) => {e.target.value = e.target.value.replace(/[^0-9]/g,'')}"
|
||||
@@ -267,19 +265,15 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!-- style="transform: translateX(-130px);"-->
|
||||
<a-col :xxl="2" :xl="4" :sm="6">
|
||||
<a-col :xxl="8" :xl="4" :sm="24">
|
||||
<a-form-item>
|
||||
<a-button icon="plus" @click="addMeetingContacts"></a-button>
|
||||
<a-button icon="minus" @click="removeMeetingContacts(index)" style="margin-left: 8px;"></a-button>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</section>
|
||||
|
||||
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
<a-col :xxl="8" :xl="10" :sm="24">
|
||||
<a-form-item label="酒店名称" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入酒店名称"
|
||||
:maxLength='50'
|
||||
@@ -288,7 +282,7 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!--标协会议才有-->
|
||||
<a-col :xxl="8" :xl="12" :sm="24">
|
||||
<a-col :xxl="8" :xl="10" :sm="24">
|
||||
<a-form-item label="酒店地址" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
||||
<a-input placeholder="请输入酒店地址"
|
||||
:maxLength='50'
|
||||
@@ -788,7 +782,7 @@ export default {
|
||||
* */
|
||||
addMeetingContacts(index) {
|
||||
if (this.model.meetingContactsList.length >= 5) {
|
||||
this.$message.warning('最多添加5个酒店联系人')
|
||||
this.$message.warning('最多添加5个会议联系人')
|
||||
return
|
||||
}
|
||||
const {form} = this
|
||||
|
||||
Reference in New Issue
Block a user