123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <template>
- <view style="padding:0 40rpx 20rpx;box-sizing: border-box" v-if="content != null">
- <view style="font-size: 34rpx;font-weight: bold;color: #303133;margin-top: 20rpx;">
- {{content.title}}
- </view>
- <!-- <view style="font-size: 30rpx;color:#606266;padding: 20rpx 0;">
- 发布人:
- </view> -->
- <view style="font-size: 28rpx;color:#909399;margin: 20rpx 0;display: flex;align-items: center;">
- <view>
- {{$u.timeFormat(content.publishTime, 'yyyy-mm-dd hh:MM:ss')}}
- </view>
- <view style="margin-left: 40rpx;">
- {{content.createBy}}
- </view>
- </view>
- <u-divider ></u-divider>
- <view>
- <u-parse :content="content.content"></u-parse>
- </view>
- <view style="border-radius: 8rpx;background-color: #f3f3f3;margin-top: 40rpx;padding: 20rpx 40rpx;" v-if="content.fjFiles != null && content.fjFiles.length != 0">
- <view style="display: flex;align-items: center;margin-bottom: 20rpx;f">
- <u-icon name="file-text-fill" color="#000"></u-icon>
- 附件
- </view>
- <view style="margin-bottom: 30rpx;" v-for="v in content.fjFiles" :key="v.fileId">
- <u--text :lines="1" size="15" color="#2979FF" decoration="underline" :text="v.name" @click="downLoad(v)"></u--text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- content:null,
- list1:[],
- list2:[]
- }
- },
- onLoad(options){
- this.getNewsContent(options.id)
- },
- methods: {
- getNewsContent(id){
- uni.$u.http.get('/oa/article/detail/'+id).then(res=>{
- // console.log(res)
- this.content = res.data
- uni.setNavigationBarTitle({
- title: res.data.title
- })
- })
- },
- //下载附件
- downLoad(v){
- let that = this
- // uni.showLoading({
- // title:"打开中...",
- // })
- if(v.path == null){
- let qaz = v.url.slice(10).replace(/[\\]/g,'/')
- uni.navigateTo({
- url:"/pages/office/office?url="+getApp().globalData.updateUrl+qaz
- })
- // if(that.list1.indexOf(v.url.slice(10)) == -1){
- // uni.downloadFile({
- // url:getApp().globalData.updateUrl+qaz,
- // success: function(res) {
- // if (res.statusCode === 200) {
- // that.list1.push(v.url.slice(10))
- // that.list2.push(res.tempFilePath)
- // uni.openDocument({
- // filePath: res.tempFilePath,
- // success: function (qwe) {
- // uni.hideLoading();
- // }
- // });
- // }else{
- // uni.hideLoading()
- // uni.showToast({
- // title:"下载失败",
- // icon:'none'
- // })
- // }
- // },fail:function(){
- // uni.hideLoading()
- // uni.showToast({
- // title:"下载失败",
- // icon:'none'
- // })
- // }
- // });
- // }else{
- // uni.openDocument({
- // filePath: that.list2[that.list1.indexOf(v.url.slice(10))],
- // success: function (res) {
- // uni.hideLoading();
- // }
- // });
- // }
- }else{
- uni.navigateTo({
- url:"/pages/office/office?url="+getApp().globalData.saveUrl+v.path
- })
- // if(that.list1.indexOf(v.path) == -1){
- // uni.downloadFile({
- // url:getApp().globalData.saveUrl+v.path,
- // success: function(res) {
- // if (res.statusCode === 200) {
- // that.list1.push(v.path)
- // that.list2.push(res.tempFilePath)
- // uni.openDocument({
- // filePath: res.tempFilePath,
- // success: function (qwe) {
- // uni.hideLoading();
- // }
- // });
- // }else{
- // uni.hideLoading()
- // uni.showToast({
- // title:"下载失败",
- // icon:'none'
- // })
- // }
- // },fail:function(){
- // uni.hideLoading()
- // uni.showToast({
- // title:"下载失败",
- // icon:'none'
- // })
- // }
- // });
- // }else{
- // uni.openDocument({
- // filePath: that.list2[that.list1.indexOf(v.path)],
- // success: function (res) {
- // uni.hideLoading();
- // }
- // });
- // }
- }
-
-
- }
- }
- }
- </script>
- <style>
- </style>
|