newsContent.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <view style="padding:0 40rpx 20rpx;box-sizing: border-box" v-if="content != null">
  3. <view style="font-size: 34rpx;font-weight: bold;color: #303133;margin-top: 20rpx;">
  4. {{content.title}}
  5. </view>
  6. <!-- <view style="font-size: 30rpx;color:#606266;padding: 20rpx 0;">
  7. 发布人:
  8. </view> -->
  9. <view style="font-size: 28rpx;color:#909399;margin: 20rpx 0;display: flex;align-items: center;">
  10. <view>
  11. {{$u.timeFormat(content.publishTime, 'yyyy-mm-dd hh:MM:ss')}}
  12. </view>
  13. <view style="margin-left: 40rpx;">
  14. {{content.createBy}}
  15. </view>
  16. </view>
  17. <u-divider ></u-divider>
  18. <view>
  19. <u-parse :content="content.content"></u-parse>
  20. </view>
  21. <view style="border-radius: 8rpx;background-color: #f3f3f3;margin-top: 40rpx;padding: 20rpx 40rpx;" v-if="content.fjFiles != null && content.fjFiles.length != 0">
  22. <view style="display: flex;align-items: center;margin-bottom: 20rpx;f">
  23. <u-icon name="file-text-fill" color="#000"></u-icon>
  24. 附件
  25. </view>
  26. <view style="margin-bottom: 30rpx;" v-for="v in content.fjFiles" :key="v.fileId">
  27. <u--text :lines="1" size="15" color="#2979FF" decoration="underline" :text="v.name" @click="downLoad(v)"></u--text>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. content:null,
  37. list1:[],
  38. list2:[]
  39. }
  40. },
  41. onLoad(options){
  42. this.getNewsContent(options.id)
  43. },
  44. methods: {
  45. getNewsContent(id){
  46. uni.$u.http.get('/oa/article/detail/'+id).then(res=>{
  47. // console.log(res)
  48. this.content = res.data
  49. uni.setNavigationBarTitle({
  50. title: res.data.title
  51. })
  52. })
  53. },
  54. //下载附件
  55. downLoad(v){
  56. let that = this
  57. // uni.showLoading({
  58. // title:"打开中...",
  59. // })
  60. if(v.path == null){
  61. let qaz = v.url.slice(10).replace(/[\\]/g,'/')
  62. uni.navigateTo({
  63. url:"/pages/office/office?url="+getApp().globalData.updateUrl+qaz
  64. })
  65. // if(that.list1.indexOf(v.url.slice(10)) == -1){
  66. // uni.downloadFile({
  67. // url:getApp().globalData.updateUrl+qaz,
  68. // success: function(res) {
  69. // if (res.statusCode === 200) {
  70. // that.list1.push(v.url.slice(10))
  71. // that.list2.push(res.tempFilePath)
  72. // uni.openDocument({
  73. // filePath: res.tempFilePath,
  74. // success: function (qwe) {
  75. // uni.hideLoading();
  76. // }
  77. // });
  78. // }else{
  79. // uni.hideLoading()
  80. // uni.showToast({
  81. // title:"下载失败",
  82. // icon:'none'
  83. // })
  84. // }
  85. // },fail:function(){
  86. // uni.hideLoading()
  87. // uni.showToast({
  88. // title:"下载失败",
  89. // icon:'none'
  90. // })
  91. // }
  92. // });
  93. // }else{
  94. // uni.openDocument({
  95. // filePath: that.list2[that.list1.indexOf(v.url.slice(10))],
  96. // success: function (res) {
  97. // uni.hideLoading();
  98. // }
  99. // });
  100. // }
  101. }else{
  102. uni.navigateTo({
  103. url:"/pages/office/office?url="+getApp().globalData.saveUrl+v.path
  104. })
  105. // if(that.list1.indexOf(v.path) == -1){
  106. // uni.downloadFile({
  107. // url:getApp().globalData.saveUrl+v.path,
  108. // success: function(res) {
  109. // if (res.statusCode === 200) {
  110. // that.list1.push(v.path)
  111. // that.list2.push(res.tempFilePath)
  112. // uni.openDocument({
  113. // filePath: res.tempFilePath,
  114. // success: function (qwe) {
  115. // uni.hideLoading();
  116. // }
  117. // });
  118. // }else{
  119. // uni.hideLoading()
  120. // uni.showToast({
  121. // title:"下载失败",
  122. // icon:'none'
  123. // })
  124. // }
  125. // },fail:function(){
  126. // uni.hideLoading()
  127. // uni.showToast({
  128. // title:"下载失败",
  129. // icon:'none'
  130. // })
  131. // }
  132. // });
  133. // }else{
  134. // uni.openDocument({
  135. // filePath: that.list2[that.list1.indexOf(v.path)],
  136. // success: function (res) {
  137. // uni.hideLoading();
  138. // }
  139. // });
  140. // }
  141. }
  142. }
  143. }
  144. }
  145. </script>
  146. <style>
  147. </style>