cart.vue 22 KB

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