detail.vue 6.6 KB

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