s-select-sku.vue 11 KB

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