s-select-sku.vue 11 KB

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