publicContent.wxml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <view>
  2. <view style="background: linear-gradient(#508FF4, #508ff4f5);padding: 0 30rpx 10rpx 30rpx;">
  3. <view style="font-size: 40rpx;font-family: PingFang SC;font-weight: bold;color: #fff;padding-top: 40rpx;">{{articles.TITLE}}</view>
  4. <view style="display: flex;font-size: 28rpx;color: #fff;padding: 40rpx 0;">
  5. <view style="display: flex;">
  6. <view>日期:</view>
  7. <view>{{articles.DOCPUBTIME}}</view>
  8. </view>
  9. <view style="display: flex;margin-left: 10rpx;">
  10. <view>来源:</view>
  11. <view>{{articles.ORGANCAT_DISP}}</view>
  12. </view>
  13. </view>
  14. <view style="display: flex;justify-content: space-between;">
  15. <view style="display: flex;font-size: 28rpx;color: #fff;">
  16. <view>字号大小:</view>
  17. <view bindtap="chooseFontSize" data-size="大" class="{{fontSize === '大' ? 'fontActive' : ''}}" style="margin-left: 20rpx;">大</view>
  18. <view bindtap="chooseFontSize" data-size="中" class="{{fontSize === '中' ? 'fontActive' : ''}}" style="margin: 0 30rpx;">中</view>
  19. <view bindtap="chooseFontSize" data-size="小" class="{{fontSize === '小' ? 'fontActive' : ''}}">小</view>
  20. </view>
  21. <!-- <view style="display: flex;font-size: 28rpx;color: #999999;">
  22. <view>分享:</view>
  23. <image style="width:38rpx;height:31rpx;" src="{{imgUrl}}public-weibo.png" />
  24. <image style="margin: 0 20rpx;width:38rpx;height:31rpx;" src="{{imgUrl}}public-weixin.png" />
  25. <image style="width:38rpx;height:31rpx;" src="{{imgUrl}}public-qqkongjian.png" />
  26. </view> -->
  27. </view>
  28. <!-- <view style="width: 693rpx;height: 77rpx;background: linear-gradient(90deg, #004A93, #508FF4);box-shadow: 0 9rpx 10rpx 0 rgba(80,143,244,0.3);border-radius: 39rpx;display: flex;align-items: center;justify-content: center;margin: 40rpx 0;">
  29. <image style="width:37rpx;height:37rpx;" src="{{imgUrl}}public-voice.png" />
  30. <view style="color: #FFFFFF;font-size: 32rpx;font-family: PingFang SC;font-weight: 400;margin-left: 20rpx;" bindtap="audioPlay">语音播报</view>
  31. </view> -->
  32. </view>
  33. <view style="background: #F4F8FF;border-top: 1px solid #508FF4;margin: 50rpx 30rpx 0 30rpx;padding: 20rpx 20rpx;">
  34. <rich-text style="font-size: 30px!important;" nodes="{{articles.DOCHTMLCON}}" />
  35. </view>
  36. </view>