15 lines
603 B
Plaintext
Raw Normal View History

2024-02-21 17:43:11 +08:00
<import src="../../../wxParse/wxParse.wxml" />
<view class="page">
<scroll-view scroll-y="true" style="height:100%;font-size:30rpx;">
<view style="padding-bottom:16rpx;">
<view style="font-size: 46rpx;margin-bottom:16rpx;">{{datas.djName}}</view>
<view>{{datas.marketableTime}}</view>
</view>
<view style="margin-top:30rpx;line-height:48rpx;" wx:if="{{datas.content}}">
<template is="wxParse" data="{{wxParseData:article.nodes}}" />
</view>
<view style="margin-top:30rpx;line-height:48rpx;" wx:else>
{{datas.bannerDesc}}
</view>
</scroll-view>
</view>