detail.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <template>
  2. <view class="content">
  3. <pcNav></pcNav>
  4. <view style="height: 72px;"></view>
  5. <view class="top">
  6. <view class="topline" @click="goIndex">首页</view>
  7. <view class="topjt">></view>
  8. <view class="topline">{{topName}}</view>
  9. <view class="topjt">></view>
  10. <view class="topline">{{twoName}}</view>
  11. </view>
  12. <view class="htmlBox">
  13. <view class="htmlTitle">{{detailData.name}}</view>
  14. <view class="time">{{detailData.publishTime}}</view>
  15. <view class="html" v-html="detailData.contents"></view>
  16. </view>
  17. <view class="itemArr" v-if="itemArr.length>0">
  18. <view class="itemArrLine" v-for="(item,index) in itemArr">
  19. <view class="itemArrLeft">
  20. <image src="../../static/pcimg/icon_fujian@2x.png" mode="" class="fileIcon"></image>
  21. <view class="fileName">{{item.fileName}}</view>
  22. </view>
  23. <view class="dload">
  24. <a class="dloadbtn" :href="item.fileUrl" target='_blank' >下载</a>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="lbel">
  29. <view class="topName">{{topName}}</view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import pcNav from '../../components/pcNav/pcNav.vue'
  35. export default {
  36. components: {
  37. pcNav,
  38. },
  39. data() {
  40. return {
  41. id: '',
  42. detailData: {},
  43. couContent: '',
  44. itemArr: [],
  45. topName:'',
  46. twoName:'',
  47. }
  48. },
  49. onLoad(opt) {
  50. console.log('opt', opt);
  51. this.id = opt.id
  52. this.topName=opt.topName;
  53. this.twoName=opt.twoName;
  54. this.getDetailData()
  55. // uni.setNavigationBarTitle({
  56. // title: this.topName
  57. // })
  58. },
  59. methods: {
  60. goIndex(){
  61. uni.navigateTo({
  62. url:'index'
  63. })
  64. },
  65. getDetailData() {
  66. uni.showLoading({
  67. title: '加载中'
  68. })
  69. let url = '/trainingOpenApi/articleDetail',
  70. params = {
  71. id: this.id,
  72. }
  73. this.$http(url, params, 'GET').then(res => {
  74. uni.hideLoading();
  75. var data = res.data
  76. // 处理 undefined和null转为空白字符串
  77. for (const key in data) {
  78. data[key] = this.$praseStrEmpty(data[key])
  79. }
  80. this.detailData = data;
  81. if (this.detailData.contents) {
  82. var replaceStr = "application/x-shockwave-flash"
  83. this.detailData.contents=this.detailData.contents.replace(new RegExp(replaceStr,'gm'),'video/webm')//(/''/g,"video/webm")
  84. this.detailData.contents=this.detailData.contents.replace(/<embed([\s\w"-=\/\.:;]+)/ig, '<embed style="width: 100%;height:500px;" $1');
  85. }
  86. if (this.detailData.contents) {
  87. this.detailData.contents = this.detailData.contents.replace(
  88. /<p([\s\w"=\/\.:;]+)((?:(style="[^"]+")))/ig, '<p')
  89. .replace(/<p>/ig, '<p style="font-size: 15px; line-height: 25px;">')
  90. .replace(/<img([\s\w"-=\/\.:;]+)((?:(height="[^"]+")))/ig, '<img$1')
  91. .replace(/<img([\s\w"-=\/\.:;]+)((?:(width="[^"]+")))/ig, '<img$1')
  92. .replace(/<img([\s\w"-=\/\.:;]+)((?:(style="[^"]+")))/ig, '<img$1')
  93. .replace(/<img([\s\w"-=\/\.:;]+)((?:(alt="[^"]+")))/ig, '<img$1')
  94. .replace(/<img([\s\w"-=\/\.:;]+)/ig, '<img style="width: 100%;" $1');
  95. }
  96. this.itemArr = this.detailData.fileList
  97. console.log(this.itemArr)
  98. })
  99. },
  100. // }
  101. }
  102. }
  103. </script>
  104. <style scoped>
  105. .top{
  106. width: 1200px;
  107. margin: 0 auto;
  108. display: flex;
  109. padding: 30px 0;
  110. font-size: 14px;
  111. }
  112. .htmlBox{
  113. width: 720px;
  114. margin: 0 auto;
  115. }
  116. .topline{
  117. padding-right: 10px;
  118. cursor: pointer;
  119. color: #3C3C3C;
  120. }
  121. .topjt{
  122. color: #AAAAAA;
  123. padding-right: 10px;
  124. }
  125. .htmlTitle{
  126. font-size: 24px;
  127. font-weight: 500;
  128. color: #3C3C3C;
  129. line-height: 33px;
  130. }
  131. .time{
  132. font-size: 14px;
  133. padding-top: 16px;
  134. color: #999999;
  135. line-height: 20px;
  136. border-bottom: 1px solid #EEEEEE;
  137. padding-bottom: 19px;
  138. }
  139. .html{
  140. padding-top: 18px;
  141. }
  142. .fileIcon{
  143. width: 14px;
  144. height: 14px;
  145. margin-top: 4px;
  146. margin-right: 4px;
  147. }
  148. .itemArrLeft{
  149. display: flex;
  150. }
  151. .itemArrLine{
  152. display: flex;
  153. justify-content: space-between;
  154. padding: 22px 0;
  155. border-bottom: 1px solid #EEEEEE;
  156. color: #333333;
  157. line-height: 22px;
  158. font-size: 16px;
  159. }
  160. .itemArr{
  161. width: 720px;
  162. margin: 0 auto;
  163. margin-top: 30px;
  164. border-radius: 6px;
  165. border: 1px solid #EEEEEE;
  166. padding: 0 16px;
  167. }
  168. .dloadbtn{
  169. display: block;
  170. width: 68px;
  171. height: 28px;
  172. background: #3F90F7;
  173. border-radius: 6px;
  174. color: #FFFFFF;
  175. text-align: center;
  176. line-height:28px ;
  177. font-size: 14px;
  178. text-decoration:none;
  179. }
  180. .lbel{
  181. width: 720px;
  182. margin: 0 auto;
  183. margin-top: 30px;
  184. }
  185. .topName{
  186. width: 84px;
  187. height: 24px;
  188. background: rgba(63, 144, 247, 0.1);
  189. border-radius: 14px;
  190. font-size: 12px;
  191. color: #3F90F7;
  192. line-height: 24px;
  193. text-align: center;
  194. }
  195. </style>