s-select-sku.vue 15 KB

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