newDetail.vue 6.3 KB

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