cart.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. <template>
  2. <!-- 购物车 -->
  3. <view>
  4. <u-navbar :safeAreaInsetTop="true" :placeholder='true'>
  5. <view class="u-nav-slot" slot="left">
  6. <view class="">
  7. <text class="shopcart">{{i18n.Shopping}}</text>
  8. <text class="sum">(12)</text>
  9. </view>
  10. </view>
  11. <view class="u-nav-slot" slot="right">
  12. <view class="u-flex">
  13. <text @click="admin" v-if="success">{{i18n.manage}}</text>
  14. <text @click="admin" v-else>{{i18n.complete}}</text>
  15. <view class="" style="width: 200rpx;"></view>
  16. </view>
  17. </view>
  18. </u-navbar>
  19. <u-checkbox-group v-model="checkboxValue1" placement="column" @change="checkboxChange">
  20. <view class="box" v-for="(item,idx) in 6" :key="idx">
  21. <view class="item">
  22. <view class="shopname u-flex">
  23. <image src="/static/images/logo.png" style="width: 28rpx;height: 28rpx;" mode=""></image>
  24. <text>妞妞团🇨🇳进群抢秒杀❗️❗️</text>
  25. <image src="/static/express/next1.png" style="width: 32rpx;height: 32rpx;" mode=""></image>
  26. </view>
  27. <u-swipe-action>
  28. <view class="u-flex" style="margin-top: 30rpx;width: 100%;" v-for="(chid,index) in 2"
  29. :key="index">
  30. <u-swipe-action-item :options="options2">
  31. <!-- <view class="" style="position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 100;background-color: rgba(255, 255, 255, 0.5);"></view> -->
  32. <u-checkbox shape='circle' :customStyle="{marginBottom: '8px'}" :name="shopitem">
  33. </u-checkbox>
  34. <view class="" style="position: relative;width: 172rpx;height: 172rpx;">
  35. <image src="/static/images/logo.png" style="width: 172rpx;height: 172rpx;" mode="">
  36. </image>
  37. <!-- <view class="sold">
  38. 商品下架
  39. </view> -->
  40. </view>
  41. <view class="good" style="flex: 1;">
  42. <view class="goodname">布兰德超级锁鲜全价主食冻干成</view>
  43. <view class="goods">兔肉味-提高免疫 主食白金包</view>
  44. <view class="" style="margin-top: 21rpx;">
  45. <view class="goodtab">{{i18n.postage}}</view>
  46. </view>
  47. <view class="u-flex u-row-between" style="width: 100%;margin-top: 20rpx;">
  48. <view class="">
  49. <text class="money">¥</text>
  50. <text class="money" style="font-size: 30rpx;">179</text>
  51. <text class="money">.00</text>
  52. <text class="weight">500g</text>
  53. </view>
  54. <view class="">
  55. <!-- <view class="delect" v-if='dele'>{{i18n.delete}}</view> -->
  56. <view class="" v-if="num&&success">
  57. <!-- <u-number-box v-model="value" @change="valChange"></u-number-box> -->
  58. <u-number-box v-model="value">
  59. <view slot="minus" class="minus">
  60. <u-icon name="minus" color="#B5B5B5" size="12"></u-icon>
  61. </view>
  62. <text slot="input"
  63. style="width: 50px;text-align: center;font-size: 20rpx;"
  64. class="input">{{value}}</text>
  65. <view slot="plus" class="plus">
  66. <u-icon name="plus" color="#B5B5B5" size="12"></u-icon>
  67. </view>
  68. </u-number-box>
  69. </view>
  70. <view class="num" v-if="num==false&&success" @click="num = true">
  71. x1
  72. </view>
  73. </view>
  74. <view v-if="success==false" class="icon">
  75. <u-icon name="trash" color="#fff" size="20"></u-icon>
  76. </view>
  77. </view>
  78. </view>
  79. </u-swipe-action-item>
  80. </view>
  81. </u-swipe-action>
  82. </view>
  83. </view>
  84. </u-checkbox-group>
  85. <view class="" style="height: 260rpx;"></view>
  86. <kj-tabbar ref="tabbar1" :value1=3></kj-tabbar>
  87. </view>
  88. </template>
  89. <script>
  90. export default {
  91. data() {
  92. return {
  93. dele: true,
  94. success: true,
  95. shopitem: -1,
  96. checkboxValue1: [], //商品数组
  97. value: 0,
  98. all: [], //全选数组
  99. selectall: -1,
  100. num: false,
  101. options2: [{
  102. text: '收藏',
  103. style: {
  104. backgroundColor: '#3c9cff'
  105. }
  106. }, {
  107. text: '删除',
  108. style: {
  109. backgroundColor: '#f56c6c'
  110. }
  111. }],
  112. tabarheight: ''
  113. };
  114. },
  115. computed: {
  116. i18n() {
  117. return this.$t('index')
  118. }
  119. },
  120. onLoad() {
  121. const systemInfo = wx.getSystemInfoSync()
  122. console.log(systemInfo);
  123. const tab = systemInfo.screenHeight - systemInfo.safeArea.bottom + systemInfo.statusBarHeight;
  124. this.tabarheight = tab
  125. console.log(this.tabarheight);
  126. },
  127. methods: {
  128. admin() {
  129. this.success = !this.success
  130. console.log(this.success);
  131. },
  132. valChange(e) {
  133. console.log('当前值为: ' + e.value)
  134. },
  135. //全选
  136. checkAll(e) {
  137. console.log('all', e);
  138. },
  139. aaa() {
  140. console.log(this.$refs.tabbar1.getLabelHeight())
  141. },
  142. checkboxChange(n) {
  143. console.log('change', n);
  144. }
  145. },
  146. mounted() {}
  147. }
  148. </script>
  149. <style lang="scss" scoped>
  150. .sold {
  151. width: 108rpx;
  152. height: 36rpx;
  153. background: rgba(0, 0, 0, 0.4);
  154. border-radius: 18rpx;
  155. // padding: 0 14rpx;
  156. text-align: center;
  157. box-sizing: border-box;
  158. line-height: 36rpx;
  159. font-family: PingFangSC, PingFang SC;
  160. font-weight: 400;
  161. font-size: 20rpx;
  162. color: #FFFFFF;
  163. font-style: normal;
  164. position: absolute;
  165. top: 50%;
  166. left: 50%;
  167. margin-top: -18rpx;
  168. margin-left: -54rpx;
  169. }
  170. .delect {
  171. // width: 68rpx;
  172. height: 44rpx;
  173. line-height: 44rpx;
  174. border-radius: 22rpx;
  175. border: 1rpx solid #FF1515;
  176. padding: 0 14rpx;
  177. box-sizing: border-box;
  178. font-family: PingFangSC, PingFang SC;
  179. font-weight: 400;
  180. font-size: 20rpx;
  181. color: #FF1515;
  182. text-align: center;
  183. font-style: normal;
  184. }
  185. .allweight {
  186. font-family: PingFangSC, PingFang SC;
  187. font-weight: 400;
  188. font-size: 22rpx;
  189. color: #333333;
  190. line-height: 32rpx;
  191. text-align: left;
  192. font-style: normal;
  193. }
  194. .sum {
  195. font-family: PingFangSC, PingFang SC;
  196. font-weight: 400;
  197. font-size: 22rpx;
  198. color: #333333;
  199. line-height: 32rpx;
  200. text-align: left;
  201. font-style: normal;
  202. }
  203. .summon {
  204. font-family: JDZhengHT, JDZhengHT;
  205. font-weight: 400;
  206. font-size: 24rpx;
  207. color: #FF1515;
  208. line-height: 30rpx;
  209. text-align: left;
  210. font-style: normal;
  211. }
  212. .settle {
  213. width: 176rpx;
  214. height: 68rpx;
  215. background: #F83224;
  216. border-radius: 38rpx;
  217. font-family: PingFangSC, PingFang SC;
  218. font-weight: 500;
  219. font-size: 28rpx;
  220. color: #FFFFFF;
  221. line-height: 68rpx;
  222. text-align: center;
  223. font-style: normal;
  224. margin-left: 20rpx;
  225. }
  226. .icon {
  227. width: 40rpx;
  228. height: 40rpx;
  229. background: #F83224;
  230. border-radius: 12rpx;
  231. display: flex;
  232. justify-content: center;
  233. align-items: center;
  234. }
  235. .dle {
  236. width: 136rpx;
  237. height: 60rpx;
  238. border-radius: 38rpx;
  239. border: 1rpx solid #979797;
  240. font-family: PingFangSC, PingFang SC;
  241. font-weight: 400;
  242. font-size: 26rpx;
  243. color: #333333;
  244. line-height: 60rpx;
  245. text-align: center;
  246. font-style: normal;
  247. }
  248. ::v-deep .u-swipe-action-item__content {
  249. flex-direction: row !important;
  250. }
  251. ::v-deep .u-swipe-action-item {
  252. width: 100% !important;
  253. }
  254. ::v-deep .u-swipe-action-item__right {
  255. top: 2rpx !important;
  256. right: 2rpx !important;
  257. bottom: 2rpx !important;
  258. }
  259. .bottom {
  260. width: 750rpx;
  261. height: 100rpx;
  262. background: #FFFFFF;
  263. padding: 0 24rpx;
  264. box-sizing: border-box;
  265. }
  266. .num {
  267. width: 40rpx;
  268. height: 40rpx;
  269. border-radius: 20rpx;
  270. border: 1rpx solid rgba(151, 151, 151, 0.4);
  271. font-family: HarmonyOS_Sans;
  272. font-size: 20rpx;
  273. color: #222222;
  274. line-height: 40rpx;
  275. text-align: center;
  276. font-style: normal;
  277. }
  278. .box {
  279. padding: 0rpx 24rpx 20rpx;
  280. margin-top: 20rpx;
  281. box-sizing: border-box;
  282. .item {
  283. padding: 36rpx 20rpx;
  284. box-sizing: border-box;
  285. width: 702rpx;
  286. // height: 556rpx;
  287. background: #FFFFFF;
  288. border-radius: 16rpx;
  289. .money {
  290. font-family: HarmonyOS_Sans_Medium;
  291. font-size: 20rpx;
  292. color: #FF1515;
  293. line-height: 26rpx;
  294. text-align: left;
  295. font-style: normal;
  296. }
  297. .weight {
  298. font-family: SFPro, SFPro;
  299. font-weight: 400;
  300. font-size: 20rpx;
  301. color: #333333;
  302. line-height: 24rpx;
  303. text-align: left;
  304. font-style: normal;
  305. margin-left: 12rpx;
  306. }
  307. .goodtab {
  308. // width: 96rpx;
  309. height: 32rpx;
  310. border-radius: 4rpx;
  311. border: 1rpx solid #FF1515;
  312. padding: 2rpx 8rpx;
  313. box-sizing: border-box;
  314. text-align: center;
  315. line-height: 32rpx;
  316. display: inline;
  317. font-family: PingFangSC, PingFang SC;
  318. font-weight: 400;
  319. font-size: 20rpx;
  320. color: #FF1515;
  321. line-height: 28rpx;
  322. text-align: left;
  323. font-style: normal;
  324. }
  325. .goods {
  326. // width: 284rpx;
  327. height: 40rpx;
  328. background: #F4F4F4;
  329. border-radius: 8rpx;
  330. display: inline;
  331. text-align: center;
  332. line-height: 40rpx;
  333. margin-top: 20rpx;
  334. padding: 6rpx 12rpx;
  335. box-sizing: border-box;
  336. font-family: PingFangSC, PingFang SC;
  337. font-weight: 400;
  338. font-size: 20rpx;
  339. color: #555555;
  340. line-height: 28rpx;
  341. text-align: left;
  342. font-style: normal;
  343. }
  344. .goodname {
  345. font-family: PingFangSC, PingFang SC;
  346. font-weight: 500;
  347. font-size: 28rpx;
  348. color: #333333;
  349. line-height: 40rpx;
  350. text-align: left;
  351. font-style: normal;
  352. }
  353. .shopname {
  354. font-family: PingFangSC, PingFang SC;
  355. font-weight: 500;
  356. font-size: 26rpx;
  357. color: #333333;
  358. line-height: 36rpx;
  359. text-align: left;
  360. font-style: normal;
  361. }
  362. }
  363. }
  364. .shopcart {
  365. font-family: PingFangSC, PingFang SC;
  366. font-weight: 500;
  367. font-size: 36rpx;
  368. color: #222222;
  369. line-height: 50rpx;
  370. text-align: right;
  371. font-style: normal;
  372. }
  373. .sum {
  374. font-family: HarmonyOS_Sans;
  375. font-size: 22rpx;
  376. color: #333333;
  377. line-height: 32rpx;
  378. text-align: left;
  379. font-style: normal;
  380. }
  381. </style>