|
@@ -87,7 +87,7 @@
|
|
|
<!-- 样章 -->
|
|
|
<view class="" v-if="specimen_file.length>0">
|
|
|
<view class="sample">样章</view>
|
|
|
- <view class="" v-for="(item,index) in specimen_file" :key="index"
|
|
|
+ <view @click="tourl(item.url)" class="" v-for="(item,index) in specimen_file" :key="index"
|
|
|
style="display: flex;margin-top: 28rpx;">
|
|
|
<view class="" style="display: flex;">
|
|
|
<image src="/static/images/pdf.png" class="image3" mode=""></image>
|
|
@@ -107,7 +107,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="courseware">课件</view>
|
|
|
- <view v-for="(item,index) in courseware_file" :key="index" class=""
|
|
|
+ <view @click='touser(item.url)' v-for="(item,index) in courseware_file" :key="index" class=""
|
|
|
style="display: flex;margin-top: 28rpx;justify-content: space-between;">
|
|
|
<div style="display: flex;">
|
|
|
<image src="/static/images/pdf.png" class="image3" mode=""></image>
|
|
@@ -117,7 +117,7 @@
|
|
|
</view>
|
|
|
<view class="" v-if="resource_file.length>0">
|
|
|
<view class="courseware">资源</view>
|
|
|
- <view v-for="(item,index) in resource_file" :key="index" class=""
|
|
|
+ <view @click='touser(item.url)' v-for="(item,index) in resource_file" :key="index" class=""
|
|
|
style="display: flex;margin-top: 28rpx;justify-content: space-between;">
|
|
|
<view class="" style="display: flex;">
|
|
|
<image src="/static/images/pdf.png" class="image3" mode=""></image>
|
|
@@ -135,7 +135,8 @@
|
|
|
<view v-if="datainfo.is_free==0" class="right" @click="show=true">免费下载</view>
|
|
|
<view v-if="datainfo.is_certificate==0" @click="show=true" class="right">体验下载</view>
|
|
|
<view v-if="datainfo.is_pay==0" class="right" @click="show=true">已购买,可下载</view>
|
|
|
- <view v-if="datainfo.is_pay!=0&&datainfo.is_certificate!=0&&datainfo.is_free!=0" class="right">在线试读</view>
|
|
|
+ <view v-if="datainfo.is_pay!=0&&datainfo.is_certificate!=0&&datainfo.is_free!=0" @click="tourl(url)"
|
|
|
+ class="right">在线试读</view>
|
|
|
</view>
|
|
|
<u-popup v-model="show" mode="bottom" border-radius="24">
|
|
|
<view class="" style="padding: 32rpx 28rpx;">
|
|
@@ -146,8 +147,8 @@
|
|
|
</view>
|
|
|
<view class="" v-if="specimen_file.length>0">
|
|
|
<view class="sample">样章</view>
|
|
|
- <view class="u-row-between" v-for="(item,index) in specimen_file" :key="index"
|
|
|
- style="display: flex;margin-top: 28rpx;">
|
|
|
+ <view @click="tourl(item.url)" class="u-row-between" v-for="(item,index) in specimen_file"
|
|
|
+ :key="index" style="display: flex;margin-top: 28rpx;">
|
|
|
<view class="" style="display: flex;">
|
|
|
<image src="/static/images/pdf.png" class="image3" mode=""></image>
|
|
|
<view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
|
|
@@ -160,7 +161,7 @@
|
|
|
<view class="">资源包</view>
|
|
|
</view>
|
|
|
<view class="courseware">电子书</view>
|
|
|
- <view v-for="(item,index) in courseware_file" :key="index" class=""
|
|
|
+ <view @click="touser(item.url)" v-for="(item,index) in courseware_file" :key="index" class=""
|
|
|
style="display: flex;margin-top: 28rpx;justify-content: space-between;">
|
|
|
<div style="display: flex;">
|
|
|
<image src="/static/images/pdf.png" class="image3" mode=""></image>
|
|
@@ -169,7 +170,7 @@
|
|
|
<image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
|
|
|
</view>
|
|
|
<view class="courseware">课件</view>
|
|
|
- <view v-for="(item,index) in courseware_file" :key="index" class=""
|
|
|
+ <view @click="touser(item.url)" v-for="(item,index) in courseware_file" :key="index" class=""
|
|
|
style="display: flex;margin-top: 28rpx;justify-content: space-between;">
|
|
|
<div style="display: flex;">
|
|
|
<image src="/static/images/pdf.png" class="image3" mode=""></image>
|
|
@@ -179,7 +180,7 @@
|
|
|
</view>
|
|
|
<view class="" v-if="resource_file.length>0">
|
|
|
<view class="courseware">资源</view>
|
|
|
- <view v-for="(item,index) in resource_file" :key="index" class=""
|
|
|
+ <view @click="touser(item.url)" v-for="(item,index) in resource_file" :key="index" class=""
|
|
|
style="display: flex;margin-top: 28rpx;justify-content: space-between;">
|
|
|
<view class="" style="display: flex;">
|
|
|
<image src="/static/images/pdf.png" class="image3" mode=""></image>
|
|
@@ -241,7 +242,7 @@
|
|
|
resource_file: [],
|
|
|
specimen_file: [],
|
|
|
price: '', //资源价格,
|
|
|
-
|
|
|
+ url: ''
|
|
|
};
|
|
|
},
|
|
|
onLoad(options) {
|
|
@@ -249,6 +250,29 @@
|
|
|
this.getBookInfo()
|
|
|
},
|
|
|
methods: {
|
|
|
+ //跳转下载
|
|
|
+ touser(url) {
|
|
|
+ if (this.datainfo.is_certificate == 0 || this.datainfo.is_pay == 0 || this.datainfo.is_free == 0) {
|
|
|
+ console.log(this.url);
|
|
|
+ window.location.href = url
|
|
|
+ } else {
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content: '所选资料为付费资料,请购买后下载',
|
|
|
+ confirmText: '我知道了',
|
|
|
+ success: function(res) {
|
|
|
+ if (res.confirm) {
|
|
|
+ console.log('用户点击确定');
|
|
|
+ } else if (res.cancel) {
|
|
|
+ console.log('用户点击取消');
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ tourl(url){
|
|
|
+ window.location.href = url
|
|
|
+ },
|
|
|
//跳转详情
|
|
|
toinfo(id) {
|
|
|
this.id = id
|
|
@@ -261,7 +285,7 @@
|
|
|
type: 0
|
|
|
}).then(res => {
|
|
|
if (res.code == 1) {
|
|
|
- uni.setStorageSync('bookid',this.id)
|
|
|
+ uni.setStorageSync('bookid', this.id)
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/index/orderinfo?id=' + res.data.id + '&&index=' + 1
|
|
|
})
|
|
@@ -300,6 +324,9 @@
|
|
|
this.courseware_file = res.data.courseware_file
|
|
|
this.resource_file = res.data.resource_file
|
|
|
this.specimen_file = res.data.specimen_file
|
|
|
+ if (res.data.specimen_file.length > 0) {
|
|
|
+ this.url = res.data.specimen_file[0].url
|
|
|
+ }
|
|
|
this.price = res.data.price
|
|
|
var arr = res.data.banner.map(item => {
|
|
|
let obj = {}
|
|
@@ -314,7 +341,7 @@
|
|
|
this.current = index;
|
|
|
},
|
|
|
toupdown(index) {
|
|
|
- uni.setStorageSync('bookid',this.id)
|
|
|
+ uni.setStorageSync('bookid', this.id)
|
|
|
uni.navigateTo({
|
|
|
url: '/pages/index/updown?id=' + this.id + "&&index=" + index
|
|
|
})
|