【修改】报名页面的样式

This commit is contained in:
fengachen
2022-01-07 09:52:30 +08:00
parent 891a0431d9
commit beb361d60c
2 changed files with 11 additions and 5 deletions
+5 -3
View File
@@ -44,13 +44,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">
@@ -317,5 +317,7 @@ export default {
width: 140px;
height: 140px;
}
.word-beak {
word-break: break-all;
}
</style>
+6 -2
View File
@@ -54,7 +54,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 +76,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>
@@ -838,4 +838,8 @@ export default {
text-align: center;
margin-bottom: 10px;
}
.word-beak {
word-break: break-all;
}
</style>