s-select-sku.vue 13 KB

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