s-select-sku.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560
  1. <template>
  2. <!-- 规格弹窗 -->
  3. <su-popup :show="show" round="10" @close="emits('close')">
  4. <!-- SKU 信息 -->
  5. <view class="ss-modal-box bg-white ss-flex-col">
  6. <view class="modal-header ss-flex ss-col-center">
  7. <view class="header-left ss-m-r-30">
  8. <image
  9. class="sku-image"
  10. :src="state.selectedSku.picUrl || goodsInfo.picUrl"
  11. mode="aspectFill"
  12. />
  13. </view>
  14. <view class="header-right ss-flex-col ss-row-between ss-flex-1">
  15. <view class="goods-title ss-line-2">{{ goodsInfo.name }}</view>
  16. <view class="header-right-bottom ss-flex ss-col-center ss-row-between">
  17. <view class="ss-flex">
  18. <view class="price-text">
  19. <image
  20. src="@/static/icon/points.png"
  21. v-if="goodsInfo.spuPayType == 2"
  22. style="width: 30rpx; height: 30rpx"
  23. ></image>
  24. <text v-else>¥</text>
  25. {{ fen2yuan(state.selectedSku.price || goodsInfo.price) }}
  26. </view>
  27. <view
  28. class="origin-price-text ss-m-l-10"
  29. v-if="
  30. state.selectedSku.promotionFee >= 0 ||
  31. goodsInfo.promotionFee >= 0
  32. "
  33. >
  34. 数字权益:{{
  35. fen2yuan(
  36. state.selectedSku.promotionFee || goodsInfo.promotionFee,
  37. )
  38. }}
  39. </view>
  40. </view>
  41. <view class="stock-text ss-m-l-20">
  42. {{ formatStock('exact', state.selectedSku.stock || goodsInfo.stock) }}
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <!-- 属性选择 -->
  48. <view class="modal-content ss-flex-1">
  49. <scroll-view scroll-y="true" class="modal-content-scroll" @touchmove.stop>
  50. <view
  51. class="sku-item ss-m-b-20"
  52. v-for="property in propertyList"
  53. :key="property.id"
  54. >
  55. <view class="label-text ss-m-b-20">{{ property.name }}</view>
  56. <view class="ss-flex ss-col-center ss-flex-wrap">
  57. <button
  58. class="ss-reset-button spec-btn"
  59. v-for="value in property.values"
  60. :class="[
  61. {
  62. 'ui-BG-Main-Gradient':
  63. state.currentPropertyArray[property.id] === value.id,
  64. },
  65. {
  66. 'disabled-btn': value.disabled === true,
  67. },
  68. ]"
  69. :key="value.id"
  70. :disabled="value.disabled === true"
  71. @tap="onSelectSku(property.id, value.id)"
  72. >
  73. {{ value.name }}
  74. </button>
  75. </view>
  76. </view>
  77. <view
  78. class="buy-num-box ss-flex ss-col-center ss-row-between ss-m-b-40"
  79. v-if="goodsInfo.spuPayType == 2"
  80. >
  81. <view class="label-text"
  82. >购买金额 (当前可用数字权益:{{
  83. points2point(userWallet.integralDO.currentQuota)
  84. }})</view
  85. >
  86. <view class="ss-flex ss-col-center">
  87. <image
  88. src="@/static/icon/points.png"
  89. v-if="goodsInfo.spuPayType == 2"
  90. style="width: 30rpx; height: 30rpx"
  91. ></image>
  92. <input
  93. v-model="state.selectedSku.use_points"
  94. class="uni-input input-points"
  95. style="width: 100rpx; text-align: center"
  96. type="number"
  97. placeholder="0"
  98. @input="inputPoints"
  99. :disabled="!state.selectedSku.id"
  100. />
  101. </view>
  102. </view>
  103. <view class="buy-num-box ss-flex ss-col-center ss-row-between ss-m-b-40" v-else>
  104. <view class="label-text">购买数量</view>
  105. <su-number-box
  106. :min="1"
  107. :max="state.selectedSku.stock"
  108. :step="1"
  109. v-model="state.selectedSku.goods_num"
  110. @change="onNumberChange($event)"
  111. />
  112. </view>
  113. </scroll-view>
  114. </view>
  115. <!-- 操作区 -->
  116. <view class="modal-footer border-top">
  117. <view
  118. class="buy-box ss-flex ss-col-center ss-flex ss-col-center ss-row-center"
  119. v-if="goodsInfo.spuType && goodsInfo.spuPayType == 1"
  120. >
  121. <button class="ss-reset-button add-btn ui-Shadow-Main" @tap="onAddCart"
  122. >加入购物车</button
  123. >
  124. <button class="ss-reset-button buy-btn ui-Shadow-Main" @tap="onBuy"
  125. >立即购买</button
  126. >
  127. </view>
  128. <view
  129. class="buy-box ss-flex ss-col-center ss-flex ss-col-center ss-row-center"
  130. v-else
  131. >
  132. <button class="ss-reset-button one-buy-btn ui-Shadow-Main" @tap="onBuy"
  133. >立即购买</button
  134. >
  135. </view>
  136. </view>
  137. </view>
  138. </su-popup>
  139. </template>
  140. <script setup>
  141. import { computed, reactive, watch, onMounted,nextTick } from 'vue';
  142. import sheep from '@/sheep';
  143. import {
  144. formatStock,
  145. convertProductPropertyList,
  146. fen2yuan,
  147. points2point,
  148. } from '@/sheep/hooks/useGoods';
  149. const emits = defineEmits(['change', 'addCart', 'buy', 'close']);
  150. const props = defineProps({
  151. goodsInfo: {
  152. type: Object,
  153. default() {},
  154. },
  155. show: {
  156. type: Boolean,
  157. default: false,
  158. },
  159. });
  160. const userWallet = computed(() => sheep.$store('user').userWallet);
  161. const state = reactive({
  162. selectedSku: {}, // 选中的 SKU
  163. currentPropertyArray: [], // 当前选中的属性,实际是个 Map。key 是 property 编号,value 是 value 编号
  164. });
  165. const propertyList = convertProductPropertyList(props.goodsInfo.skus);
  166. // SKU 列表
  167. const skuList = computed(() => {
  168. let skuPrices = props.goodsInfo.skus;
  169. for (let price of skuPrices) {
  170. price.value_id_array = price.properties.map((item) => item.valueId);
  171. }
  172. return skuPrices;
  173. });
  174. function inputPoints(e) {
  175. const points = e.detail.value;
  176. const userCanUsePoints = parseFloat(points2point(userWallet.value.integralDO.currentQuota));
  177. state.selectedSku.goods_num = parseInt(state.selectedSku.use_points / fen2yuan(state.selectedSku.price));
  178. if (points > userCanUsePoints) {
  179. sheep.$helper.toast('可用数字权益不足');
  180. console.log('输入的数字权益大于可用数字权益了', points, userCanUsePoints);
  181. nextTick(() => {
  182. state.selectedSku.use_points = userCanUsePoints;
  183. // 重新计算 对应的商品数量
  184. state.selectedSku.goods_num = parseInt(state.selectedSku.use_points / fen2yuan(state.selectedSku.price));
  185. });
  186. }
  187. }
  188. watch(
  189. () => state.selectedSku,
  190. (newVal) => {
  191. emits('change', newVal);
  192. },
  193. {
  194. immediate: true, // 立即执行
  195. deep: true, // 深度监听
  196. },
  197. );
  198. // 输入框改变数量
  199. function onNumberChange(e) {
  200. if (e === 0) return;
  201. if (state.selectedSku.goods_num === e) return;
  202. state.selectedSku.goods_num = e;
  203. }
  204. // 加入购物车
  205. function onAddCart() {
  206. if (state.selectedSku.id <= 0) {
  207. sheep.$helper.toast('请选择规格');
  208. return;
  209. }
  210. if (state.selectedSku.stock <= 0) {
  211. sheep.$helper.toast('库存不足');
  212. return;
  213. }
  214. emits('addCart', state.selectedSku);
  215. }
  216. // 立即购买
  217. function onBuy() {
  218. if (props.goodsInfo.spuPayType == 2) {
  219. if (state.selectedSku.goods_num < 1 || !state.selectedSku.use_points) {
  220. sheep.$helper.toast('输入金额少于可购买数量');
  221. return;
  222. }
  223. // 下单时检测如果
  224. if(state.selectedSku.goods_num > state.selectedSku.stock){
  225. state.selectedSku.use_points = (state.selectedSku.stock * fen2yuan(state.selectedSku.price) ).toFixed(2)
  226. state.selectedSku.goods_num = state.selectedSku.stock
  227. }
  228. }
  229. if (state.selectedSku.id <= 0) {
  230. sheep.$helper.toast('请选择规格');
  231. return;
  232. }
  233. if (state.selectedSku.stock <= 0) {
  234. sheep.$helper.toast('库存不足');
  235. return;
  236. }
  237. emits('buy', state.selectedSku);
  238. }
  239. // 改变禁用状态:计算每个 property 属性值的按钮,是否禁用
  240. function changeDisabled(isChecked = false, propertyId = 0, valueId = 0) {
  241. let newSkus = []; // 所有可以选择的 sku 数组
  242. if (isChecked) {
  243. // 情况一:选中 property
  244. // 获得当前点击选中 property 的、所有可用 SKU
  245. for (let price of skuList.value) {
  246. if (price.stock <= 0) {
  247. continue;
  248. }
  249. if (price.value_id_array.indexOf(valueId) >= 0) {
  250. newSkus.push(price);
  251. }
  252. }
  253. } else {
  254. // 情况二:取消选中 property
  255. // 当前所选 property 下,所有可以选择的 SKU
  256. newSkus = getCanUseSkuList();
  257. }
  258. // 所有存在并且有库存未选择的 SKU 的 value 属性值 id
  259. let noChooseValueIds = [];
  260. for (let price of newSkus) {
  261. noChooseValueIds = noChooseValueIds.concat(price.value_id_array);
  262. }
  263. noChooseValueIds = Array.from(new Set(noChooseValueIds)); // 去重
  264. if (isChecked) {
  265. // 去除当前选中的 value 属性值 id
  266. let index = noChooseValueIds.indexOf(valueId);
  267. noChooseValueIds.splice(index, 1);
  268. } else {
  269. // 循环去除当前已选择的 value 属性值 id
  270. state.currentPropertyArray.forEach((currentPropertyId) => {
  271. if (currentPropertyId.toString() !== '') {
  272. return;
  273. }
  274. // currentPropertyId 为空是反选 填充的
  275. let index = noChooseValueIds.indexOf(currentPropertyId);
  276. if (index >= 0) {
  277. // currentPropertyId 存在于 noChooseValueIds
  278. noChooseValueIds.splice(index, 1);
  279. }
  280. });
  281. }
  282. // 当前已选择的 property 数组
  283. let choosePropertyIds = [];
  284. if (!isChecked) {
  285. // 当前已选择的 property
  286. state.currentPropertyArray.forEach((currentPropertyId, currentValueId) => {
  287. if (currentPropertyId !== '') {
  288. // currentPropertyId 为空是反选 填充的
  289. choosePropertyIds.push(currentValueId);
  290. }
  291. });
  292. } else {
  293. // 当前点击选择的 property
  294. choosePropertyIds = [propertyId];
  295. }
  296. for (let propertyIndex in propertyList) {
  297. // 当前点击的 property、或者取消选择时候,已选中的 property 不进行处理
  298. if (choosePropertyIds.indexOf(propertyList[propertyIndex]['id']) >= 0) {
  299. continue;
  300. }
  301. // 如果当前 property id 不存在于有库存的 SKU 中,则禁用
  302. for (let valueIndex in propertyList[propertyIndex]['values']) {
  303. propertyList[propertyIndex]['values'][valueIndex]['disabled'] =
  304. noChooseValueIds.indexOf(
  305. propertyList[propertyIndex]['values'][valueIndex]['id'],
  306. ) < 0; // true 禁用 or false 不禁用
  307. }
  308. }
  309. }
  310. // 当前所选属性下,获取所有有库存的 SKU 们
  311. function getCanUseSkuList() {
  312. let newSkus = [];
  313. for (let sku of skuList.value) {
  314. if (sku.stock <= 0) {
  315. continue;
  316. }
  317. let isOk = true;
  318. state.currentPropertyArray.forEach((propertyId) => {
  319. // propertyId 不为空,并且,这个 条 sku 没有被选中,则排除
  320. if (propertyId.toString() !== '' && sku.value_id_array.indexOf(propertyId) < 0) {
  321. isOk = false;
  322. }
  323. });
  324. if (isOk) {
  325. newSkus.push(sku);
  326. }
  327. }
  328. return newSkus;
  329. }
  330. // 选择规格
  331. function onSelectSku(propertyId, valueId) {
  332. // console.log(propertyId,valueId)
  333. // 清空已输入金额
  334. state.selectedSku.use_points = 0;
  335. // 清空已选择
  336. let isChecked = true; // 选中 or 取消选中
  337. if (
  338. state.currentPropertyArray[propertyId] !== undefined &&
  339. state.currentPropertyArray[propertyId] === valueId
  340. ) {
  341. // 点击已被选中的,删除并填充 ''
  342. isChecked = false;
  343. state.currentPropertyArray.splice(propertyId, 1, '');
  344. } else {
  345. // 选中
  346. state.currentPropertyArray[propertyId] = valueId;
  347. }
  348. // 选中的 property 大类
  349. let choosePropertyId = [];
  350. state.currentPropertyArray.forEach((currentPropertyId) => {
  351. if (currentPropertyId !== '') {
  352. // currentPropertyId 为空是反选 填充的
  353. choosePropertyId.push(currentPropertyId);
  354. }
  355. });
  356. // 当前所选 property 下,所有可以选择的 SKU 们
  357. let newSkuList = getCanUseSkuList();
  358. // 判断所有 property 大类是否选择完成
  359. if (choosePropertyId.length === propertyList.length && newSkuList.length) {
  360. newSkuList[0].goods_num = state.selectedSku.goods_num || 1;
  361. state.selectedSku = newSkuList[0];
  362. } else {
  363. state.selectedSku = {};
  364. }
  365. // 改变 property 禁用状态
  366. changeDisabled(isChecked, propertyId, valueId);
  367. }
  368. changeDisabled(false);
  369. onMounted(() => {
  370. // 如果商品的属性只有一条,则默认选中
  371. if (propertyList.length == 1 && propertyList[0].values.length == 1) {
  372. onSelectSku(0, 0);
  373. }
  374. // 这里可以处理其他初始化逻辑,但请注意这不会接收到 onLoad 的 options 参数
  375. });
  376. // TODO 非繁人:待讨论的优化点:1)单规格,要不要默认选中;2)默认要不要选中第一个规格
  377. </script>
  378. <style lang="scss" scoped>
  379. .origin-price-text {
  380. font-size: 22rpx;
  381. font-weight: 400;
  382. color: $gray-c;
  383. font-family: OPPOSANS;
  384. background: #ffca3e;
  385. padding: 2px 8px;
  386. border-radius: 4px;
  387. display: inline-block;
  388. color: #597533;
  389. }
  390. // 购买
  391. .buy-box {
  392. padding: 10rpx 0;
  393. .add-btn {
  394. width: 356rpx;
  395. height: 80rpx;
  396. border-radius: 40rpx 0 0 40rpx;
  397. background-color: var(--ui-BG-Main-light);
  398. color: var(--ui-BG-Main);
  399. }
  400. .buy-btn {
  401. width: 356rpx;
  402. height: 80rpx;
  403. border-radius: 0 40rpx 40rpx 0;
  404. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  405. color: #fff;
  406. }
  407. .one-buy-btn {
  408. width: 98%;
  409. height: 80rpx;
  410. border-radius: 40rpx;
  411. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  412. color: #fff;
  413. }
  414. .score-btn {
  415. width: 100%;
  416. margin: 0 20rpx;
  417. height: 80rpx;
  418. border-radius: 40rpx;
  419. background: linear-gradient(90deg, var(--ui-BG-Main), var(--ui-BG-Main-gradient));
  420. color: #fff;
  421. }
  422. }
  423. .ss-modal-box {
  424. border-radius: 30rpx 30rpx 0 0;
  425. max-height: 1000rpx;
  426. .modal-header {
  427. position: relative;
  428. padding: 80rpx 20rpx 40rpx;
  429. .sku-image {
  430. width: 160rpx;
  431. height: 160rpx;
  432. border-radius: 10rpx;
  433. }
  434. .header-right {
  435. height: 160rpx;
  436. }
  437. .close-icon {
  438. position: absolute;
  439. top: 10rpx;
  440. right: 20rpx;
  441. font-size: 46rpx;
  442. opacity: 0.2;
  443. }
  444. .goods-title {
  445. font-size: 28rpx;
  446. font-weight: 500;
  447. line-height: 42rpx;
  448. }
  449. .score-img {
  450. width: 36rpx;
  451. height: 36rpx;
  452. margin: 0 4rpx;
  453. }
  454. .score-text {
  455. font-size: 30rpx;
  456. font-weight: 500;
  457. color: $red;
  458. font-family: OPPOSANS;
  459. }
  460. .price-text {
  461. font-size: 30rpx;
  462. font-weight: 500;
  463. color: $red;
  464. font-family: OPPOSANS;
  465. &::before {
  466. // content: '¥';
  467. // font-size: 30rpx;
  468. // font-weight: 500;
  469. // color: $red;
  470. }
  471. }
  472. .stock-text {
  473. font-size: 26rpx;
  474. color: #999999;
  475. }
  476. }
  477. .modal-content {
  478. padding: 0 20rpx;
  479. .modal-content-scroll {
  480. max-height: 600rpx;
  481. .label-text {
  482. font-size: 26rpx;
  483. font-weight: 500;
  484. }
  485. .buy-num-box {
  486. height: 100rpx;
  487. }
  488. .spec-btn {
  489. height: 60rpx;
  490. min-width: 100rpx;
  491. padding: 0 30rpx;
  492. background: #f4f4f4;
  493. border-radius: 30rpx;
  494. color: #434343;
  495. font-size: 26rpx;
  496. margin-right: 10rpx;
  497. margin-bottom: 10rpx;
  498. }
  499. .disabled-btn {
  500. font-weight: 400;
  501. color: #c6c6c6;
  502. background: #f8f8f8;
  503. }
  504. }
  505. }
  506. }
  507. </style>