bookinfo.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. <template>
  2. <view class="page">
  3. <view class="padd">
  4. <view class="wrap">
  5. <u-swiper :list="list1" mode='number' height='750' indicator-pos="bottomRight"></u-swiper>
  6. </view>
  7. <view class="back" style="margin-top: 24rpx;">
  8. <view class="">{{datainfo.title}}</view>
  9. <view class="item-jian">教材级别:{{datainfo.level.title}}</view>
  10. <view class="item-jian">适用层次:{{datainfo.arrangement.title}}</view>
  11. <view class="item-jian">适用专业:{{datainfo.speciality.title}}</view>
  12. <view class="item-jian">ISBN:{{datainfo.isbn}}</view>
  13. <view class="item-jian">作者:{{datainfo.author}}</view>
  14. <view class="item-jian" v-if="datainfo.is_free==1&&datainfo.book_type==0">纸质定价:¥{{datainfo.entity_price}}</view>
  15. <view class="item-jian" v-if="datainfo.book_type==1">资源售价:¥{{datainfo.price}}</view>
  16. </view>
  17. </view>
  18. <view class="height"></view>
  19. <view class="series" v-if="datainfo.is_series==0">
  20. <view class="u-flex u-row-between">
  21. <view class="abount">相关系列</view>
  22. <view class="updown" @click="toupdown(2)">系列下载</view>
  23. </view>
  24. <view class="" style="margin-top: 24rpx;">
  25. <swiper style="height: 400rpx;" class="swiper" circular :indicator-dots="true" :autoplay="true">
  26. <swiper-item v-for="(parent,index) in swiptlist" :key="index">
  27. <view class="u-flex swiper-item">
  28. <view class="" v-for="child in parent" @click="toinfo(child.id)">
  29. <image :src="child.image" style="width: 196rpx;height: 280rpx;" mode=""></image>
  30. <view class="u-line-1" style="width: 196rpx;">{{child.title}}</view>
  31. <view class="">
  32. 定价:<span style="color:rgba(204, 51, 0, 1) ;">¥{{child.price}}</span>
  33. </view>
  34. </view>
  35. </view>
  36. </swiper-item>
  37. </swiper>
  38. </view>
  39. </view>
  40. <view class="height"></view>
  41. <view class="content">
  42. <view class="">
  43. <u-tabs active-color='#06A971' :list="list" :is-scroll="false" :current="current"
  44. @change="change"></u-tabs>
  45. </view>
  46. <view v-if="current==0" class="padd content-box">
  47. <view class="u-flex">
  48. <view class="">
  49. <view class="chu">开本:{{datainfo.format}}</view>
  50. <view class="chu">印制:{{datainfo.print}}</view>
  51. <view class="chu">版次:{{datainfo.edition}}</view>
  52. </view>
  53. <view class="" style="margin-left: 100rpx;">
  54. <view class="chu">印张:{{datainfo.sheet}}</view>
  55. <view class="chu">出版日期:{{pubdate}}</view>
  56. <view class="chu">出版单位:{{datainfo.publisher}}</view>
  57. </view>
  58. </view>
  59. <view class="tu">
  60. <view class="" style="position: relative;">
  61. <view class="brief">前言</view>
  62. <image class="image" src="/static/images/compile.png" mode=""></image>
  63. </view>
  64. <view class="fonta" v-html="datainfo.preface">
  65. <!-- {{}} -->
  66. </view>
  67. </view>
  68. <view class="tu">
  69. <view class="" style="position: relative;">
  70. <view class="brief">内容简介</view>
  71. <image class="image" src="/static/images/compile2.png" mode=""></image>
  72. </view>
  73. <view class="fonta" v-html='datainfo.content_desc'>
  74. <!-- {{}} -->
  75. </view>
  76. </view>
  77. <view class="tu">
  78. <view class="" style="position: relative;">
  79. <view class="brief">作者简介</view>
  80. <image class="image" src="/static/images/compile2.png" mode=""></image>
  81. </view>
  82. <view class="fonta" v-html="datainfo.author_desc">
  83. <!-- {{}} -->
  84. </view>
  85. </view>
  86. </view>
  87. <view v-if="current==1" class="padd data">
  88. <!-- 样章 -->
  89. <view class="" v-if="specimen_file.length>0">
  90. <view class="sample">样章</view>
  91. <view @click='toyang(item.url)' class="" v-for="(item,index) in specimen_file" :key="index"
  92. style="display: flex;margin-top: 28rpx;">
  93. <view class="" style="display: flex;">
  94. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  95. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  96. </view>
  97. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  98. </view>
  99. </view>
  100. <view class="">
  101. <view class="sample u-flex u-row-between">
  102. <view class="">资源包</view>
  103. <view v-if="datainfo.is_free==1&&datainfo.is_pay==1&&datainfo.book_type==0" class="u-flex">
  104. <view class="selling">资源售价</view>
  105. <!-- <view class="selling">纸质售价</view> -->
  106. <view class="money5">¥{{price}}</view>
  107. <view class="button4" @click="orderinfo">付费下载</view>
  108. </view>
  109. </view>
  110. <view class="" v-if="ebook_file.length>0">
  111. <view class="courseware">电子书</view>
  112. <view @click='touser(item.url)' v-for="(item,index) in ebook_file" :key="index" class=""
  113. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  114. <view class="" style="display: flex;">
  115. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  116. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  117. </view>
  118. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  119. </view>
  120. </view>
  121. <view class="" v-if="courseware_file.length>0">
  122. <view class="courseware">课件</view>
  123. <view @click='touser(item.url)' v-for="(item,index) in courseware_file" :key="index" class=""
  124. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  125. <div style="display: flex;">
  126. <image src="/static/images/video.png" class="image3" mode=""></image>
  127. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  128. </div>
  129. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  130. </view>
  131. </view>
  132. <view class="" v-if="resource_file.length>0">
  133. <view class="courseware">资源</view>
  134. <view @click='touser(item.url)' v-for="(item,index) in resource_file" :key="index" class=""
  135. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  136. <view class="" style="display: flex;">
  137. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  138. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  139. </view>
  140. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  141. </view>
  142. </view>
  143. </view>
  144. </view>
  145. </view>
  146. <view class="" style=" height: 190rpx;"></view>
  147. <view class="bottom u-flex">
  148. <view v-if="datainfo.book_type==0" class="left" @click="stylebook">样书申请</view>
  149. <!-- <view v-if="datainfo.book_type==1" class="left" @click="stylebook">样书申请</view> -->
  150. <!-- <view v-if="datainfo.book_type==1&&(datainfo.is_free==0||datainfo.is_certificate==0||datainfo.is_pay==0)"
  151. class="left" @click="stylebook">在线阅读</view> -->
  152. <view class="left" @click="toyang" v-if="datainfo.book_type==1">在线阅读</view>
  153. <view v-if="datainfo.is_free==0&&datainfo.is_pay==1" class="right" @click="show=true">免费下载</view>
  154. <!-- <view v-if="datainfo.is_certificate==0" @click="show=true" class="right">体验下载</view> -->
  155. <view v-if="datainfo.is_pay==0" class="right" @click="show=true">已购买,可下载</view>
  156. <view v-if="datainfo.is_pay==1&&datainfo.book_type==1&&datainfo.is_free!=0&&datainfo.is_certificate"
  157. class="right" @click="orderinfo">立即购买</view>
  158. <view v-if="datainfo.is_pay!=0&&datainfo.is_certificate!=0&&datainfo.is_free!=0&&datainfo.book_type==0"
  159. class="right" @click="toyang()">在线试读</view>
  160. <view v-if="datainfo.is_certificate==0" class="" style="position: relative;flex: 1;">
  161. <view class="timeback" style="position: absolute">
  162. 体验到期时间:{{card.free_end_time}}
  163. </view>
  164. <view @click="show=true" class="right">体验下载</view>
  165. </view>
  166. </view>
  167. <u-popup v-model="show" mode="bottom" border-radius="24">
  168. <view class="" style="padding: 32rpx 28rpx;">
  169. <view class="u-flex u-row-center" style="text-align: center;position: relative;">
  170. <view class="courseware" style="margin-top: 0;">资源下载</view>
  171. <image @click="show= false" src="../../static/images/close.png"
  172. style="width: 44rpx;height: 44rpx;position: absolute;top: 0;right: 0;" mode=""></image>
  173. </view>
  174. <view class="" v-if="specimen_file.length>0">
  175. <view class="sample">样章</view>
  176. <view @click="toyang(item.url)" class="u-row-between" v-for="(item,index) in specimen_file"
  177. :key="index" style="display: flex;margin-top: 28rpx;">
  178. <view class="" style="display: flex;">
  179. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  180. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  181. </view>
  182. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  183. </view>
  184. </view>
  185. <view class="">
  186. <view class="sample u-flex u-row-between">
  187. <view class="">资源包</view>
  188. </view>
  189. <view class="" v-if="ebook_file.length>0">
  190. <view class="courseware">电子书</view>
  191. <view @click='touser(item.url)' v-for="(item,index) in ebook_file" :key="index" class=""
  192. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  193. <div style="display: flex;">
  194. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  195. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  196. </div>
  197. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  198. </view>
  199. </view>
  200. <view class="" v-if="courseware_file.length>0">
  201. <view class="courseware">课件</view>
  202. <view @click='touser(item.url)' v-for="(item,index) in courseware_file" :key="index" class=""
  203. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  204. <div style="display: flex;">
  205. <image src="/static/images/video.png" class="image3" mode=""></image>
  206. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  207. </div>
  208. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  209. </view>
  210. </view>
  211. <view class="" v-if="resource_file.length>0">
  212. <view class="courseware">资源</view>
  213. <view @click='touser(item.url)' v-for="(item,index) in resource_file" :key="index" class=""
  214. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  215. <view class="" style="display: flex;">
  216. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  217. <view class="pdf u-line-1" style="width: 530rpx;">{{item.title}}</view>
  218. </view>
  219. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;">
  220. </image>
  221. </view>
  222. </view>
  223. </view>
  224. </view>
  225. </u-popup>
  226. </view>
  227. </template>
  228. <script>
  229. export default {
  230. data() {
  231. return {
  232. list: [{
  233. name: '内容介绍',
  234. }, {
  235. name: '资料',
  236. }],
  237. current: 0,
  238. show: false,
  239. list1: [],
  240. id: '',
  241. datainfo: {
  242. sheet: '',
  243. publisher: '',
  244. preface: "",
  245. author_desc: '',
  246. title: '',
  247. isbn: '',
  248. author: '',
  249. entity_price: '',
  250. format: '',
  251. print: '',
  252. edition: '',
  253. content_desc: "",
  254. level: {
  255. title: ''
  256. },
  257. arrangement: {
  258. title: ''
  259. },
  260. speciality: {
  261. title: ''
  262. },
  263. series_id: '',
  264. is_series: '', //是否可以系列购买
  265. is_certificate: '', //是否体验中
  266. is_pay: '', //是否已购买
  267. is_free: '', //是否免费
  268. book_type: '',
  269. },
  270. swiptlist: [],
  271. pubdate: '',
  272. courseware_file: [],
  273. resource_file: [],
  274. specimen_file: [],
  275. ebook_file: [],
  276. price: '', //资源价格,
  277. url: '',
  278. card: {
  279. free_end_time: ''
  280. }
  281. };
  282. },
  283. onLoad(options) {
  284. this.id = options.id
  285. this.getBookInfo()
  286. },
  287. methods: {
  288. //跳转下载
  289. touser(url) {
  290. if (this.datainfo.is_free == 0 || this.datainfo.is_pay == 0 || this.datainfo.is_certificate == 0) {
  291. window.location.href = url
  292. } else {
  293. uni.showModal({
  294. title: '提示',
  295. content: '所选资料为付费资料,请购买后下载',
  296. confirmText: '我知道了',
  297. success: function(res) {
  298. if (res.confirm) {
  299. } else if (res.cancel) {
  300. console.log('用户点击取消');
  301. }
  302. }
  303. });
  304. }
  305. },
  306. toyang() {
  307. if (this.url != '') {
  308. window.location.href = this.url
  309. } else {
  310. this.$u.toast('暂无试读资源')
  311. }
  312. },
  313. //跳转详情
  314. toinfo(id) {
  315. this.id = id
  316. this.getBookInfo()
  317. },
  318. //立即购买
  319. orderinfo() {
  320. if (uni.getStorageSync("token")) {
  321. this.$u.post('api/order/createOrder', {
  322. goods_id: this.id,
  323. type: 0
  324. }).then(res => {
  325. if (res.code == 1) {
  326. uni.setStorageSync('bookid', this.id)
  327. uni.navigateTo({
  328. url: '/pages/index/orderinfo?id=' + res.data.id + '&&index=' + 1
  329. })
  330. }
  331. })
  332. } else {
  333. uni.showModal({
  334. title: '提示',
  335. content: '请先登录',
  336. confirmText: '我知道了',
  337. success: function(res) {
  338. if (res.confirm) {
  339. } else if (res.cancel) {
  340. console.log('用户点击取消');
  341. }
  342. }
  343. });
  344. }
  345. },
  346. // 系列
  347. getSeriesBooks() {
  348. this.$u.post('api/books/getSeriesBooks', {
  349. series_id: this.series_id
  350. }).then(res => {
  351. this.swiptlist = res.data.reduce((a, b) => {
  352. let lastIndex = a.length - 1
  353. if (a[lastIndex].length < 3) {
  354. a[lastIndex].push(b)
  355. } else {
  356. a.push([b])
  357. }
  358. return a
  359. }, [
  360. []
  361. ])
  362. })
  363. },
  364. //详情
  365. getBookInfo() {
  366. this.$u.post('api/books/getBookInfo', {
  367. id: this.id
  368. }).then(res => {
  369. console.log('info', res);
  370. this.datainfo = res.data
  371. this.series_id = res.data.series_id
  372. this.pubdate = res.data.pubdate.slice(0, 4) + '年' + res.data.pubdate.slice(5, 7) + "月"
  373. this.getSeriesBooks()
  374. this.courseware_file = res.data.courseware_file
  375. this.resource_file = res.data.resource_file
  376. this.specimen_file = res.data.specimen_file
  377. this.ebook_file = res.data.ebook_file
  378. this.card = res.data.cer
  379. if (res.data.specimen_file.length > 0) {
  380. this.url = res.data.specimen_file[0].url
  381. }
  382. this.price = res.data.price
  383. var arr = res.data.banner.map(item => {
  384. let obj = {}
  385. obj.image = item
  386. return obj
  387. })
  388. this.list1 = arr
  389. })
  390. },
  391. change(index) {
  392. this.current = index;
  393. },
  394. toupdown(index) {
  395. if (uni.getStorageSync('token')) {
  396. uni.setStorageSync('bookid', this.id)
  397. uni.navigateTo({
  398. url: '/pages/index/updown?id=' + this.series_id + "&&index=" + index
  399. })
  400. } else {
  401. this.$u.toast('请登录后下载')
  402. }
  403. },
  404. stylebook() {
  405. if (uni.getStorageSync('token')) {
  406. uni.navigateTo({
  407. url: '/pages/index/stylebook?id=' + this.id
  408. })
  409. } else {
  410. this.$u.toast('请登录后操作')
  411. }
  412. }
  413. }
  414. }
  415. </script>
  416. <style lang="scss">
  417. .timeback {
  418. width: 412rpx;
  419. height: 64rpx;
  420. background: url('../../static/images/rectangle.png') no-repeat;
  421. position: absolute;
  422. top: -64rpx;
  423. right: 0;
  424. background-size: 100%;
  425. font-size: 24rpx;
  426. font-family: PingFangSC, PingFang SC;
  427. font-weight: 400;
  428. color: #06A971;
  429. line-height: 56rpx;
  430. text-align: center;
  431. }
  432. .courseware {
  433. font-size: 28rpx;
  434. font-family: PingFangSC, PingFang SC;
  435. font-weight: 500;
  436. color: #222222;
  437. margin-top: 24rpx;
  438. }
  439. .money5 {
  440. font-size: 32rpx;
  441. font-family: SFPro, SFPro;
  442. font-weight: 500;
  443. color: #CC3300;
  444. }
  445. .button4 {
  446. width: 120rpx;
  447. height: 52rpx;
  448. background: #06A971;
  449. border-radius: 6rpx;
  450. margin-left: 16rpx;
  451. font-size: 24rpx;
  452. font-family: PingFangSC, PingFang SC;
  453. font-weight: 400;
  454. color: #FFFFFF;
  455. text-align: center;
  456. line-height: 52rpx;
  457. }
  458. .selling {
  459. font-size: 24rpx;
  460. font-family: PingFangSC, PingFang SC;
  461. font-weight: 400;
  462. color: #555555;
  463. margin-right: 4rpx;
  464. }
  465. .image3 {
  466. width: 28rpx;
  467. height: 28rpx;
  468. }
  469. .pdf {
  470. font-size: 24rpx;
  471. font-family: PingFangSC, PingFang SC;
  472. font-weight: 400;
  473. color: #222222;
  474. margin-left: 24rpx;
  475. margin-right: 80rpx;
  476. }
  477. .sample {
  478. height: 72rpx;
  479. background: #F5F5F5;
  480. border-radius: 8rpx;
  481. font-size: 28rpx;
  482. font-family: PingFangSC, PingFang SC;
  483. font-weight: 500;
  484. color: #222222;
  485. padding: 14rpx 10rpx 14rpx 20rpx;
  486. margin-top: 28rpx;
  487. }
  488. .data {
  489. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  490. padding-top: 26rpx !important;
  491. }
  492. .fonta {
  493. font-size: 24rpx;
  494. font-family: PingFangSC, PingFang SC;
  495. font-weight: 400;
  496. color: #222222;
  497. margin-top: 24rpx;
  498. }
  499. .tu {
  500. margin-top: 32rpx;
  501. }
  502. .image {
  503. width: 694rpx;
  504. height: 50rpx;
  505. }
  506. .brief {
  507. position: absolute;
  508. left: 28rpx;
  509. font-size: 28rpx;
  510. font-family: PingFangSC, PingFang SC;
  511. font-weight: 500;
  512. color: #06A971;
  513. line-height: 50rpx;
  514. }
  515. .chu {
  516. margin-top: 20rpx;
  517. }
  518. .content-box {
  519. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  520. padding-top: 42rpx !important;
  521. }
  522. ::v-deep .u-tab-bar {
  523. background-color: #06A971 !important;
  524. }
  525. // 系列
  526. .series {
  527. padding: 44rpx 28rpx 32rpx;
  528. }
  529. .about {
  530. font-size: 28rpx;
  531. font-family: PingFangSC, PingFang SC;
  532. font-weight: 500;
  533. color: #222222;
  534. }
  535. .updown {
  536. width: 134rpx;
  537. height: 56rpx;
  538. background: #06A971;
  539. border-radius: 6rpx;
  540. font-size: 24rpx;
  541. font-family: PingFangSC, PingFang SC;
  542. font-weight: 500;
  543. color: #FFFFFF;
  544. line-height: 56rpx;
  545. text-align: center;
  546. }
  547. .wrap {
  548. height: 750rpx;
  549. padding: 0 106rpx;
  550. }
  551. .back {
  552. padding: 0 0 40rpx 0;
  553. background: #fff;
  554. }
  555. .padd {
  556. padding: 0 28rpx;
  557. }
  558. .page {
  559. // background: #F5F5F5;
  560. min-height: 100vh;
  561. }
  562. .height {
  563. width: 750rpx;
  564. height: 20rpx;
  565. background: #F5F5F5;
  566. }
  567. .item-jian {
  568. font-size: 24rpx;
  569. font-family: PingFangSC, PingFang SC;
  570. font-weight: 400;
  571. color: #444444;
  572. margin-top: 18rpx;
  573. }
  574. .bottom {
  575. width: 750rpx;
  576. height: 166rpx;
  577. background: #FFFFFF;
  578. padding: 16rpx 28rpx 0;
  579. position: fixed;
  580. bottom: 0;
  581. left: 0;
  582. .left {
  583. width: 336rpx;
  584. height: 88rpx;
  585. background: #FFA30E;
  586. border-radius: 12rpx;
  587. font-size: 32rpx;
  588. font-family: PingFangSC, PingFang SC;
  589. font-weight: 500;
  590. color: #FFFFFF;
  591. text-align: center;
  592. line-height: 88rpx;
  593. }
  594. .right {
  595. flex: 1;
  596. // min-width: 336rpx;
  597. height: 88rpx;
  598. background: #06A971;
  599. border-radius: 12rpx;
  600. font-size: 32rpx;
  601. font-family: PingFangSC, PingFang SC;
  602. font-weight: 500;
  603. color: #FFFFFF;
  604. text-align: center;
  605. line-height: 88rpx;
  606. margin-left: 12rpx;
  607. }
  608. }
  609. .swiper-item :not(:last-child) {
  610. margin-right: 14rpx;
  611. }
  612. </style>