mini-system-examination-signup/pages/notices/noticedetail.wxml
dong_bo0602 19bde1b78c 0608
2022-06-08 16:49:02 +08:00

20 lines
933 B
Plaintext

<!--pages/notices/noticedetail.wxml-->
<cu-custom bgColor="bg-darkblue" isBack="{{true}}" isRelaunch="{{false}}">
<view slot="content" style="color:#FFFFFF;">通告详情</view>
</cu-custom>
<scroll-view style="width:100%;">
<view class="content-view">
<view class="content-detail">
<view class="notice-title text-xl text-bold">
<text>{{detailBean.title}}</text>
</view>
<view class="flex margin-top-sm" style="justify-content:space-around;width:100%;padding-bottom: 30rpx;border-bottom: 1px solid #E5E5E5;">
<view>发布日期:{{detailBean.publishDate}}</view>
<view>培训机构:{{detailBean.source}}</view>
</view>
<view class="text-lg text-black padding-sm">
<rich-text nodes="{{detailBean.content}}" space="nbsp"></rich-text>
</view>
</view>
</view>
</scroll-view>