updown.vue 4.7 KB

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