detail.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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. console.log('contents1111',this.detailData.contents);
  83. if (this.detailData.contents) {
  84. this.detailData.contents = this.detailData.contents.replace(/<iframe([\s\w"-=\/\.:;]+)/ig,
  85. '<iframe style="width: 100%;height:300px;" $1');
  86. }
  87. if (this.detailData.contents) {
  88. this.detailData.contents = this.detailData.contents.replace(
  89. /<p([\s\w"=\/\.:;]+)((?:(style="[^"]+")))/ig, '<p')
  90. .replace(/<p>/ig, '<p style="font-size: 15px; line-height: 25px;">')
  91. .replace(/<img([\s\w"-=\/\.:;]+)((?:(height="[^"]+")))/ig, '<img$1')
  92. .replace(/<img([\s\w"-=\/\.:;]+)((?:(width="[^"]+")))/ig, '<img$1')
  93. .replace(/<img([\s\w"-=\/\.:;]+)((?:(style="[^"]+")))/ig, '<img$1')
  94. .replace(/<img([\s\w"-=\/\.:;]+)((?:(alt="[^"]+")))/ig, '<img$1')
  95. .replace(/<img([\s\w"-=\/\.:;]+)/ig, '<img style="width: 100%;" $1');
  96. }
  97. console.log('contents',this.detailData.contents);
  98. this.itemArr = this.detailData.fileList
  99. })
  100. },
  101. back() {
  102. uni.navigateBack({
  103. })
  104. },
  105. // // 下拉刷新 上拉加载更多
  106. // onPullDownRefresh() {
  107. // this.page = 1;
  108. // this.getItemData()
  109. // this.getDetailData()
  110. // setTimeout(function() {
  111. // uni.stopPullDownRefresh();
  112. // }, 1000);
  113. // },
  114. // onReachBottom() {
  115. // this.page++;
  116. // this.getItemData()
  117. // }
  118. }
  119. }
  120. </script>
  121. <style scoped>
  122. .content {
  123. min-height: 100vh;
  124. background-color: #FFFFFF;
  125. padding-top: 88rpx;
  126. padding-bottom: 10rpx;
  127. margin: 0 24rpx;
  128. }
  129. .nav {
  130. position: fixed;
  131. left: 0;
  132. top: 0;
  133. width: 100vw;
  134. height: 88rpx;
  135. background-color: #FFFFFF;
  136. display: flex;
  137. justify-content: space-between;
  138. align-items: center;
  139. z-index: 999;
  140. border-bottom: #eeeeee 2rpx solid;
  141. }
  142. .navTitle {
  143. font-size: 36rpx;
  144. font-weight: bold;
  145. color: #3c3c3c;
  146. text-align: center;
  147. }
  148. .leftView {
  149. width: 30%;
  150. }
  151. .rightView {
  152. width: 30%;
  153. display: flex;
  154. justify-content: flex-end;
  155. padding-right: 24rpx;
  156. }
  157. .rightImg {
  158. width: 40rpx;
  159. height: 40rpx;
  160. }
  161. .top {
  162. background-color: #FFFFFF;
  163. padding-top: 40rpx;
  164. font-weight: bold;
  165. color: #3c3c3c;
  166. font-size: 32rpx;
  167. text-align: left;
  168. }
  169. .time {
  170. font-size: 24rpx;
  171. color: #999999;
  172. padding-top: 15rpx;
  173. padding-bottom: 30rpx;
  174. border-bottom: #EEEEEE 2rpx solid;
  175. }
  176. .html {
  177. padding-top: 18px;
  178. }
  179. .html img {
  180. width: 100% !important;
  181. }
  182. .itemBg {
  183. background-color: #FFFFFF;
  184. border-radius: 10rpx;
  185. border: #eeeeee 1rpx solid;
  186. }
  187. .twoItem {
  188. display: flex;
  189. justify-content: space-between;
  190. align-items: center;
  191. background-color: #FFFFFF;
  192. margin: 0 15rpx;
  193. padding-top: 24rpx;
  194. padding-bottom: 30rpx;
  195. }
  196. .grayLine {
  197. border-bottom: #EEEEEE 1rpx solid;
  198. }
  199. .itemLeftView {
  200. display: flex;
  201. align-items: center;
  202. width: 100%;
  203. }
  204. .title {
  205. font-size: 28rpx;
  206. color: #333333;
  207. width: 100%;
  208. word-break: break-all;
  209. }
  210. .title2 {
  211. background-color: #3F90F7;
  212. border-radius: 6rpx;
  213. width: 90rpx;
  214. height: 52rpx;
  215. line-height: 52rpx;
  216. text-align: center;
  217. margin-right: 15rpx;
  218. }
  219. .table-btn {
  220. color: #FFFFFF;
  221. font-size: 26rpx;
  222. text-decoration: none;
  223. }
  224. .img2 {
  225. width: 28rpx;
  226. height: 28rpx;
  227. margin-right: 6rpx;
  228. }
  229. .category {
  230. background: rgba(63, 144, 247, 0.1);
  231. font-size: 22rpx;
  232. color: #3F90F7;
  233. height: 36rpx;
  234. line-height: 36rpx;
  235. border-radius: 18rpx;
  236. padding: 3rpx 14rpx;
  237. min-width: 0;
  238. max-width: 138rpx;
  239. margin-bottom: 10rpx;
  240. text-align: center;
  241. margin: 30rpx 0;
  242. /* 隐藏文字显示 ...不换行 */
  243. overflow: hidden;
  244. text-overflow: ellipsis;
  245. white-space: nowrap;
  246. }
  247. .gotopImg {
  248. width: 100rpx;
  249. height: 100rpx;
  250. }
  251. .gotop {
  252. position: fixed;
  253. right: 15rpx;
  254. bottom: 50rpx;
  255. cursor: pointer;
  256. z-index: 999;
  257. }
  258. </style>