detail.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. <template>
  2. <view class="content">
  3. <!-- 导航 -->
  4. <view class="nav">
  5. <view class="leftView" @click="back">
  6. <image src="../../static/mobile/backBtn.png" mode=""
  7. style="width: 22rpx; height: 40rpx; padding-left: 24rpx;"></image>
  8. </view>
  9. <view class="navTitle">详情</view>
  10. <view class="rightView">
  11. </view>
  12. </view>
  13. <!-- content -->
  14. <view class="top">{{detailData.title}}</view>
  15. <view class="time">{{detailData.createTime}}</view>
  16. <!-- <rich-text :nodes="couContent"></rich-text> -->
  17. <view class="html" v-html="detailData.contents"></view>
  18. <!-- item -->
  19. <view class="itemBg" v-if="itemArr.length != 0">
  20. <view v-for="(item,index) in itemArr" :key="index" class="twoItem"
  21. :class="{grayLine:index < itemArr.length-1}">
  22. <view class="itemLeftView">
  23. <image src="../../static/mobile/icon_fujian.png" mode="" class="img2"></image>
  24. <view class="title" @click="goUrl(item.fileUrl)" >{{item.fileName}}</view>
  25. <!-- <a class="title" :href='item.fileUrl'>{{item.fileName}}</a> -->
  26. </view>
  27. </view>
  28. </view>
  29. <view style="display: flex;">
  30. <view class="category">{{detailData.parentName}}</view>
  31. </view>
  32. <view class="gotop" @click="gotoTop">
  33. <image src="../../static/pcimg/btn_top@2x.png" mode="" class="gotopImg"></image>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. id: '',
  42. detailData: {},
  43. couContent: '',
  44. itemArr: [],
  45. }
  46. },
  47. onLoad(opt) {
  48. console.log('opt', opt);
  49. this.id = opt.id
  50. this.getDetailData()
  51. // uni.setNavigationBarTitle({
  52. // title: this.topName
  53. // })
  54. },
  55. methods: {
  56. goUrl(url){
  57. console.log('url',url);
  58. window.location.href = url
  59. },
  60. gotoTop() {
  61. uni.pageScrollTo({
  62. scrollTop: 0,
  63. duration: 300
  64. });
  65. },
  66. getDetailData() {
  67. uni.showLoading({
  68. title: '加载中'
  69. })
  70. let url = '/trainingOpenApi/articleDetail',
  71. params = {
  72. id: this.id,
  73. }
  74. this.$http(url, params, 'GET').then(res => {
  75. uni.hideLoading();
  76. var data = res.data
  77. // 处理 undefined和null转为空白字符串
  78. for (const key in data) {
  79. data[key] = this.$praseStrEmpty(data[key])
  80. }
  81. this.detailData = data
  82. if (this.detailData.contents) {
  83. var replaceStr = "application/x-shockwave-flash"
  84. this.detailData.contents = this.detailData.contents.replace(new RegExp(replaceStr, 'gm'),
  85. 'iframe') //(/''/g,"video/webm")
  86. this.detailData.contents = this.detailData.contents.replace(/<embed([\s\w"-=\/\.:;]+)/ig,
  87. '<iframe style="width: 100%;height:300px;" $1');
  88. }
  89. if (this.detailData.contents) {
  90. this.detailData.contents = this.detailData.contents.replace(
  91. /<p([\s\w"=\/\.:;]+)((?:(style="[^"]+")))/ig, '<p')
  92. .replace(/<p>/ig, '<p style="font-size: 15px; line-height: 25px;">')
  93. .replace(/<img([\s\w"-=\/\.:;]+)((?:(height="[^"]+")))/ig, '<img$1')
  94. .replace(/<img([\s\w"-=\/\.:;]+)((?:(width="[^"]+")))/ig, '<img$1')
  95. .replace(/<img([\s\w"-=\/\.:;]+)((?:(style="[^"]+")))/ig, '<img$1')
  96. .replace(/<img([\s\w"-=\/\.:;]+)((?:(alt="[^"]+")))/ig, '<img$1')
  97. .replace(/<img([\s\w"-=\/\.:;]+)/ig, '<img style="width: 100%;" $1');
  98. }
  99. console.log('contents',this.detailData.contents);
  100. this.itemArr = this.detailData.fileList
  101. })
  102. },
  103. back() {
  104. uni.navigateBack({
  105. })
  106. },
  107. // // 下拉刷新 上拉加载更多
  108. // onPullDownRefresh() {
  109. // this.page = 1;
  110. // this.getItemData()
  111. // this.getDetailData()
  112. // setTimeout(function() {
  113. // uni.stopPullDownRefresh();
  114. // }, 1000);
  115. // },
  116. // onReachBottom() {
  117. // this.page++;
  118. // this.getItemData()
  119. // }
  120. }
  121. }
  122. </script>
  123. <style scoped>
  124. .content {
  125. min-height: 100vh;
  126. background-color: #FFFFFF;
  127. padding-top: 88rpx;
  128. padding-bottom: 10rpx;
  129. margin: 0 24rpx;
  130. }
  131. .nav {
  132. position: fixed;
  133. left: 0;
  134. top: 0;
  135. width: 100vw;
  136. height: 88rpx;
  137. background-color: #FFFFFF;
  138. display: flex;
  139. justify-content: space-between;
  140. align-items: center;
  141. z-index: 999;
  142. border-bottom: #eeeeee 2rpx solid;
  143. }
  144. .navTitle {
  145. font-size: 36rpx;
  146. font-weight: bold;
  147. color: #3c3c3c;
  148. text-align: center;
  149. }
  150. .leftView {
  151. width: 30%;
  152. }
  153. .rightView {
  154. width: 30%;
  155. display: flex;
  156. justify-content: flex-end;
  157. padding-right: 24rpx;
  158. }
  159. .rightImg {
  160. width: 40rpx;
  161. height: 40rpx;
  162. }
  163. .top {
  164. background-color: #FFFFFF;
  165. padding-top: 40rpx;
  166. font-weight: bold;
  167. color: #3c3c3c;
  168. font-size: 32rpx;
  169. text-align: left;
  170. }
  171. .time {
  172. font-size: 24rpx;
  173. color: #999999;
  174. padding-top: 15rpx;
  175. padding-bottom: 30rpx;
  176. border-bottom: #EEEEEE 2rpx solid;
  177. }
  178. .html {
  179. padding-top: 18px;
  180. }
  181. .html img {
  182. width: 100% !important;
  183. }
  184. .itemBg {
  185. background-color: #FFFFFF;
  186. border-radius: 10rpx;
  187. border: #eeeeee 1rpx solid;
  188. }
  189. .twoItem {
  190. display: flex;
  191. justify-content: space-between;
  192. align-items: center;
  193. background-color: #FFFFFF;
  194. margin: 0 15rpx;
  195. padding-top: 24rpx;
  196. padding-bottom: 30rpx;
  197. }
  198. .grayLine {
  199. border-bottom: #EEEEEE 1rpx solid;
  200. }
  201. .itemLeftView {
  202. display: flex;
  203. align-items: center;
  204. width: 100%;
  205. }
  206. .title {
  207. font-size: 28rpx;
  208. color: #333333;
  209. width: 100%;
  210. word-break: break-all;
  211. }
  212. .title2 {
  213. background-color: #3F90F7;
  214. border-radius: 6rpx;
  215. width: 90rpx;
  216. height: 52rpx;
  217. line-height: 52rpx;
  218. text-align: center;
  219. margin-right: 15rpx;
  220. }
  221. .table-btn {
  222. color: #FFFFFF;
  223. font-size: 26rpx;
  224. text-decoration: none;
  225. }
  226. .img2 {
  227. width: 28rpx;
  228. height: 28rpx;
  229. margin-right: 6rpx;
  230. }
  231. .category {
  232. background: rgba(63, 144, 247, 0.1);
  233. font-size: 22rpx;
  234. color: #3F90F7;
  235. height: 36rpx;
  236. line-height: 36rpx;
  237. border-radius: 18rpx;
  238. padding: 3rpx 14rpx;
  239. min-width: 0;
  240. max-width: 138rpx;
  241. margin-bottom: 10rpx;
  242. text-align: center;
  243. margin: 30rpx 0;
  244. /* 隐藏文字显示 ...不换行 */
  245. overflow: hidden;
  246. text-overflow: ellipsis;
  247. white-space: nowrap;
  248. }
  249. .gotopImg {
  250. width: 100rpx;
  251. height: 100rpx;
  252. }
  253. .gotop {
  254. position: fixed;
  255. right: 15rpx;
  256. bottom: 50rpx;
  257. cursor: pointer;
  258. z-index: 999;
  259. }
  260. </style>