detail.vue 5.3 KB

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