10 changed files with 207 additions and 93 deletions
@ -0,0 +1,109 @@
|
||||
// pages/preview-list/preview-list.js
|
||||
const $api = require('../../utils/api').API; |
||||
Page({ |
||||
|
||||
/** |
||||
* 页面的初始数据 |
||||
*/ |
||||
data: { |
||||
previewFileList: [], |
||||
images: [], |
||||
loadingHidden: true |
||||
}, |
||||
|
||||
/** |
||||
* 生命周期函数--监听页面加载 |
||||
*/ |
||||
onLoad: function (options) { |
||||
if (options.transactionStatus == "toBeListed") { |
||||
$api.AJAX('GET', 'applets/landToListAttachment', { |
||||
fileType: options.fileType, |
||||
proposedseriaId: options.id, |
||||
}, true).then(res => { |
||||
if (res.data.length > 0) { |
||||
let images = res.data.filter(item => { |
||||
let src = item.filePath; |
||||
let startIndex = src.lastIndexOf("."); |
||||
let fileType; |
||||
if (startIndex != -1) { |
||||
fileType = src.substring(startIndex + 1, src.length).toLowerCase(); |
||||
} |
||||
let imgTypes = ['png', 'bmp', 'gif', 'jpg', 'jpeg']; |
||||
return imgTypes.indexOf(fileType) != -1; |
||||
}).map(item => { |
||||
return item.filePath |
||||
}) |
||||
this.setData({ |
||||
previewFileList: res.data, |
||||
images |
||||
}) |
||||
} |
||||
}) |
||||
} else { |
||||
$api.AJAX('GET', 'applets/landAttachment', { |
||||
fileType: options.fileType, |
||||
landListedId: options.id, |
||||
}, true).then(res => { |
||||
if (res.data.length > 0) { |
||||
let images = res.data.filter(item => { |
||||
let src = item.filePath; |
||||
let startIndex = src.lastIndexOf("."); |
||||
let fileType; |
||||
if (startIndex != -1) { |
||||
fileType = src.substring(startIndex + 1, src.length).toLowerCase(); |
||||
} |
||||
let imgTypes = ['png', 'bmp', 'gif', 'jpg', 'jpeg']; |
||||
return imgTypes.indexOf(fileType) != -1; |
||||
}).map(item => { |
||||
return item.filePath |
||||
}) |
||||
this.setData({ |
||||
previewFileList: res.data, |
||||
images |
||||
}) |
||||
} |
||||
}) |
||||
} |
||||
}, |
||||
preview: function (e) { |
||||
let src = e.target.dataset.type; |
||||
let startIndex = src.lastIndexOf("."); |
||||
let fileType; |
||||
let { |
||||
images |
||||
} = this.data |
||||
if (startIndex != -1) { |
||||
fileType = src.substring(startIndex + 1, src.length).toLowerCase(); |
||||
} |
||||
let imgTypes = ['png', 'bmp', 'gif', 'jpg', 'jpeg']; |
||||
if (imgTypes.indexOf(fileType) != -1) { |
||||
//图片
|
||||
wx.previewImage({ |
||||
current: src, |
||||
urls: images |
||||
}) |
||||
} else { |
||||
this.setData({ |
||||
loadingHidden: false |
||||
}); |
||||
let that = this; |
||||
wx.downloadFile({ |
||||
url: src, |
||||
success: function (res) { |
||||
if (res.statusCode === 200) { |
||||
let filePath = res.tempFilePath |
||||
wx.openDocument({ |
||||
fileType: fileType, |
||||
filePath: filePath, |
||||
success: function () { |
||||
that.setData({ |
||||
loadingHidden: true |
||||
}); |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
}) |
||||
} |
||||
} |
||||
}) |
@ -0,0 +1,30 @@
|
||||
<!--pages/preview-list/preview-list.wxml--> |
||||
<view class="pages"> |
||||
<mp-navigation-bar ext-class="set-bar" title="预览"></mp-navigation-bar> |
||||
<view class="table"> |
||||
<view class="tr bg-w"> |
||||
<view class="th">文件名</view> |
||||
<view class="th1">操作</view> |
||||
</view> |
||||
<scroll-view scroll-y="{{true}}" style="height: 43rem;"> |
||||
<block wx:for="{{previewFileList}}" wx:key="index"> |
||||
<view class="tr bg-g" wx:if="{{index % 2 == 0}}"> |
||||
<view class="td">{{item.fileName}}</view> |
||||
<view class="td2"> |
||||
<text class="see" bindtap='preview' data-type="{{item.filePath}}">点击查看</text> |
||||
</view> |
||||
</view> |
||||
<view class="tr" wx:else> |
||||
<view class="td">{{item.fileName}}</view> |
||||
<view class="td2"> |
||||
<text class="see" bindtap='preview' data-type="{{item.filePath}}">点击查看</text> |
||||
</view> |
||||
</view> |
||||
</block> |
||||
</scroll-view> |
||||
</view> |
||||
<view wx:if="{{previewFileList.length <= 0}}" class="noText">暂无数据</view> |
||||
<loading hidden="{{loadingHidden}}"> |
||||
加载中... |
||||
</loading> |
||||
</view> |
@ -0,0 +1,60 @@
|
||||
/* pages/preview-list/preview-list.wxss */ |
||||
.table { |
||||
border: 0px solid darkgray; |
||||
} |
||||
|
||||
.tr { |
||||
display: flex; |
||||
width: 100%; |
||||
justify-content: center; |
||||
height: 3rem; |
||||
align-items: center; |
||||
} |
||||
|
||||
.td { |
||||
width: 70%; |
||||
justify-content: center; |
||||
text-align: left; |
||||
} |
||||
.td1 { |
||||
width: 30%; |
||||
justify-content: center; |
||||
text-align: center; |
||||
} |
||||
|
||||
.bg-w { |
||||
background: snow; |
||||
} |
||||
|
||||
.bg-g { |
||||
background: #E6F3F9; |
||||
} |
||||
|
||||
.th { |
||||
width: 70%; |
||||
justify-content: center; |
||||
background: #3366FF; |
||||
color: #fff; |
||||
display: flex; |
||||
height: 3rem; |
||||
align-items: center; |
||||
font-size: 20rpx; |
||||
text-align: center; |
||||
} |
||||
|
||||
.th1 { |
||||
width: 30%; |
||||
justify-content: center; |
||||
background: #3366FF; |
||||
color: #fff; |
||||
display: flex; |
||||
height: 3rem; |
||||
font-size: 20rpx; |
||||
align-items: center; |
||||
text-align: center; |
||||
} |
||||
|
||||
.noText{ |
||||
text-align: center; |
||||
padding-top: 50rpx; |
||||
} |
@ -1,68 +0,0 @@
|
||||
// pages/preview/preview.js
|
||||
Page({ |
||||
|
||||
/** |
||||
* 页面的初始数据 |
||||
*/ |
||||
data: { |
||||
imgSrc: "" |
||||
}, |
||||
|
||||
/** |
||||
* 生命周期函数--监听页面加载 |
||||
*/ |
||||
onLoad: function (options) { |
||||
this.setData({ |
||||
imgSrc: options.src |
||||
}) |
||||
}, |
||||
|
||||
/** |
||||
* 生命周期函数--监听页面初次渲染完成 |
||||
*/ |
||||
onReady: function () { |
||||
|
||||
}, |
||||
|
||||
/** |
||||
* 生命周期函数--监听页面显示 |
||||
*/ |
||||
onShow: function () { |
||||
|
||||
}, |
||||
|
||||
/** |
||||
* 生命周期函数--监听页面隐藏 |
||||
*/ |
||||
onHide: function () { |
||||
|
||||
}, |
||||
|
||||
/** |
||||
* 生命周期函数--监听页面卸载 |
||||
*/ |
||||
onUnload: function () { |
||||
|
||||
}, |
||||
|
||||
/** |
||||
* 页面相关事件处理函数--监听用户下拉动作 |
||||
*/ |
||||
onPullDownRefresh: function () { |
||||
|
||||
}, |
||||
|
||||
/** |
||||
* 页面上拉触底事件的处理函数 |
||||
*/ |
||||
onReachBottom: function () { |
||||
|
||||
}, |
||||
|
||||
/** |
||||
* 用户点击右上角分享 |
||||
*/ |
||||
onShareAppMessage: function () { |
||||
|
||||
} |
||||
}) |
@ -1,9 +0,0 @@
|
||||
<!--pages/preview/preview.wxml--> |
||||
<view class="pages"> |
||||
<mp-navigation-bar ext-class="set-bar" title="预览"></mp-navigation-bar> |
||||
<view class="preview"> |
||||
<image style="width: 100%; height: calc(100vh - 88px); background-color: #eeeeee;" mode="aspectFit" |
||||
src="{{imgSrc}}"></image> |
||||
<view wx:if="{{!imgSrc}}" class="noText">暂无数据</view> |
||||
</view> |
||||
</view> |
Loading…
Reference in new issue