1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!--pages/publics/fileDetail/fileDetail.wxml-->
- <view>
- <view style="background: linear-gradient(#508FF4, #508ff4f5);padding: 0 30rpx 10rpx 30rpx;">
- <view style="font-size: 40rpx;font-family: PingFang SC;font-weight: bold;color: #fff;padding-top: 40rpx;">{{articles.TITLE}}</view>
- <view style="display: flex;font-size: 28rpx;color: #fff;padding: 40rpx 0;">
- <view style="display: flex;">
- <view>日期:</view>
- <view>{{articles.PUBDATE}}</view>
- </view>
- <view style="display: flex;margin-left: 10rpx;">
- <view>来源:</view>
- <view>{{articles.PUBLISHER}}</view>
- </view>
- </view>
- <view style="display: flex;justify-content: space-between;">
- <view style="display: flex;font-size: 28rpx;color: #fff;">
- <view>字号大小:</view>
- <view bindtap="chooseFontSize" data-size="大" class="{{fontSize === '大' ? 'fontActive' : ''}}" style="margin-left: 20rpx;">大</view>
- <view bindtap="chooseFontSize" data-size="中" class="{{fontSize === '中' ? 'fontActive' : ''}}" style="margin: 0 30rpx;">中</view>
- <view bindtap="chooseFontSize" data-size="小" class="{{fontSize === '小' ? 'fontActive' : ''}}">小</view>
- </view>
- <!-- <view style="display: flex;font-size: 28rpx;color: #999999;">
- <view>分享:</view>
- <image style="width:38rpx;height:31rpx;" src="{{imgUrl}}public-weibo.png" />
- <image style="margin: 0 20rpx;width:38rpx;height:31rpx;" src="{{imgUrl}}public-weixin.png" />
- <image style="width:38rpx;height:31rpx;" src="{{imgUrl}}public-qqkongjian.png" />
- </view> -->
- </view>
- <!-- <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;">
- <image style="width:37rpx;height:37rpx;" src="{{imgUrl}}public-voice.png" />
- <view style="color: #FFFFFF;font-size: 32rpx;font-family: PingFang SC;font-weight: 400;margin-left: 20rpx;" bindtap="audioPlay">语音播报</view>
- </view> -->
- </view>
- <view style="background: #F4F8FF;border-top: 1px solid #508FF4;margin: 50rpx 30rpx 0 30rpx;padding: 20rpx 20rpx;">
- <rich-text style="font-size: 30px!important;" nodes="{{articles.DOCHTMLCON}}" />
- </view>
- <!-- <view style="padding: 0 30rpx;">
- <view style="font-size: 38rpx;font-family: PingFang SC;font-weight: bold;color: #333333;border-bottom: 1px solid #C5C5C5;padding: 70rpx 0 20rpx 0;">附件下载</view>
- <view style="display: flex;justify-content: space-between;color: #333333;height: 150rpx;align-items: center;font-size: 30rpx;">
- <view>1.政府信息公开申请表 .docx</view>
- <view style="width: 151rpx;height: 50rpx;border: 1px solid #C5C5C5;border-radius: 4px;background: #FFFFFF;text-align: center;line-height: 50rpx;">下载</view>
- </view>
- </view> -->
- </view>
|