detail.vue 6.6 KB

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