s-select-sku.vue 15 KB

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