updown.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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 shape="circle" v-model="item.checked"></u-checkbox>
  6. <view class="box">
  7. <image src="/static/logo.png" 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">中医基础理论(全国中医药行业…jklsrehgio111)</view>
  13. <view class="writer">资源类型:付费资源</view>
  14. </view>
  15. <view class="money">¥324.5</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;">325.00</text>
  33. </view>
  34. <view class="">
  35. <text class="num">12</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. name: 'apple',
  54. checked: false,
  55. disabled: false
  56. },
  57. {
  58. name: 'banner',
  59. checked: false,
  60. disabled: false
  61. },
  62. {
  63. name: 'orange',
  64. checked: false,
  65. disabled: false
  66. }
  67. ]
  68. };
  69. },
  70. methods: {
  71. orderinfo(){
  72. uni.navigateTo({
  73. url:'/pages/index/orderinfo'
  74. })
  75. },
  76. //全选
  77. checkedAll() {
  78. if (this.all == false) {
  79. this.list.map(val => {
  80. val.checked = false;
  81. this.all = false
  82. })
  83. } else {
  84. this.list.map(val => {
  85. val.checked = true;
  86. this.all = true
  87. })
  88. }
  89. },
  90. checkboxGroupChange(e) {
  91. console.log(e);
  92. if (e.length == this.list.length) {
  93. this.all = true
  94. }
  95. this.list.map(val => {
  96. if (val.checked == false) {
  97. this.all = false
  98. }
  99. })
  100. },
  101. }
  102. }
  103. </script>
  104. <style lang="scss">
  105. .num {
  106. font-size: 28rpx;
  107. font-family: JDZhengHT, JDZhengHT;
  108. font-weight: 400;
  109. color: #CF1534;
  110. }
  111. .fcai {
  112. font-size: 24rpx;
  113. font-family: PingFangSC, PingFang SC;
  114. font-weight: 400;
  115. color: #131415;
  116. }
  117. .All {
  118. font-size: 24rpx;
  119. font-family: PingFangSC, PingFang SC;
  120. font-weight: 400;
  121. color: #888888;
  122. margin-left: -16rpx
  123. }
  124. .mi {
  125. font-size: 28rpx;
  126. font-family: JDZhengHT, JDZhengHT;
  127. font-weight: 400;
  128. color: #CF1534;
  129. }
  130. .all {
  131. font-size: 26rpx;
  132. font-family: PingFangSC, PingFang SC;
  133. font-weight: 400;
  134. color: #131415;
  135. }
  136. .btn {
  137. width: 252rpx;
  138. height: 88rpx;
  139. background: #06A971;
  140. border-radius: 12rpx;
  141. font-size: 32rpx;
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 500;
  144. color: #FFFFFF;
  145. line-height: 88rpx;
  146. text-align: center;
  147. }
  148. .money {
  149. font-size: 32rpx;
  150. font-family: SFPro, SFPro;
  151. font-weight: 400;
  152. color: #CF1534;
  153. }
  154. .title {
  155. width: 402rpx;
  156. font-size: 28rpx;
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 500;
  159. color: #222222;
  160. }
  161. .writer {
  162. font-size: 24rpx;
  163. font-family: PingFangSC, PingFang SC;
  164. font-weight: 400;
  165. color: #444444;
  166. margin-top: 12rpx;
  167. }
  168. .box {
  169. width: 160rpx;
  170. height: 160rpx;
  171. border: 1rpx solid rgba(151, 151, 151, 0.1);
  172. padding: 0 20rpx;
  173. }
  174. .bottom {
  175. width: 100%;
  176. height: 166rpx;
  177. background: #FFFFFF;
  178. position: fixed;
  179. bottom: 0;
  180. left: 0;
  181. padding: 0 28rpx;
  182. }
  183. .item {
  184. width: 100%;
  185. height: 216rpx;
  186. background: #FFFFFF;
  187. border-radius: 16rpx;
  188. margin-top: 20rpx;
  189. padding: 28rpx 24rpx;
  190. }
  191. .page {
  192. background-color: #f4f4f4;
  193. min-height: 100vh;
  194. padding: 0 28rpx;
  195. overflow: hidden;
  196. }
  197. </style>