【修改】添加会议联系人
This commit is contained in:
@@ -251,8 +251,9 @@
|
||||
<select-principal placeholder="请选择会议联系人"
|
||||
:index="index"
|
||||
@change="selectMeetingContact"
|
||||
v-decorator="['meetingContactsList['+index+'].meetingContactsId',validateInviteCode.meetingContactsId]">
|
||||
v-decorator="['meetingContactsList['+index+'].meetingContactsId']">
|
||||
</select-principal>
|
||||
<!-- ,validateInviteCode.meetingContactsId-->
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :xxl="8" :xl="10" :md="12">
|
||||
|
||||
@@ -37,6 +37,13 @@
|
||||
<!-- <span>{{ currentMeetingInfo.estimatedNumber }}</span>-->
|
||||
<!-- </a-col>-->
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12" v-for="(item,index) of currentMeetingInfo.meetingContactsList"
|
||||
:key="index">
|
||||
<label>会议联系人及手机号:</label>
|
||||
<span> {{ item.meetingContactsName + (item.meetingContactsPhone ?':': '') + item.meetingContactsPhone + ' ' }}</span>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12">
|
||||
<label>召开时间:</label>
|
||||
@@ -44,13 +51,13 @@
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<label>会议内容:</label>
|
||||
<span>{{ currentMeetingInfo.meetingContent }}</span>
|
||||
<span class="word-beak">{{ currentMeetingInfo.meetingContent }}</span>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12">
|
||||
<label>备注:</label>
|
||||
<span>{{ currentMeetingInfo.remark }}</span>
|
||||
<span class="word-beak">{{ currentMeetingInfo.remark }}</span>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
@@ -318,4 +325,8 @@ export default {
|
||||
height: 140px;
|
||||
}
|
||||
|
||||
.word-beak {
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
</style>
|
||||
@@ -47,6 +47,13 @@
|
||||
<!-- <span>{{ currentMeetingInfo.estimatedNumber }}</span>-->
|
||||
<!-- </a-col>-->
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12" v-for="(item,index) of currentMeetingInfo.meetingContactsList"
|
||||
:key="index">
|
||||
<label>会议联系人及手机号:</label>
|
||||
<span> {{ item.meetingContactsName + (item.meetingContactsPhone ?':': '') + item.meetingContactsPhone + ' ' }}</span>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-col :span="12">
|
||||
<label>召开时间:</label>
|
||||
@@ -54,7 +61,7 @@
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<label>会议内容:</label>
|
||||
<span>{{ currentMeetingInfo.meetingContent }}</span>
|
||||
<span class="word-beak">{{ currentMeetingInfo.meetingContent }}</span>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
@@ -76,7 +83,7 @@
|
||||
<a-row>
|
||||
<a-col :span="24">
|
||||
<label>备注:</label>
|
||||
<span>{{ currentMeetingInfo.remark }}</span>
|
||||
<span class="word-beak">{{ currentMeetingInfo.remark }}</span>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</section>
|
||||
@@ -837,4 +844,7 @@ export default {
|
||||
text-align: center;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.word-beak {
|
||||
word-break: break-all;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user