bookinfo.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  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">纸质定价:¥{{datainfo.entity_price}}</view>
  15. </view>
  16. </view>
  17. <view class="height"></view>
  18. <view class="series" v-if="datainfo.is_series==0">
  19. <view class="u-flex u-row-between">
  20. <view class="abount">相关系列</view>
  21. <view class="updown" @click="toupdown(2)">系列下载</view>
  22. </view>
  23. <view class="" style="margin-top: 24rpx;">
  24. <swiper style="height: 400rpx;" class="swiper" circular :indicator-dots="true" :autoplay="true">
  25. <swiper-item v-for="(item,index) in swiptlist" :key="index">
  26. <view class="u-flex u-row-between">
  27. <view class="">
  28. <image src="/static/logo.png" style="width: 196rpx;height: 280rpx;" mode=""></image>
  29. <view class="u-line-1">腰部功能强化训…</view>
  30. <view class="">
  31. 定价:<span style="color:rgba(204, 51, 0, 1) ;">¥28.5</span>
  32. </view>
  33. </view>
  34. </view>
  35. </swiper-item>
  36. </swiper>
  37. </view>
  38. </view>
  39. <view class="height"></view>
  40. <view class="content">
  41. <view class="">
  42. <u-tabs active-color='#06A971' :list="list" :is-scroll="false" :current="current"
  43. @change="change"></u-tabs>
  44. </view>
  45. <view v-if="current==0" class="padd content-box">
  46. <view class="u-flex">
  47. <view class="">
  48. <view class="chu">开本:{{datainfo.format}}</view>
  49. <view class="chu">印制:{{datainfo.print}}</view>
  50. <view class="chu">版次:{{datainfo.edition}}</view>
  51. </view>
  52. <view class="" style="margin-left: 100rpx;">
  53. <view class="chu">印张:{{datainfo.sheet}}</view>
  54. <view class="chu">出版日期:{{pubdate}}</view>
  55. <view class="chu">出版单位:{{datainfo.publisher}}</view>
  56. </view>
  57. </view>
  58. <view class="tu">
  59. <view class="" style="position: relative;">
  60. <view class="brief">前言</view>
  61. <image class="image" src="/static/images/compile.png" mode=""></image>
  62. </view>
  63. <view class="fonta">
  64. {{datainfo.preface}}
  65. </view>
  66. </view>
  67. <view class="tu">
  68. <view class="" style="position: relative;">
  69. <view class="brief">内容简介</view>
  70. <image class="image" src="/static/images/compile.png" mode=""></image>
  71. </view>
  72. <view class="fonta">
  73. {{datainfo.content_desc}}
  74. </view>
  75. </view>
  76. <view class="tu">
  77. <view class="" style="position: relative;">
  78. <view class="brief">作者简介</view>
  79. <image class="image" src="/static/images/compile.png" mode=""></image>
  80. </view>
  81. <view class="fonta">
  82. {{datainfo.author_desc}}
  83. </view>
  84. </view>
  85. </view>
  86. <view v-if="current==1" class="padd data">
  87. <!-- 样章 -->
  88. <view class="" v-if="specimen_file.length>0">
  89. <view class="sample">样章</view>
  90. <view class="" v-for="(item,index) in specimen_file" :key="index"
  91. style="display: flex;margin-top: 28rpx;">
  92. <view class="" style="display: flex;">
  93. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  94. <view class="pdf">{{item.title}}</view>
  95. </view>
  96. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  97. </view>
  98. </view>
  99. <view class="">
  100. <view class="sample u-flex u-row-between">
  101. <view class="">资源包</view>
  102. <view class="u-flex">
  103. <view class="selling">资源售价</view>
  104. <view class="money5">¥{{price}}</view>
  105. <view class="button4" @click="orderinfo">付费下载</view>
  106. </view>
  107. </view>
  108. <view class="courseware">课件</view>
  109. <view v-for="(item,index) in courseware_file" :key="index" class=""
  110. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  111. <div style="display: flex;">
  112. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  113. <view class="pdf">{{item.title}}</view>
  114. </div>
  115. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  116. </view>
  117. <view class="" v-if="resource_file.length>0">
  118. <view class="courseware">资源</view>
  119. <view v-for="(item,index) in resource_file" :key="index" class=""
  120. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  121. <view class="" style="display: flex;">
  122. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  123. <view class="pdf">{{item.title}}</view>
  124. </view>
  125. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  126. </view>
  127. </view>
  128. </view>
  129. </view>
  130. </view>
  131. <view class="" style=" height: 166rpx;"></view>
  132. <view class="bottom u-flex">
  133. <view class="left" @click="stylebook">样书申请</view>
  134. <!-- <view v-if="" class="right">免费下载</view> -->
  135. <view v-if="datainfo.is_certificate==0" class="right">体验下载</view>
  136. <view v-if="datainfo.is_pay==0" class="right" @click="show=true">已购买,可下载</view>
  137. <view v-else-if class="right">在线试读</view>
  138. </view>
  139. <u-popup v-model="show" mode="bottom" border-radius="24">
  140. <view class="" style="padding: 32rpx 28rpx;">
  141. <view class="u-flex u-row-center" style="text-align: center;position: relative;">
  142. <view class="courseware" style="margin-top: 0;">资源下载</view>
  143. <image src="../../static/images/close.png"
  144. style="width: 44rpx;height: 44rpx;position: absolute;top: 0;right: 0;" mode=""></image>
  145. </view>
  146. <view class="" v-if="specimen_file.length>0">
  147. <view class="sample">样章</view>
  148. <view class="" v-for="(item,index) in specimen_file" :key="index"
  149. style="display: flex;margin-top: 28rpx;">
  150. <view class="" style="display: flex;">
  151. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  152. <view class="pdf">{{item.title}}</view>
  153. </view>
  154. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  155. </view>
  156. </view>
  157. <view class="">
  158. <view class="sample u-flex u-row-between">
  159. <view class="">资源包</view>
  160. <!-- <view class="u-flex">
  161. <view class="selling">资源售价</view>
  162. <view class="money5">¥48.5</view>
  163. <view class="button4">付费下载</view>
  164. </view> -->
  165. </view>
  166. <view class="courseware">电子书</view>
  167. <view v-for="(item,index) in courseware_file" :key="index" class=""
  168. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  169. <div style="display: flex;">
  170. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  171. <view class="pdf">{{item.title}}</view>
  172. </div>
  173. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  174. </view>
  175. <view class="courseware">课件</view>
  176. <view v-for="(item,index) in courseware_file" :key="index" class=""
  177. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  178. <div style="display: flex;">
  179. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  180. <view class="pdf">{{item.title}}</view>
  181. </div>
  182. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  183. </view>
  184. <view class="" v-if="resource_file.length>0">
  185. <view class="courseware">资源</view>
  186. <view v-for="(item,index) in resource_file" :key="index" class=""
  187. style="display: flex;margin-top: 28rpx;justify-content: space-between;">
  188. <view class="" style="display: flex;">
  189. <image src="/static/images/pdf.png" class="image3" mode=""></image>
  190. <view class="pdf">{{item.title}}</view>
  191. </view>
  192. <image src="/static/images/updown.png" mode="" style="width: 32rpx;height: 32rpx;"></image>
  193. </view>
  194. </view>
  195. </view>
  196. </view>
  197. </u-popup>
  198. </view>
  199. </template>
  200. <script>
  201. export default {
  202. data() {
  203. return {
  204. list: [{
  205. name: '内容介绍',
  206. }, {
  207. name: '资料',
  208. }],
  209. current: 0,
  210. show: false,
  211. list1: [{
  212. image: 'https://cdn.uviewui.com/uview/swiper/2.jpg',
  213. title: '身无彩凤双飞翼,心有灵犀一点通'
  214. },
  215. {
  216. image: 'https://cdn.uviewui.com/uview/swiper/3.jpg',
  217. title: '谁念西风独自凉,萧萧黄叶闭疏窗,沉思往事立残阳'
  218. }
  219. ],
  220. id: '',
  221. datainfo: {
  222. sheet: '',
  223. publisher: '',
  224. preface: "",
  225. author_desc: '',
  226. title: '',
  227. isbn: '',
  228. author: '',
  229. entity_price: '',
  230. format: '',
  231. print: '',
  232. edition: '',
  233. content_desc: "",
  234. level: {
  235. title: ''
  236. },
  237. arrangement: {
  238. title: ''
  239. },
  240. speciality: {
  241. title: ''
  242. },
  243. series_id: '',
  244. is_series: '', //是否可以系列购买
  245. is_certificate: '', //是否体验中
  246. is_pay: '', //是否已购买
  247. },
  248. swiptlist: [],
  249. pubdate: '',
  250. courseware_file: [],
  251. resource_file: [],
  252. specimen_file: [],
  253. price: '', //资源价格,
  254. };
  255. },
  256. onLoad(options) {
  257. this.id = options.id
  258. this.getBookInfo()
  259. },
  260. methods: {
  261. //立即购买
  262. orderinfo() {
  263. uni.navigateTo({
  264. url: '/pages/index/orderinfo?id=' + this.id
  265. })
  266. },
  267. // 系列
  268. getSeriesBooks() {
  269. this.$u.post('api/books/getSeriesBooks', {
  270. series_id: this.series_id
  271. }).then(res => {
  272. console.log('books', res);
  273. var list = []
  274. for (var i = 0; i < res.data.length; i++) {
  275. list.push(res.data[i])
  276. if (list.length == 3) {
  277. this.swiptlist.push(list)
  278. this.list = []
  279. }
  280. }
  281. })
  282. },
  283. //详情
  284. getBookInfo() {
  285. this.$u.post('api/books/getBookInfo', {
  286. id: this.id
  287. }).then(res => {
  288. console.log('info', res);
  289. this.datainfo = res.data
  290. this.series_id = res.data.series_id
  291. this.pubdate = res.data.pubdate.slice(0, 4) + '年' + res.data.pubdate.slice(5, 7) + "月"
  292. this.getSeriesBooks()
  293. this.courseware_file = res.data.courseware_file
  294. this.resource_file = res.data.resource_file
  295. this.specimen_file = res.data.specimen_file
  296. this.price = res.data.price
  297. var arr = res.data.banner.map(item => {
  298. let obj = {}
  299. obj.image = item
  300. return obj
  301. })
  302. console.log(arr);
  303. this.list1 = arr
  304. })
  305. },
  306. change(index) {
  307. this.current = index;
  308. },
  309. toupdown(index) {
  310. uni.navigateTo({
  311. url: '/pages/index/updown?id=' + this.id + "&&index=" + index
  312. })
  313. },
  314. stylebook() {
  315. uni.navigateTo({
  316. url: '/pages/index/stylebook?id=' + this.id
  317. })
  318. }
  319. }
  320. }
  321. </script>
  322. <style lang="scss">
  323. .courseware {
  324. font-size: 28rpx;
  325. font-family: PingFangSC, PingFang SC;
  326. font-weight: 500;
  327. color: #222222;
  328. margin-top: 24rpx;
  329. }
  330. .money5 {
  331. font-size: 32rpx;
  332. font-family: SFPro, SFPro;
  333. font-weight: 500;
  334. color: #CC3300;
  335. }
  336. .button4 {
  337. width: 120rpx;
  338. height: 52rpx;
  339. background: #06A971;
  340. border-radius: 6rpx;
  341. margin-left: 16rpx;
  342. font-size: 24rpx;
  343. font-family: PingFangSC, PingFang SC;
  344. font-weight: 400;
  345. color: #FFFFFF;
  346. text-align: center;
  347. line-height: 52rpx;
  348. }
  349. .selling {
  350. font-size: 24rpx;
  351. font-family: PingFangSC, PingFang SC;
  352. font-weight: 400;
  353. color: #555555;
  354. margin-right: 4rpx;
  355. }
  356. .image3 {
  357. width: 28rpx;
  358. height: 28rpx;
  359. }
  360. .pdf {
  361. font-size: 24rpx;
  362. font-family: PingFangSC, PingFang SC;
  363. font-weight: 400;
  364. color: #222222;
  365. margin-left: 24rpx;
  366. margin-right: 80rpx;
  367. }
  368. .sample {
  369. height: 72rpx;
  370. background: #F5F5F5;
  371. border-radius: 8rpx;
  372. font-size: 28rpx;
  373. font-family: PingFangSC, PingFang SC;
  374. font-weight: 500;
  375. color: #222222;
  376. padding: 14rpx 10rpx 14rpx 20rpx;
  377. margin-top: 28rpx;
  378. }
  379. .data {
  380. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  381. padding-top: 26rpx !important;
  382. }
  383. .fonta {
  384. font-size: 24rpx;
  385. font-family: PingFangSC, PingFang SC;
  386. font-weight: 400;
  387. color: #222222;
  388. margin-top: 24rpx;
  389. }
  390. .tu {
  391. margin-top: 32rpx;
  392. }
  393. .image {
  394. width: 694rpx;
  395. height: 50rpx;
  396. }
  397. .brief {
  398. position: absolute;
  399. left: 28rpx;
  400. font-size: 28rpx;
  401. font-family: PingFangSC, PingFang SC;
  402. font-weight: 500;
  403. color: #06A971;
  404. line-height: 50rpx;
  405. }
  406. .chu {
  407. margin-top: 20rpx;
  408. }
  409. .content-box {
  410. border-top: 2rpx solid rgba(151, 151, 151, 0.1);
  411. padding-top: 42rpx !important;
  412. }
  413. ::v-deep .u-tab-bar {
  414. background-color: #06A971 !important;
  415. }
  416. // 系列
  417. .series {
  418. padding: 44rpx 28rpx 32rpx;
  419. }
  420. .about {
  421. font-size: 28rpx;
  422. font-family: PingFangSC, PingFang SC;
  423. font-weight: 500;
  424. color: #222222;
  425. }
  426. .updown {
  427. width: 134rpx;
  428. height: 56rpx;
  429. background: #06A971;
  430. border-radius: 6rpx;
  431. font-size: 24rpx;
  432. font-family: PingFangSC, PingFang SC;
  433. font-weight: 500;
  434. color: #FFFFFF;
  435. line-height: 56rpx;
  436. text-align: center;
  437. }
  438. .wrap {
  439. height: 750rpx;
  440. padding: 0 106rpx;
  441. }
  442. .back {
  443. padding: 0 0 40rpx 0;
  444. background: #fff;
  445. }
  446. .padd {
  447. padding: 0 28rpx;
  448. }
  449. .page {
  450. // background: #F5F5F5;
  451. min-height: 100vh;
  452. }
  453. .height {
  454. width: 750rpx;
  455. height: 20rpx;
  456. background: #F5F5F5;
  457. }
  458. .item-jian {
  459. font-size: 24rpx;
  460. font-family: PingFangSC, PingFang SC;
  461. font-weight: 400;
  462. color: #444444;
  463. margin-top: 18rpx;
  464. }
  465. .bottom {
  466. width: 750rpx;
  467. height: 166rpx;
  468. background: #FFFFFF;
  469. padding: 16rpx 28rpx 0;
  470. position: fixed;
  471. bottom: 0;
  472. left: 0;
  473. .left {
  474. width: 336rpx;
  475. height: 88rpx;
  476. background: #FFA30E;
  477. border-radius: 12rpx;
  478. font-size: 32rpx;
  479. font-family: PingFangSC, PingFang SC;
  480. font-weight: 500;
  481. color: #FFFFFF;
  482. text-align: center;
  483. line-height: 88rpx;
  484. }
  485. .right {
  486. width: 336rpx;
  487. height: 88rpx;
  488. background: #06A971;
  489. border-radius: 12rpx;
  490. font-size: 32rpx;
  491. font-family: PingFangSC, PingFang SC;
  492. font-weight: 500;
  493. color: #FFFFFF;
  494. text-align: center;
  495. line-height: 88rpx;
  496. margin-left: 12rpx;
  497. }
  498. }
  499. </style>