s-select-sku.vue 11 KB

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