reportDetail.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <template>
  2. <view class="report-detail-page">
  3. <!-- 报告详情 -->
  4. <view class="main-box" v-if="false">
  5. <view class="title">【第1期 | 原油周报】关注中美贸易政策</view>
  6. <view class="flex time">
  7. <text>FICC团队</text>
  8. <text>2021.11.18 08:40:00</text>
  9. </view>
  10. <view class="flex audio-wrap">
  11. <image src="" mode="aspectFill"/>
  12. <view>
  13. <view>关注中美贸易政策变化</view>
  14. <view style="color:#999999">1分31秒</view>
  15. </view>
  16. </view>
  17. <view class="tips">
  18. <text>注:请务必阅读</text>
  19. <text style="color:#E3B377;margin-left:20rpx" @click="showDisclaimers=true">免责声明</text>
  20. </view>
  21. <view class="rich-content">
  22. <mp-html :content="html"/>
  23. </view>
  24. </view>
  25. <!-- 晨报、周报章节 -->
  26. <view class="chapter-list-wrap">
  27. <view class="top-box">
  28. <view class="title">晨报</view>
  29. <view class="sub-title">鲍威尔调控市场加息预期</view>
  30. <view class="flex top-bot">
  31. <view class="flex time-box">
  32. <view class="day">14</view>
  33. <view>
  34. <view>周三</view>
  35. <view>2022-03</view>
  36. </view>
  37. </view>
  38. <view class="num">第249期</view>
  39. </view>
  40. </view>
  41. <view class="list-box">
  42. <view class="flex item" v-for="item in 7" :key="item" @click="goChapterDetail">
  43. <image class="img" src="" mode="aspectFill" />
  44. <view class="con">
  45. <view class="title">宏观 <text class="tag">谨慎</text></view>
  46. <view class="van-multi-ellipsis--l2 sub-title">非美市场供应端呈不稳定性</view>
  47. <view class="update-time">更新至:2022-01-12</view>
  48. </view>
  49. </view>
  50. </view>
  51. </view>
  52. <!-- 返回顶部 -->
  53. <image @click="handleBackTop" class="back-top-img" src="./static/back-top.png" mode="aspectFill"/>
  54. <!-- 免责声明 -->
  55. <van-popup :show="showDisclaimers" @close="showDisclaimers=false" round closeable>
  56. <view class="disclaimers-box">
  57. <view style="text-align:center;font-size:16px;font-weight:bold;margin-bottom:20rpx">免责声明</view>
  58. <view style="margin-bottom:10rpx">1、本报告仅供弘则弥道(上海)投资咨询有限公司正式签约的机构客户使用,不会仅因接收人/接受机构收到本报告而将其视为客户。</view>
  59. <view style="margin-bottom:10rpx">2、本报告根据国际和行业通行的准则,以合法渠道获得这些信息,尽可能保证可靠、准确和完整,但并不保证报告所述信息的准确性和完整性,也不保证本报告所包含的信息或建议在本报告发出后不会发生任何变更。本报告中所提供的信息仅供参考。</view>
  60. <view style="margin-bottom:10rpx">3、报告中的内容不对投资者做出的最终操作建议做任何的担保,也没有任何形式的分享投资收益或者分担投资损失的书面或口头承诺。不作为客户在投资、法律、会计或税务等方面的最终操作建议,也不作为道义的、责任的和法律的依据或者凭证,无论是否已经明示或者暗示。</view>
  61. <view style="margin-bottom:10rpx">4、在任何情况下,本公司不对客户/接受人/接受机构因使用报告中内容所引致的一切损失负责任,客户/接受人/接受机构需自行承担全部风险。</view>
  62. </view>
  63. </van-popup>
  64. </view>
  65. </template>
  66. <script>
  67. export default {
  68. data () {
  69. return {
  70. showDisclaimers:false,//显示免责声明
  71. html:'<h1>Hello World!</h1>'
  72. }
  73. },
  74. methods: {
  75. handleBackTop(){
  76. uni.pageScrollTo({ scrollTop: 0 })
  77. },
  78. goChapterDetail(){
  79. uni.navigateTo({ url: '/pages-report/chapterDetail' })
  80. }
  81. }
  82. }
  83. </script>
  84. <style lang="scss" scoped>
  85. .report-detail-page{
  86. .main-box{
  87. padding: 34rpx;
  88. }
  89. .title{
  90. font-size: 36rpx;
  91. font-weight: bold;
  92. margin-bottom: 30rpx;
  93. }
  94. .time{
  95. justify-content: space-between;
  96. font-size: 28rpx;
  97. }
  98. .audio-wrap{
  99. height: 160rpx;
  100. background: #FAF7EE;
  101. border-radius: 16rpx;
  102. margin-top: 20rpx;
  103. padding: 10rpx 31rpx;
  104. margin-bottom: 31rpx;
  105. align-items: center;
  106. image{
  107. width: 110rpx;
  108. height: 110rpx;
  109. display: block;
  110. background-color: rgb(233, 230, 230);
  111. margin-right: 16rpx;
  112. }
  113. }
  114. .tips{
  115. font-size: 34rpx;
  116. margin-bottom: 51rpx;
  117. &::before{
  118. content: '';
  119. width: 10rpx;
  120. height: 50rpx;
  121. display: inline-block;
  122. background-color: #E3B377;
  123. margin-right: 20rpx;
  124. position: relative;
  125. top: 10rpx;
  126. }
  127. }
  128. .disclaimers-box{
  129. width: 94vw;
  130. padding: 32rpx;
  131. }
  132. .rich-content{
  133. line-height: 1.7;
  134. }
  135. .back-top-img{
  136. position: fixed;
  137. z-index: 99;
  138. width: 76rpx;
  139. height: 76rpx;
  140. right: 34rpx;
  141. bottom: 100rpx;
  142. }
  143. .chapter-list-wrap{
  144. .top-box{
  145. height: 418rpx;
  146. background-color: rgba($color: #000000, $alpha: 0.7);
  147. color: #fff;
  148. position: relative;
  149. .title{
  150. text-align: center;
  151. font-size: 34rpx;
  152. font-weight: 600;
  153. padding-top: 78rpx;
  154. }
  155. .sub-title{
  156. font-size: 32rpx;
  157. text-align: center;
  158. width: 70%;
  159. margin-left: auto;
  160. margin-right: auto;
  161. }
  162. .top-bot{
  163. position: absolute;
  164. bottom: 70rpx;
  165. left: 34rpx;
  166. right: 34rpx;
  167. justify-content: space-between;
  168. align-items: flex-end;
  169. .time-box{
  170. align-items: center;
  171. font-size: 24rpx;
  172. .day{
  173. font-size: 32rpx;
  174. border-right: 1px solid #fff;
  175. padding-right: 15rpx;
  176. margin-right: 15rpx;
  177. }
  178. }
  179. }
  180. }
  181. .list-box{
  182. margin-top: -50rpx;
  183. border-top-left-radius: 40rpx;
  184. border-top-right-radius: 40rpx;
  185. min-height: 200rpx;
  186. background-color: #fff;
  187. position: relative;
  188. z-index: 2;
  189. .item{
  190. padding: 50rpx 34rpx;
  191. border-bottom: 1px solid #E5E5E5;
  192. .img{
  193. width: 112rpx;
  194. height: 112rpx;
  195. background-color: #f5f5f5;
  196. flex-shrink: 0;
  197. margin-right: 20rpx;
  198. }
  199. .con{
  200. flex: 1;
  201. .title{
  202. font-size: 32rpx;
  203. color: #57768D;
  204. font-weight: bold;
  205. margin-bottom: 10rpx;
  206. .tag{
  207. font-size: 20rpx;
  208. color: #fff;
  209. font-weight: normal;
  210. display: inline-block;
  211. background-color: #1E88E5;
  212. line-height: 37rpx;
  213. padding: 0 6rpx;
  214. border-radius: 4rpx;
  215. margin-left: 10rpx;
  216. }
  217. }
  218. .sub-title{
  219. color: #999;
  220. }
  221. .update-time{
  222. float: right;
  223. color: #D4D4D4;
  224. font-size: 20rpx;
  225. }
  226. }
  227. }
  228. }
  229. }
  230. }
  231. </style>