21 lines
962 B
Plaintext
21 lines
962 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%">
|
|
<view>发布日期:{{detailBean.publishDate}}</view>
|
|
<view>来源:{{detailBean.source}}</view>
|
|
</view>
|
|
<view class="line-gray margin-top-sm" style="width:100%;height:20rpx;"></view>
|
|
<view class="text-lg text-black padding-sm">
|
|
<rich-text nodes="{{detailBean.content}}" space="nbsp"></rich-text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view> |