detail.vue 6.4 KB

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