s-select-sku.vue 16 KB

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