cart.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822
  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" >{{
  100. chid.name_cn
  101. }}</view>
  102. <view class="goods" v-if="chid.sku_item.length > 0">{{
  103. chid.sku_item[0].item
  104. }}</view>
  105. <view class="" style="margin-top: 21rpx">
  106. <view
  107. class="goodtab"
  108. v-for="itemLabel in chid.label_arr"
  109. :key="itemLabel.id"
  110. >{{ itemLabel.name_cn }}</view
  111. >
  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].price.split(".")[0]
  121. }}</text>
  122. <text class="money"
  123. >.{{ chid.sku_item[0].price.split(".")[1] }}</text
  124. >
  125. <text class="weight"
  126. >{{ chid.sku_item[0].weight }}kg</text
  127. >
  128. </view>
  129. <view class="aaaaaa">
  130. <!-- <view class="delect" v-if='dele'>{{i18n.delete}}</view> -->
  131. <view
  132. class=""
  133. v-if="num == chid.cart.sku_item_id && success"
  134. >
  135. <!-- <u-number-box v-model="value" @change="valChange"></u-number-box> -->
  136. <u-number-box
  137. v-model="chid.cart.goods_num"
  138. @change="addOrReduce"
  139. >
  140. <view slot="minus" class="minus">
  141. <u-icon
  142. name="minus"
  143. color="#B5B5B5"
  144. size="12"
  145. ></u-icon>
  146. </view>
  147. <text
  148. slot="input"
  149. style="
  150. width: 50px;
  151. text-align: center;
  152. font-size: 20rpx;
  153. "
  154. class="input"
  155. >{{ chid.cart.goods_num }}</text
  156. >
  157. <view slot="plus" class="plus">
  158. <u-icon
  159. name="plus"
  160. color="#B5B5B5"
  161. size="12"
  162. ></u-icon>
  163. </view>
  164. </u-number-box>
  165. </view>
  166. <view
  167. class="num"
  168. v-if="
  169. num != chid.cart.sku_item_id &&
  170. success &&
  171. chid.status == 'normal'
  172. "
  173. @click="num = chid.cart.sku_item_id"
  174. >
  175. x{{ chid.cart.goods_num }}
  176. </view>
  177. <view
  178. v-if="chid.status == 'down'"
  179. class="del"
  180. @click="
  181. followOrdelete({
  182. index: 1,
  183. name: chid.cart.sku_item_id,
  184. })
  185. "
  186. >删除</view
  187. >
  188. </view>
  189. <view v-if="success == false" class="icon">
  190. <u-icon name="trash" color="#fff" size="20"></u-icon>
  191. </view>
  192. </view>
  193. </view>
  194. </u-swipe-action-item>
  195. </view>
  196. </u-swipe-action>
  197. </view>
  198. </view>
  199. </u-checkbox-group>
  200. <u-toast ref="uToast"></u-toast>
  201. <view class="" style="height: 260rpx"></view>
  202. <view class="back-top" @click="backTop">
  203. <image
  204. class="back-icon"
  205. src="../../static/mine/355.png"
  206. mode="scaleToFill"
  207. />
  208. <text class="back-text">顶部</text>
  209. </view>
  210. <kj-tabbar
  211. ref="tabbar1"
  212. :value1="3"
  213. @allSelect="allSelect"
  214. :goodsWeight="goodsWeight"
  215. :goodsPrice="String(goodsPrice.toFixed(2))"
  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: 210rpx;
  510. right: 20rpx;
  511. .back-icon {
  512. width: 32rpx;
  513. height: 30rpx;
  514. }
  515. .back-text {
  516. font-size: 20rpx;
  517. color: #555;
  518. }
  519. }
  520. }
  521. .sold {
  522. width: 108rpx;
  523. height: 36rpx;
  524. background: rgba(0, 0, 0, 0.4);
  525. border-radius: 18rpx;
  526. // padding: 0 14rpx;
  527. text-align: center;
  528. box-sizing: border-box;
  529. line-height: 36rpx;
  530. font-family: PingFangSC, PingFang SC;
  531. font-weight: 400;
  532. font-size: 20rpx;
  533. color: #ffffff;
  534. font-style: normal;
  535. position: absolute;
  536. top: 50%;
  537. left: 50%;
  538. margin-top: -18rpx;
  539. margin-left: -54rpx;
  540. }
  541. .delect {
  542. // width: 68rpx;
  543. height: 44rpx;
  544. line-height: 44rpx;
  545. border-radius: 22rpx;
  546. border: 1rpx solid #ff1515;
  547. padding: 0 14rpx;
  548. box-sizing: border-box;
  549. font-family: PingFangSC, PingFang SC;
  550. font-weight: 400;
  551. font-size: 20rpx;
  552. color: #ff1515;
  553. text-align: center;
  554. font-style: normal;
  555. }
  556. .allweight {
  557. font-family: PingFangSC, PingFang SC;
  558. font-weight: 400;
  559. font-size: 22rpx;
  560. color: #333333;
  561. line-height: 32rpx;
  562. text-align: left;
  563. font-style: normal;
  564. }
  565. .sum {
  566. font-family: PingFangSC, PingFang SC;
  567. font-weight: 400;
  568. font-size: 22rpx;
  569. color: #333333;
  570. line-height: 32rpx;
  571. text-align: left;
  572. font-style: normal;
  573. }
  574. .summon {
  575. font-family: JDZhengHT, JDZhengHT;
  576. font-weight: 400;
  577. font-size: 24rpx;
  578. color: #ff1515;
  579. line-height: 30rpx;
  580. text-align: left;
  581. font-style: normal;
  582. }
  583. .settle {
  584. width: 176rpx;
  585. height: 68rpx;
  586. background: #f83224;
  587. border-radius: 38rpx;
  588. font-family: PingFangSC, PingFang SC;
  589. font-weight: 500;
  590. font-size: 28rpx;
  591. color: #ffffff;
  592. line-height: 68rpx;
  593. text-align: center;
  594. font-style: normal;
  595. margin-left: 20rpx;
  596. }
  597. .icon {
  598. width: 40rpx;
  599. height: 40rpx;
  600. background: #f83224;
  601. border-radius: 12rpx;
  602. display: flex;
  603. justify-content: center;
  604. align-items: center;
  605. }
  606. .dle {
  607. width: 136rpx;
  608. height: 60rpx;
  609. border-radius: 38rpx;
  610. border: 1rpx solid #979797;
  611. font-family: PingFangSC, PingFang SC;
  612. font-weight: 400;
  613. font-size: 26rpx;
  614. color: #333333;
  615. line-height: 60rpx;
  616. text-align: center;
  617. font-style: normal;
  618. }
  619. ::v-deep .u-swipe-action-item__content {
  620. flex-direction: row !important;
  621. }
  622. ::v-deep .u-swipe-action-item__right__button__wrapper {
  623. width: 32px;
  624. word-wrap: break-word;
  625. font-size: 20rpx !important;
  626. }
  627. ::v-deep .u-swipe-action-item__right__button__wrapper__text {
  628. word-wrap: break-word;
  629. }
  630. ::v-deep .u-swipe-action-item {
  631. width: 100% !important;
  632. }
  633. ::v-deep .u-swipe-action-item__right {
  634. top: 2rpx !important;
  635. right: 2rpx !important;
  636. bottom: 2rpx !important;
  637. }
  638. .bottom {
  639. width: 750rpx;
  640. height: 100rpx;
  641. background: #ffffff;
  642. padding: 0 24rpx;
  643. box-sizing: border-box;
  644. }
  645. .num {
  646. width: 40rpx;
  647. height: 40rpx;
  648. border-radius: 20rpx;
  649. border: 1rpx solid rgba(151, 151, 151, 0.4);
  650. font-family: HarmonyOS_Sans;
  651. font-size: 20rpx;
  652. color: #222222;
  653. line-height: 40rpx;
  654. text-align: center;
  655. font-style: normal;
  656. }
  657. .del {
  658. width: 68rpx;
  659. height: 44rpx;
  660. text-align: center;
  661. line-height: 44rpx;
  662. border: 2rpx solid #f83224;
  663. color: #f83224;
  664. font-size: 20rpx;
  665. border-radius: 22rpx;
  666. }
  667. .box {
  668. padding: 0rpx 24rpx 20rpx;
  669. margin-top: 20rpx;
  670. box-sizing: border-box;
  671. .item {
  672. padding: 36rpx 20rpx;
  673. box-sizing: border-box;
  674. width: 702rpx;
  675. // height: 556rpx;
  676. background: #ffffff;
  677. border-radius: 16rpx;
  678. .money {
  679. font-family: HarmonyOS_Sans_Medium;
  680. font-size: 20rpx;
  681. color: #ff1515;
  682. line-height: 26rpx;
  683. text-align: left;
  684. font-style: normal;
  685. }
  686. .weight {
  687. font-family: SFPro, SFPro;
  688. font-weight: 400;
  689. font-size: 20rpx;
  690. color: #333333;
  691. line-height: 24rpx;
  692. text-align: left;
  693. font-style: normal;
  694. margin-left: 12rpx;
  695. }
  696. .goodtab {
  697. // width: 96rpx;
  698. height: 32rpx;
  699. border-radius: 4rpx;
  700. border: 1rpx solid #ff1515;
  701. padding: 2rpx 8rpx;
  702. box-sizing: border-box;
  703. text-align: center;
  704. line-height: 32rpx;
  705. display: inline;
  706. font-family: PingFangSC, PingFang SC;
  707. font-weight: 400;
  708. font-size: 20rpx;
  709. color: #ff1515;
  710. line-height: 28rpx;
  711. text-align: left;
  712. font-style: normal;
  713. margin-right: 6rpx;
  714. }
  715. .goods {
  716. // width: 284rpx;
  717. height: 40rpx;
  718. background: #f4f4f4;
  719. border-radius: 8rpx;
  720. display: inline;
  721. text-align: center;
  722. line-height: 40rpx;
  723. margin-top: 20rpx;
  724. padding: 6rpx 12rpx;
  725. box-sizing: border-box;
  726. font-family: PingFangSC, PingFang SC;
  727. font-weight: 400;
  728. font-size: 20rpx;
  729. color: #555555;
  730. line-height: 28rpx;
  731. text-align: left;
  732. font-style: normal;
  733. }
  734. .goodname {
  735. font-family: PingFangSC, PingFang SC;
  736. font-weight: 500;
  737. font-size: 28rpx;
  738. color: #333333;
  739. line-height: 40rpx;
  740. text-align: left;
  741. font-style: normal;
  742. overflow: hidden;
  743. text-overflow: ellipsis;
  744. white-space: nowrap;
  745. width: 100%;
  746. }
  747. .shopname {
  748. font-family: PingFangSC, PingFang SC;
  749. font-weight: 500;
  750. font-size: 26rpx;
  751. color: #333333;
  752. line-height: 36rpx;
  753. text-align: left;
  754. font-style: normal;
  755. .circle {
  756. width: 32rpx;
  757. height: 32rpx;
  758. margin-right: 10rpx;
  759. }
  760. }
  761. }
  762. }
  763. .shopcart {
  764. font-family: PingFangSC, PingFang SC;
  765. font-weight: 500;
  766. font-size: 36rpx;
  767. color: #222222;
  768. line-height: 50rpx;
  769. text-align: right;
  770. font-style: normal;
  771. }
  772. .sum {
  773. font-family: HarmonyOS_Sans;
  774. font-size: 22rpx;
  775. color: #333333;
  776. line-height: 32rpx;
  777. text-align: left;
  778. font-style: normal;
  779. }
  780. .down {
  781. position: absolute;
  782. top: 0;
  783. left: 0;
  784. background-color: #c7c7c7;
  785. opacity: 0.7;
  786. width: 100%;
  787. height: 100%;
  788. z-index: 10000;
  789. border-radius: 20rpx;
  790. }
  791. </style>