updown.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <template>
  2. <view class="page">
  3. <u-checkbox-group @change="checkboxGroupChange">
  4. <view class="item u-flex" v-for="(item,index) in list" :key="index">
  5. <u-checkbox :name='item.id' shape="circle" v-model="item.checked"></u-checkbox>
  6. <view class="box">
  7. <image :src="item.image" style="width: 120rpx ;height: 160rpx;" mode=""></image>
  8. </view>
  9. <view class=""
  10. style="justify-content: space-between;padding: 4rpx 0 ;height: 160rpx;display: flex;flex-direction: column;">
  11. <view class="">
  12. <view class="title u-line-1">{{item.title}}</view>
  13. <view class="writer" v-if='item.price>0'>资源类型:付费资源</view>
  14. <view class="writer" v-if='item.price==0'>资源类型:免费资源</view>
  15. </view>
  16. <view class="money">¥{{item.price}}</view>
  17. </view>
  18. </view>
  19. </u-checkbox-group>
  20. <view class="" style="height: 160rpx;"></view>
  21. <view class="bottom u-flex u-row-between">
  22. <view class="u-flex">
  23. <view class="">
  24. <u-checkbox-group>
  25. <u-checkbox @change="checkedAll" shape="circle" v-model="all"></u-checkbox>
  26. </u-checkbox-group>
  27. <text class="All">全选</text>
  28. </view>
  29. <view class="" style="margin-left: 24rpx;">
  30. <view class="">
  31. <text class="all">合计:</text>
  32. <text class="mi">¥</text>
  33. <text class="mi" style="font-size: 36rpx;">{{Number(sum).toFixed(2)}}</text>
  34. </view>
  35. <view class="">
  36. <text class="num">{{aaa.length}}</text>
  37. <text class="fcai">份资料</text>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="btn" @click="orderinfo">
  42. 下载资源
  43. </view>
  44. </view>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. data() {
  50. return {
  51. change: 0,
  52. all: false,
  53. list: [],
  54. series_id: '',
  55. orderid: '',
  56. sum: 0,
  57. aaa: []
  58. };
  59. },
  60. onLoad(options) {
  61. this.series_id = options.id
  62. this.getSeriesBooks()
  63. },
  64. methods: {
  65. getsum() {
  66. this.sum = 0
  67. for (var i = 0; i < this.list.length; i++) {
  68. if (this.list[i].checked) {
  69. this.sum += Number(this.list[i].price)
  70. }
  71. }
  72. },
  73. checkboxChange(e) {
  74. // this.$set(this.list[e.name], 'checked', e.value)
  75. this.getsum()
  76. },
  77. // 系列列表
  78. getSeriesBooks() {
  79. this.$u.post('api/books/getSeriesBooks', {
  80. series_id: this.series_id
  81. }).then(res => {
  82. this.list = res.data
  83. this.list.map(item => {
  84. item.checked = false
  85. })
  86. this.list = JSON.parse(JSON.stringify(this.list))
  87. })
  88. },
  89. //订单确认
  90. orderinfo() {
  91. var b = this.aaa.toString()
  92. console.log(b);
  93. this.$u.post('api/order/createOrder', {
  94. goods_id: b,
  95. type: 0
  96. }).then(res => {
  97. if (res.code == 1) {
  98. this.orderid = res.data.id
  99. setTimeout(() => {
  100. uni.navigateTo({
  101. url: '/pages/index/orderinfo?id=' + this.orderid + "&index=" + 2
  102. })
  103. }, 800)
  104. }
  105. })
  106. },
  107. //全选
  108. checkedAll(e) {
  109. console.log(e);
  110. if (e.value == true) {
  111. this.list.map(val => {
  112. val.checked = true;
  113. })
  114. this.list.map(item => {
  115. this.aaa.push(item.id)
  116. })
  117. // this.aaa = this.list
  118. console.log('aaa', this.aaa);
  119. } else {
  120. this.list.map(val => {
  121. val.checked = false;
  122. })
  123. this.aaa = []
  124. }
  125. this.getsum()
  126. },
  127. checkboxGroupChange(e) {
  128. if (e.length == this.list.length) {
  129. this.all = true
  130. } else {
  131. this.all = false
  132. }
  133. this.getsum()
  134. this.aaa = e
  135. // this.list.map(val => {
  136. // if (val.checked == false) {
  137. // this.all = false
  138. // }
  139. // })
  140. },
  141. }
  142. }
  143. </script>
  144. <style lang="scss">
  145. .num {
  146. font-size: 28rpx;
  147. font-family: JDZhengHT, JDZhengHT;
  148. font-weight: 400;
  149. color: #CF1534;
  150. }
  151. .fcai {
  152. font-size: 24rpx;
  153. font-family: PingFangSC, PingFang SC;
  154. font-weight: 400;
  155. color: #131415;
  156. }
  157. .All {
  158. font-size: 24rpx;
  159. font-family: PingFangSC, PingFang SC;
  160. font-weight: 400;
  161. color: #888888;
  162. margin-left: -16rpx
  163. }
  164. .mi {
  165. font-size: 28rpx;
  166. font-family: JDZhengHT, JDZhengHT;
  167. font-weight: 400;
  168. color: #CF1534;
  169. }
  170. .all {
  171. font-size: 26rpx;
  172. font-family: PingFangSC, PingFang SC;
  173. font-weight: 400;
  174. color: #131415;
  175. }
  176. .btn {
  177. width: 252rpx;
  178. height: 88rpx;
  179. background: #06A971;
  180. border-radius: 12rpx;
  181. font-size: 32rpx;
  182. font-family: PingFangSC, PingFang SC;
  183. font-weight: 500;
  184. color: #FFFFFF;
  185. line-height: 88rpx;
  186. text-align: center;
  187. }
  188. .money {
  189. font-size: 32rpx;
  190. font-family: SFPro, SFPro;
  191. font-weight: 400;
  192. color: #CF1534;
  193. }
  194. .title {
  195. width: 402rpx;
  196. font-size: 28rpx;
  197. font-family: PingFangSC, PingFang SC;
  198. font-weight: 500;
  199. color: #222222;
  200. }
  201. .writer {
  202. font-size: 24rpx;
  203. font-family: PingFangSC, PingFang SC;
  204. font-weight: 400;
  205. color: #444444;
  206. margin-top: 12rpx;
  207. }
  208. .box {
  209. width: 160rpx;
  210. height: 160rpx;
  211. border: 1rpx solid rgba(151, 151, 151, 0.1);
  212. padding: 0 20rpx;
  213. }
  214. .bottom {
  215. width: 100%;
  216. height: 166rpx;
  217. background: #FFFFFF;
  218. position: fixed;
  219. bottom: 0;
  220. left: 0;
  221. padding: 0 28rpx;
  222. }
  223. .item {
  224. width: 100%;
  225. height: 216rpx;
  226. background: #FFFFFF;
  227. border-radius: 16rpx;
  228. margin-top: 20rpx;
  229. padding: 28rpx 24rpx;
  230. }
  231. .page {
  232. background-color: #f4f4f4;
  233. min-height: 100vh;
  234. padding: 0 28rpx;
  235. overflow: hidden;
  236. }
  237. </style>