[update] -会议详情页标协会议(标准宣贯、学习培训)样式的修改

This commit is contained in:
fengchenchen
2022-07-18 22:34:29 +08:00
parent 59e965ddd1
commit c0707de275
2 changed files with 19 additions and 3 deletions
@@ -59,7 +59,7 @@
<text>收费二维码</text> <text>收费二维码</text>
<image src="{{paymentQrCodeSrc}}" class="paymnet-qrcode-img"></image> <image src="{{paymentQrCodeSrc}}" class="paymnet-qrcode-img"></image>
</view> </view>
<!-- 标协会议(标准宣贯、学习培训) -是否具有问题征集 --> <!-- 标协会议(标准宣贯、学习培训) -是否具有问题征集--开始 -->
<view class="question-container-view" wx-if="{{meetingInfo.meetingType === '2' && (meetingInfo.tbMeetingType === '1' || meetingInfo.tbMeetingType === '2')}}"> <view class="question-container-view" wx-if="{{meetingInfo.meetingType === '2' && (meetingInfo.tbMeetingType === '1' || meetingInfo.tbMeetingType === '2')}}">
<view> <view>
<text>问题征集</text> <text>问题征集</text>
@@ -71,6 +71,7 @@
</view> </view>
</view> </view>
<!-- 标协会议(标准宣贯、学习培训) -是否具有问题征集--结束 -->
<view class="sign-in"> <view class="sign-in">
<text>会议内容</text> <text>会议内容</text>
<text class="sign-in-text">{{meetingInfo.meetingContent}}</text> <text class="sign-in-text">{{meetingInfo.meetingContent}}</text>
@@ -79,6 +80,7 @@
<text>备注</text> <text>备注</text>
<text class="sign-in-text">{{meetingInfo.remark || ''}}</text> <text class="sign-in-text">{{meetingInfo.remark || ''}}</text>
</view> </view>
<!-- 标协会议(标准宣贯、学习培训) -问题征集详细信息--开始 -->
<view class="question-list-view" wx-if="{{meetingInfo.meetingType === '2' && (meetingInfo.tbMeetingType === '1' || meetingInfo.tbMeetingType === '2') && questionList.length > 0}}"> <view class="question-list-view" wx-if="{{meetingInfo.meetingType === '2' && (meetingInfo.tbMeetingType === '1' || meetingInfo.tbMeetingType === '2') && questionList.length > 0}}">
<view class="title to-signup"> <view class="title to-signup">
<text>问题征集</text> <text>问题征集</text>
@@ -87,6 +89,8 @@
<text>标准号及标准名称</text> <text>标准号及标准名称</text>
<text>{{ item.standardNumber + ' ( ' + item.standardName + ' ) '}}</text> <text>{{ item.standardNumber + ' ( ' + item.standardName + ' ) '}}</text>
</view> </view>
<view class="question-notice">提问标准相关问题请到PC端操作
</view>
</view> </view>
<view class="meeting-files"> <view class="meeting-files">
<text>会议通知</text> <text>会议通知</text>
@@ -358,7 +358,7 @@ margin-top: 15px;
background-color: #069f99; background-color: #069f99;
} }
/* 问题征集新的样式 */ /* 问题征集新的样式 --开始 */
.question-list-view{ .question-list-view{
margin-top: 10px; margin-top: 10px;
flex-direction: column; flex-direction: column;
@@ -386,4 +386,16 @@ margin-top: 15px;
display: inline-block; display: inline-block;
flex: 1; flex: 1;
text-align: right; text-align: right;
} }
.question-list-view .question-notice{
width: 100%;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
color: #999;
background-color: #F5F5F5!important;
height: auto;
padding-bottom: 5px;
}
/* 问题征集新的样式 --结束 */