cart.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912
  1. <template>
  2. <!-- 购物车 -->
  3. <view class="page" @click="num = ''">
  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">({{ goodsNum }})</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
  20. v-model="checkboxValue1"
  21. placement="column"
  22. @change="checkboxChange"
  23. >
  24. <view class="box" v-for="(item, idx) in goodsList" :key="idx">
  25. <view class="item">
  26. <view class="shopname u-flex">
  27. <image
  28. src="/static/mine/354.png"
  29. class="circle"
  30. mode="scaleToFill"
  31. @click="shopSelectAll(item.goods)"
  32. v-if="shop(item.goods)"
  33. />
  34. <image
  35. src="/static/mine/353.png"
  36. class="circle"
  37. mode="scaleToFill"
  38. @click="shopSelectAll(item.goods)"
  39. v-else
  40. />
  41. <image
  42. :src="item.image"
  43. style="width: 28rpx; height: 28rpx"
  44. mode=""
  45. ></image>
  46. <text>{{ item.merchant_name }}</text>
  47. <image
  48. src="/static/express/next1.png"
  49. style="width: 32rpx; height: 32rpx"
  50. mode=""
  51. ></image>
  52. </view>
  53. <u-swipe-action>
  54. <view
  55. class="u-flex"
  56. style="margin-top: 30rpx; width: 100%"
  57. v-for="(chid, index) in item.goods"
  58. :key="index"
  59. >
  60. <u-swipe-action-item
  61. ref="show"
  62. :options="options2"
  63. @click="followOrdelete"
  64. :autoClose="true"
  65. :name="chid.cart.id"
  66. :disabled="chid.status == 'down'"
  67. >
  68. <!-- <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> -->
  69. <u-checkbox
  70. shape="circle"
  71. :customStyle="{ marginBottom: '8px' }"
  72. :name="chid.cart.id"
  73. activeColor="#F83224"
  74. :disabled="chid.status == 'down'"
  75. >
  76. </u-checkbox>
  77. <view
  78. class=""
  79. style="
  80. position: relative;
  81. width: 172rpx;
  82. height: 172rpx;
  83. border-radius: 16rpx;
  84. "
  85. >
  86. <image
  87. :src="chid.sku_item[0].image"
  88. style="width: 172rpx; height: 172rpx; border-radius: 20rpx"
  89. mode=""
  90. >
  91. </image>
  92. <view class="down" v-if="chid.status == 'down'">
  93. <view class="sold"> {{i18n.offtheshelves}} </view>
  94. </view>
  95. </view>
  96. <view
  97. class="good"
  98. style="flex: 1; margin-left: 10rpx; width: 65%"
  99. >
  100. <view class="goodname">{{ chid.name_cn }}</view>
  101. <view class="goods" v-if="chid.sku_item.length > 0">{{
  102. chid.sku_item[0].item
  103. }}</view>
  104. <view class="" style="margin-top: 21rpx">
  105. <view
  106. class="goodtab"
  107. v-for="itemLabel in chid.label_arr"
  108. :key="itemLabel.id"
  109. >
  110. {{ itemLabel.name_cn }}
  111. </view>
  112. </view>
  113. <view
  114. class="u-flex u-row-between"
  115. style="width: 100%; margin-top: 20rpx"
  116. >
  117. <view class="" v-if="chid.sku_item.length > 0">
  118. <text class="money">¥</text>
  119. <text class="money" style="font-size: 30rpx">{{
  120. chid.sku_item[0].discount_price.split(".")[0]
  121. }}</text>
  122. <text class="money"
  123. >.{{
  124. chid.sku_item[0].discount_price.split(".")[1]
  125. }}</text
  126. >
  127. <text class="weight"
  128. >{{ chid.sku_item[0].weight }}kg</text
  129. >
  130. </view>
  131. <view class="aaaaaa">
  132. <!-- <view class="delect" v-if='dele'>{{i18n.delete}}</view> -->
  133. <view class="" v-if="num == chid.cart.id && success">
  134. <!-- <u-number-box v-model="value" @change="valChange"></u-number-box> -->
  135. <u-number-box
  136. v-model="chid.cart.goods_num"
  137. @change="addOrReduce"
  138. >
  139. <view slot="minus" class="minus">
  140. <u-icon
  141. name="minus"
  142. color="#B5B5B5"
  143. size="12"
  144. ></u-icon>
  145. </view>
  146. <text
  147. slot="input"
  148. style="
  149. width: 50px;
  150. text-align: center;
  151. font-size: 20rpx;
  152. "
  153. class="input"
  154. >{{ chid.cart.goods_num }}</text
  155. >
  156. <view slot="plus" class="plus">
  157. <u-icon
  158. name="plus"
  159. color="#B5B5B5"
  160. size="12"
  161. ></u-icon>
  162. </view>
  163. </u-number-box>
  164. </view>
  165. <view
  166. class="num"
  167. v-if="
  168. num != chid.cart.id &&
  169. success &&
  170. chid.status == 'normal'
  171. "
  172. @click.stop="num = chid.cart.id"
  173. >
  174. x{{ chid.cart.goods_num }}
  175. </view>
  176. <view
  177. v-if="success && chid.status == 'down'"
  178. class="del"
  179. @click="
  180. followOrdelete({
  181. index: 1,
  182. name: chid.cart.id,
  183. })
  184. "
  185. >{{i18n.delete}}</view
  186. >
  187. </view>
  188. <view
  189. v-if="success == false"
  190. class="icon delete-1"
  191. @click="
  192. followOrdelete({
  193. index: 1,
  194. name: chid.cart.id,
  195. })
  196. "
  197. >
  198. <u-icon name="trash" color="#fff" size="20"></u-icon>
  199. </view>
  200. </view>
  201. </view>
  202. </u-swipe-action-item>
  203. </view>
  204. </u-swipe-action>
  205. </view>
  206. </view>
  207. </u-checkbox-group>
  208. <u-toast ref="uToast"></u-toast>
  209. <view class="" style="height: 260rpx"></view>
  210. <view class="back-top" @click="backTop">
  211. <image
  212. class="back-icon"
  213. src="../../static/mine/355.png"
  214. mode="scaleToFill"
  215. />
  216. <text class="back-text">{{i18n.top}}</text>
  217. </view>
  218. <kj-tabbar
  219. ref="tabbar1"
  220. :value1="3"
  221. :success="success"
  222. @allSelect="allSelect"
  223. :goodsWeight="goodsWeight"
  224. :goodsPrice="String(goodsPrice.toFixed(2))"
  225. :goodsList="goodsList"
  226. :checkboxValue1="checkboxValue1"
  227. @selectDelete="selectDelete"
  228. ></kj-tabbar>
  229. </view>
  230. </template>
  231. <script>
  232. export default {
  233. data() {
  234. return {
  235. dele: true,
  236. success: true,
  237. shopitem: -1,
  238. checkboxValue1: [], //商品数组
  239. value: 0,
  240. all: [], //全选数组
  241. goodsList: [],
  242. selectall: -1,
  243. goodsNum: 0, //购物车商品数量
  244. num: false,
  245. goodsWeight: 0, //商品重量
  246. goodsPrice: 0, //商品价格
  247. tabarheight: "",
  248. removeProducts: 0, //已下架的商品数量
  249. };
  250. },
  251. watch: {},
  252. computed: {
  253. i18n() {
  254. return this.$t("index");
  255. },
  256. options2(){
  257. var options = [
  258. {
  259. text: this.i18n.Shiftfocus,
  260. style: {
  261. backgroundColor: "#FFB115",
  262. },
  263. },
  264. {
  265. text: this.i18n.delete,
  266. style: {
  267. backgroundColor: "#F83224",
  268. },
  269. }
  270. ]
  271. return options
  272. }
  273. },
  274. onLoad() {
  275. const systemInfo = wx.getSystemInfoSync();
  276. const tab =
  277. systemInfo.screenHeight -
  278. systemInfo.safeArea.bottom +
  279. systemInfo.statusBarHeight;
  280. this.tabarheight = tab;
  281. },
  282. onShow() {
  283. this.goodsNum = 0; //购物车商品数量
  284. this.goodsWeight = 0; //商品重量
  285. this.goodsPrice = 0; //商品价格
  286. this.checkboxValue1 = [];
  287. this.getShopCarList();
  288. },
  289. methods: {
  290. //返回顶部
  291. backTop() {
  292. uni.pageScrollTo({
  293. scrollTop: 0, // 滚动到页面的目标位置 这个是滚动到顶部, 0
  294. duration: 300, // 滚动动画的时长
  295. });
  296. },
  297. //商品下架之后的商品字体颜色
  298. getFontColor(status) {
  299. if (status == "down") {
  300. return "color:rgba(51, 51, 51, .6)";
  301. }
  302. },
  303. //关注商品 or 删除商品
  304. followOrdelete(e) {
  305. //关注商品
  306. if (e.index == 0) {
  307. this.goodsList.map((item) => {
  308. item.goods.map((items) => {
  309. if (e.name == items.cart.id) {
  310. console.log(items);
  311. uni.$u.http
  312. .post(`/api/interest/follow`, {
  313. interest_type: 0,
  314. interest_id: items.merchant_goods.id,
  315. })
  316. .then((res) => {
  317. this.$refs.show.forEach((item) => item.closeHandler(true));
  318. console.log(res);
  319. uni.showToast({
  320. title: "关注成功",
  321. icon: "none",
  322. });
  323. });
  324. }
  325. });
  326. });
  327. } else {
  328. //删除商品
  329. this.goodsList.map((item) => {
  330. item.goods.map((items) => {
  331. if (e.name == items.cart.id) {
  332. uni.$u.http
  333. .delete(`/api/cart?ids=${items.cart.id}`)
  334. .then((res) => {
  335. this.$refs.uToast.show({
  336. type: "default",
  337. title: this.i18n.defaultTheme,
  338. message: this.i18n.successfullydelete,
  339. });
  340. //删除后关闭滑动打开的单元格
  341. this.$refs.show.forEach((item) => item.closeHandler(true));
  342. this.getShopCarList();
  343. });
  344. }
  345. });
  346. });
  347. }
  348. },
  349. //多选删除
  350. selectDelete() {
  351. let goodsIdList = []; //筛选选中的商品id
  352. this.goodsList.map((item) => {
  353. item.goods.map((items) => {
  354. if (this.checkboxValue1.indexOf(items.cart.id) >= 0) {
  355. goodsIdList.push(items.cart.id);
  356. }
  357. });
  358. });
  359. uni.$u.http
  360. .delete(`/api/cart`, {
  361. ids: goodsIdList.join(","),
  362. })
  363. .then((res) => {
  364. this.$refs.uToast.show({
  365. type: "default",
  366. title: this.i18n.defaultTheme,
  367. message: this.i18n.successfullydelete,
  368. });
  369. this.checkboxValue1 = [];
  370. this.getShopCarList();
  371. });
  372. },
  373. shop(value) {
  374. let num = 0;
  375. value.map((item) => {
  376. if (this.checkboxValue1.indexOf(item.cart.id) >= 0) {
  377. num++;
  378. }
  379. });
  380. return num;
  381. },
  382. //获取排除下架的商品之后的商品数量
  383. getNormalGoodsNum(value) {
  384. let num = 0;
  385. value.map((item) => {
  386. if (item.status != "down") {
  387. num++;
  388. }
  389. });
  390. return num;
  391. },
  392. //修改购物车商品数量
  393. addOrReduce(n) {
  394. console.log(n);
  395. uni.$u.http
  396. .post(`/api/cart/num/${this.num}`, {
  397. goods_num: n.value,
  398. type: "",
  399. })
  400. .then((res) => {
  401. this.goodsPrice = 0;
  402. this.goodsWeight = 0;
  403. this.goodsList.map((item) => {
  404. item.goods.map((items) => {
  405. //判断是否有商品已被选中
  406. if (
  407. this.checkboxValue1.indexOf(items.cart.id) != -1 &&
  408. items.status != "down"
  409. ) {
  410. this.goodsWeight +=
  411. items.sku_item[0].weight * items.cart.goods_num;
  412. this.goodsPrice +=
  413. Number(items.sku_item[0].discount_price) *
  414. items.cart.goods_num;
  415. }
  416. });
  417. });
  418. });
  419. },
  420. //店铺商品全选
  421. shopSelectAll(value) {
  422. this.goodsPrice = 0;
  423. this.goodsWeight = 0;
  424. //先判断存放选中的数组有没有选中的数据
  425. if (this.checkboxValue1.length == 0) {
  426. //没有数据则直接将选中店铺中的商品存入数组
  427. value.map((item) => {
  428. //商品下架不得选中
  429. if (item.status != "down") {
  430. this.checkboxValue1.push(item.cart.id);
  431. }
  432. });
  433. } else {
  434. if (
  435. this.shop(value) > 0 &&
  436. this.shop(value) == this.getNormalGoodsNum(value)
  437. ) {
  438. value.map((item) => {
  439. //先判断选中的商品数组中该店铺商品是否已被选中,已被选中则取消选中
  440. if (this.checkboxValue1.indexOf(item.cart.id) >= 0) {
  441. this.checkboxValue1.splice(
  442. this.checkboxValue1.indexOf(item.cart.id),
  443. 1
  444. );
  445. }
  446. });
  447. } else if (
  448. (this.shop(value) > 0 &&
  449. this.shop(value) != this.getNormalGoodsNum(value)) ||
  450. this.shop(value) == 0
  451. ) {
  452. value.map((item) => {
  453. //先判断选中的商品数组中该店铺商品是否已被选中,未被选中则推入选中状态,商品下架不得选中
  454. if (
  455. this.checkboxValue1.indexOf(item.cart.id) == -1 &&
  456. item.status != "down"
  457. ) {
  458. this.checkboxValue1.push(item.cart.id);
  459. }
  460. });
  461. }
  462. }
  463. if (this.checkboxValue1.length == this.goodsNum - this.removeProducts) {
  464. this.$refs.tabbar1.cancelAll();
  465. } else {
  466. this.$refs.tabbar1.cancelAll(this.i18n.Cancel);
  467. }
  468. //将选中的商品价格相加
  469. this.goodsList.map((item) => {
  470. item.goods.map((items) => {
  471. if (this.checkboxValue1.indexOf(items.cart.id) > -1) {
  472. this.goodsWeight += items.sku_item[0].weight * items.cart.goods_num;
  473. this.goodsPrice +=
  474. Number(items.sku_item[0].discount_price) * items.cart.goods_num;
  475. }
  476. });
  477. });
  478. this.shop(value);
  479. },
  480. admin() {
  481. console.log(this.checkboxValue1);
  482. this.success = !this.success;
  483. },
  484. valChange(e) {
  485. console.log("当前值为: " + e.value);
  486. },
  487. //全选
  488. checkAll(e) {
  489. console.log("all", e);
  490. },
  491. //购物车单选
  492. checkboxChange(n) {
  493. console.log(n);
  494. //首先将价格和商品重量重置
  495. this.goodsWeight = 0;
  496. this.goodsPrice = 0;
  497. this.checkboxValue1 = n;
  498. this.goodsList.map((item) => {
  499. item.goods.map((items) => {
  500. if (n.indexOf(items.cart.id) > -1) {
  501. this.goodsWeight += items.sku_item[0].weight * items.cart.goods_num;
  502. this.goodsPrice +=
  503. Number(items.sku_item[0].discount_price) * items.cart.goods_num;
  504. }
  505. });
  506. });
  507. //判断是否全部选中
  508. if (
  509. this.checkboxValue1.length == this.goodsNum - this.removeProducts &&
  510. this.goodsNum != 0
  511. ) {
  512. this.$refs.tabbar1.cancelAll();
  513. } else if (
  514. this.checkboxValue1.length <
  515. this.goodsNum - this.removeProducts
  516. ) {
  517. this.$refs.tabbar1.cancelAll(this.i18n.Cancel);
  518. }
  519. },
  520. //购物车全选
  521. allSelect() {
  522. const all = this.$refs.tabbar1.cancelAll(this.i18n.selectall);
  523. if (
  524. this.checkboxValue1.length == this.goodsNum - this.removeProducts &&
  525. all.length == 0
  526. ) {
  527. return;
  528. }
  529. //判断是否已经全选,如已全选,则取消全选
  530. if (this.checkboxValue1.length == this.goodsNum - this.removeProducts) {
  531. this.checkboxValue1 = [];
  532. this.goodsPrice = 0;
  533. this.goodsWeight = 0;
  534. } else {
  535. this.goodsList.map((item) => {
  536. item.goods.map((items) => {
  537. //判断是否有商品已被选中
  538. if (
  539. this.checkboxValue1.indexOf(items.cart.id) == -1 &&
  540. items.status != "down"
  541. ) {
  542. this.checkboxValue1.push(items.cart.id);
  543. this.goodsWeight +=
  544. items.sku_item[0].weight * items.cart.goods_num;
  545. this.goodsPrice +=
  546. Number(items.sku_item[0].discount_price) * items.cart.goods_num;
  547. }
  548. });
  549. });
  550. }
  551. },
  552. //获取购物车数据
  553. getShopCarList() {
  554. this.goodsNum = 0;
  555. uni.$u.http.get(`/api/cart`).then((res) => {
  556. this.goodsList = res.data;
  557. //循环店铺,获取购物车商品数量
  558. this.goodsList.map((item) => {
  559. this.goodsNum += item.goods.length;
  560. item.goods.map((items) => {
  561. if (items.status == "down") {
  562. this.removeProducts++;
  563. }
  564. });
  565. });
  566. });
  567. },
  568. },
  569. // mounted() {
  570. // this.getShopCarList();
  571. // },
  572. };
  573. </script>
  574. <style lang="scss" scoped>
  575. .page {
  576. position: relative;
  577. .back-top {
  578. position: fixed;
  579. display: flex;
  580. flex-direction: column;
  581. justify-content: center;
  582. align-items: center;
  583. width: 88rpx;
  584. height: 88rpx;
  585. background-color: #fff;
  586. border-radius: 50%;
  587. bottom: 280rpx;
  588. right: 20rpx;
  589. z-index: 1000;
  590. .back-icon {
  591. width: 32rpx;
  592. height: 30rpx;
  593. }
  594. .back-text {
  595. font-size: 20rpx;
  596. color: #555;
  597. }
  598. }
  599. }
  600. .sold {
  601. width: 108rpx;
  602. height: 36rpx;
  603. background: rgba(0, 0, 0, 0.4);
  604. border-radius: 18rpx;
  605. // padding: 0 14rpx;
  606. text-align: center;
  607. box-sizing: border-box;
  608. line-height: 36rpx;
  609. font-family: PingFangSC, PingFang SC;
  610. font-weight: 400;
  611. font-size: 20rpx;
  612. color: #ffffff;
  613. font-style: normal;
  614. position: absolute;
  615. top: 50%;
  616. left: 50%;
  617. margin-top: -18rpx;
  618. margin-left: -54rpx;
  619. }
  620. .delect {
  621. // width: 68rpx;
  622. height: 44rpx;
  623. line-height: 44rpx;
  624. border-radius: 22rpx;
  625. border: 1rpx solid #ff1515;
  626. padding: 0 14rpx;
  627. box-sizing: border-box;
  628. font-family: PingFangSC, PingFang SC;
  629. font-weight: 400;
  630. font-size: 20rpx;
  631. color: #ff1515;
  632. text-align: center;
  633. font-style: normal;
  634. }
  635. .allweight {
  636. font-family: PingFangSC, PingFang SC;
  637. font-weight: 400;
  638. font-size: 22rpx;
  639. color: #333333;
  640. line-height: 32rpx;
  641. text-align: left;
  642. font-style: normal;
  643. }
  644. .sum {
  645. font-family: PingFangSC, PingFang SC;
  646. font-weight: 400;
  647. font-size: 22rpx;
  648. color: #333333;
  649. line-height: 32rpx;
  650. text-align: left;
  651. font-style: normal;
  652. }
  653. .summon {
  654. font-family: JDZhengHT, JDZhengHT;
  655. font-weight: 400;
  656. font-size: 24rpx;
  657. color: #ff1515;
  658. line-height: 30rpx;
  659. text-align: left;
  660. font-style: normal;
  661. }
  662. .settle {
  663. width: 176rpx;
  664. height: 68rpx;
  665. background: #f83224;
  666. border-radius: 38rpx;
  667. font-family: PingFangSC, PingFang SC;
  668. font-weight: 500;
  669. font-size: 28rpx;
  670. color: #ffffff;
  671. line-height: 68rpx;
  672. text-align: center;
  673. font-style: normal;
  674. margin-left: 20rpx;
  675. }
  676. .icon {
  677. width: 40rpx;
  678. height: 40rpx;
  679. background: #f83224;
  680. border-radius: 12rpx;
  681. display: flex;
  682. justify-content: center;
  683. align-items: center;
  684. }
  685. .dle {
  686. width: 136rpx;
  687. height: 60rpx;
  688. border-radius: 38rpx;
  689. border: 1rpx solid #979797;
  690. font-family: PingFangSC, PingFang SC;
  691. font-weight: 400;
  692. font-size: 26rpx;
  693. color: #333333;
  694. line-height: 60rpx;
  695. text-align: center;
  696. font-style: normal;
  697. }
  698. ::v-deep .u-swipe-action-item__content {
  699. flex-direction: row !important;
  700. }
  701. ::v-deep .u-swipe-action-item__right__button__wrapper {
  702. width: 32px;
  703. word-wrap: break-word;
  704. font-size: 20rpx !important;
  705. }
  706. ::v-deep .u-swipe-action-item__right__button__wrapper__text {
  707. word-wrap: break-word;
  708. }
  709. ::v-deep .u-swipe-action-item {
  710. width: 100% !important;
  711. }
  712. ::v-deep .u-swipe-action-item__right {
  713. top: 2rpx !important;
  714. right: 2rpx !important;
  715. bottom: 2rpx !important;
  716. }
  717. .bottom {
  718. width: 750rpx;
  719. height: 100rpx;
  720. background: #ffffff;
  721. padding: 0 24rpx;
  722. box-sizing: border-box;
  723. }
  724. .num {
  725. width: 40rpx;
  726. height: 40rpx;
  727. border-radius: 20rpx;
  728. border: 1rpx solid rgba(151, 151, 151, 0.4);
  729. font-family: HarmonyOS_Sans;
  730. font-size: 20rpx;
  731. color: #222222;
  732. line-height: 40rpx;
  733. text-align: center;
  734. font-style: normal;
  735. }
  736. .del {
  737. width: 68rpx;
  738. height: 44rpx;
  739. text-align: center;
  740. line-height: 44rpx;
  741. border: 2rpx solid #f83224;
  742. color: #f83224;
  743. font-size: 20rpx;
  744. border-radius: 22rpx;
  745. }
  746. .box {
  747. padding: 0rpx 24rpx 20rpx;
  748. margin-top: 20rpx;
  749. box-sizing: border-box;
  750. .item {
  751. padding: 36rpx 20rpx;
  752. box-sizing: border-box;
  753. width: 702rpx;
  754. // height: 556rpx;
  755. background: #ffffff;
  756. border-radius: 16rpx;
  757. .money {
  758. font-family: HarmonyOS_Sans_Medium;
  759. font-size: 20rpx;
  760. color: #ff1515;
  761. line-height: 26rpx;
  762. text-align: left;
  763. font-style: normal;
  764. }
  765. .weight {
  766. font-family: SFPro, SFPro;
  767. font-weight: 400;
  768. font-size: 20rpx;
  769. color: #333333;
  770. line-height: 24rpx;
  771. text-align: left;
  772. font-style: normal;
  773. margin-left: 12rpx;
  774. }
  775. .goodtab {
  776. // width: 96rpx;
  777. height: 32rpx;
  778. border-radius: 4rpx;
  779. border: 1rpx solid #ff1515;
  780. padding: 2rpx 8rpx;
  781. box-sizing: border-box;
  782. text-align: center;
  783. line-height: 32rpx;
  784. display: inline;
  785. font-family: PingFangSC, PingFang SC;
  786. font-weight: 400;
  787. font-size: 20rpx;
  788. color: #ff1515;
  789. line-height: 28rpx;
  790. text-align: left;
  791. font-style: normal;
  792. margin-right: 6rpx;
  793. }
  794. .goods {
  795. // width: 284rpx;
  796. height: 40rpx;
  797. background: #f4f4f4;
  798. border-radius: 8rpx;
  799. display: inline;
  800. text-align: center;
  801. line-height: 40rpx;
  802. margin-top: 20rpx;
  803. padding: 6rpx 12rpx;
  804. box-sizing: border-box;
  805. font-family: PingFangSC, PingFang SC;
  806. font-weight: 400;
  807. font-size: 20rpx;
  808. color: #555555;
  809. line-height: 28rpx;
  810. text-align: left;
  811. font-style: normal;
  812. }
  813. .goodname {
  814. font-family: PingFangSC, PingFang SC;
  815. font-weight: 500;
  816. font-size: 28rpx;
  817. color: #333333;
  818. line-height: 40rpx;
  819. text-align: left;
  820. font-style: normal;
  821. overflow: hidden;
  822. text-overflow: ellipsis;
  823. word-break: break-all;
  824. white-space: nowrap;
  825. width: 100%;
  826. }
  827. .shopname {
  828. font-family: PingFangSC, PingFang SC;
  829. font-weight: 500;
  830. font-size: 26rpx;
  831. color: #333333;
  832. line-height: 36rpx;
  833. text-align: left;
  834. font-style: normal;
  835. .circle {
  836. width: 32rpx;
  837. height: 32rpx;
  838. margin-right: 10rpx;
  839. }
  840. }
  841. }
  842. }
  843. .shopcart {
  844. font-family: PingFangSC, PingFang SC;
  845. font-weight: 500;
  846. font-size: 36rpx;
  847. color: #222222;
  848. line-height: 50rpx;
  849. text-align: right;
  850. font-style: normal;
  851. }
  852. .sum {
  853. font-family: HarmonyOS_Sans;
  854. font-size: 22rpx;
  855. color: #333333;
  856. line-height: 32rpx;
  857. text-align: left;
  858. font-style: normal;
  859. }
  860. .down {
  861. position: absolute;
  862. top: 0;
  863. left: 0;
  864. background-color: #c7c7c7;
  865. opacity: 0.7;
  866. width: 100%;
  867. height: 100%;
  868. z-index: 10000;
  869. border-radius: 20rpx;
  870. }
  871. </style>