【开发】会议详情增加会议备注的显示

This commit is contained in:
fengachen
2022-07-15 11:00:19 +08:00
parent 7cd5e04ddc
commit 6c8cb5fc81
3 changed files with 23 additions and 0 deletions
@@ -116,6 +116,12 @@
<span><j-ellipsis :value="model.meetingContent" :length="100"></j-ellipsis></span>
</a-col>
</a-row>
<a-row :gutter="24" class="flex-col">
<a-col :span="24">
<label>会议备注</label>
<span>{{model.remark}}</span>
</a-col>
</a-row>
</section>
<!--会议信息end-->
<!--开票邮寄信息begin-->
@@ -2228,6 +2228,7 @@
:trigger-change="true"
dictCode="invoice_requirements"
placeholder="请选择发票" />
<span v-if="!invoiceRequirementsFlag" class="other-notice">本选项不提供任何形式的发票凭证</span>
</a-form-item>
</a-col>
</a-row>
@@ -4397,4 +4398,12 @@ export default {
.show-row .ant-form-item{
margin-bottom: 0;
}
// 发票选择无 增加样式
.other-notice {
color: #f5222d;
position: absolute;
bottom: 4px;
left: 25%
}
</style>
@@ -220,6 +220,7 @@
dictCode="invoice_requirements"
placeholder="请选择发票"/>
</a-form-item>
<span v-if="!invoiceRequirementsFlag" class="other-notice">本选项不提供任何形式的发票凭证</span>
</a-col>
</a-row>
<!--发票信息的显示-->
@@ -894,4 +895,11 @@ export default {
bottom: 4px;
left: 25%
}
.other-notice {
color: #f5222d;
position: absolute;
bottom: 4px;
left: 25%
}
</style>