123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <template>
- <popup-bottom :show="show" @close="closeSkuBox">
- <view class="sku-box" :style="{paddingBtoom:isIphoneX ? '188rpx' : '120px'}">
- <view class="sku-header container">
- <image class="goods-img" :src="selectSkuInfo[cbImage]"></image>
- <view class="sku-goods-info">
- <view class="money" :style="{color:themeColor}">
- <text class="symbol fs-26">¥</text>
- <text class="amount fs-38">{{selectSkuInfo[cbPrice] | toFixed2}}</text>
- </view>
- <view class="stock fs-24">
- 库存{{selectSkuInfo[cbStock]}}件
- </view>
- <view class="fs-24">
- 已选:"{{selectSkuInfo[cbValue]}}"
- </view>
- </view>
- </view>
- <view class="sku-item container" v-for="(sku,sIndex) in mySpecifications" :key="sku[speId]">
- <view class="sku-name">{{sku[speName]}}</view>
- <view class="sku-content">
- <text
- class="sku-content-item"
- v-for="(item,index) in sku[speList]"
- :key="index"
- :style="{
- border: index===sku.sidx?`${borderWidth}px solid ${themeColor}`:`${borderWidth}px solid transparent`,
- color:index===sku.sidx?themeColor:'#333',
- backgroundColor: index===sku.sidx?'#FFFFFF':'#f5f5f5' }"
- @click="selectSku(sIndex,index)"
- >{{item}}</text>
- </view>
- </view>
- <view class="sku-item container count">
- <view class="sku-name">数量</view>
- <view class="count-box">
- <text class="minus" :class="{disabled:buyCount<=1}" @click="handleBuyCount('minus')">-</text>
- <input class="count-content" v-model="buyCount" :disabled="selectSkuInfo[cbStock]<=0"/>
- <text class="add" :class="{disabled:buyCount>=selectSkuInfo[cbStock]}" @click="handleBuyCount('add')">+</text>
- </view>
- </view>
- <view class="tui-right-flex tui-popup-btn" :style="{bottom:isIphoneX ? '20rpx' : '0'}">
- <view class="tui-flex-1"><tui-button height="72rpx" :size="28" type="danger" shape="circle" @click="handleConfirm('add')">加入购物车</tui-button></view>
- <view class="tui-flex-1"><tui-button height="72rpx" :size="28" type="warning" shape="circle" @click="handleConfirm('buy')">立即购买</tui-button></view>
- </view>
- </view>
- </popup-bottom>
- </template>
- <script>
- import PopupBottom from './popup-bottom'
- export default {
- components:{
- PopupBottom
- },
- filters: {
- toFixed2: function (value) {
- if(!value) return '0.00'
- return Number(value).toFixed(2)
- }
- },
- props: {
- show: {
- type: Boolean,
- default: false
- },
- themeColor: {
- type: String,
- default: '#1ac792'
- },
- combinations: {
- type: Array,
- default(){
- return []
- }
- },
- specifications: {
- type: Array,
- default(){
- return []
- }
- },
- defaultSelectIndex: {
- type: Number,
- default: 0
- },
- combinationsProps: {
- type: Object,
- default(){
- return {
- id: 'id',
- value: 'value',
- image: 'image',
- price: 'price',
- stock: 'stock'
- }
- }
- },
- specificationsProps: {
- type: Object,
- default(){
- return {
- id: 'id',
- list: 'list',
- name: 'name'
- }
- }
- },
- },
- data() {
- return {
- isIphoneX:this.$store.state.isIphoneX,
- buyCount: 1,
- selectedIndex: 0,
- borderWidth: uni.upx2px(2),
- mySpecifications: [],
- selectSkuInfo: {},
- cbStockNone:false
- }
- },
- watch:{
- specifications(val){
- this.initSkuData()
- }
- },
- computed: {
- speId() {
- return this.specificationsProps.id
- },
- speList() {
- return this.specificationsProps.list
- },
- speName() {
- return this.specificationsProps.name
- },
- cbValue() {
- return this.combinationsProps.value
- },
- cbImage() {
- return this.combinationsProps.image
- },
- cbPrice() {
- return this.combinationsProps.price
- },
- cbStock() {
- return this.combinationsProps.stock
- }
- },
- created() {
- console.log(this.combinationsProps)
- // if(this.specifications.length) {
- this.initSkuData()
- // }
- },
- methods: {
- initSkuData() {
- this.selectedIndex = this.defaultSelectIndex
- console.log(this.combinations)
- this.selectSkuInfo = this.combinations[this.selectedIndex]
- this.mySpecifications = JSON.parse(JSON.stringify(this.specifications))
- console.log(this.mySpecifications)
- this.mySpecifications.forEach((item,idx) => {
- //当前规格组合值
- const selects = this.combinations[this.selectedIndex][this.cbValue].split(',')
- //每类规格对应其列表的下标 并记录在属性sidx在mySpecifications的子对象中
- const sIndex = item[this.speList].indexOf(selects[idx])
- this.$set(item,'sidx',sIndex>-1?sIndex:0)
- })
- },
- selectSku(sIndex,index) {
- this.mySpecifications[sIndex].sidx = index
- const selectInfo = this.mySpecifications.reduce((prev,cur) => {
- if(prev) {
- return prev+','+cur[this.speList][cur.sidx]
- }else {
- return cur[this.speList][cur.sidx]
- }
- },'')
- this.selectedIndex = this.combinations.findIndex(item => item[this.cbValue] === selectInfo)
- this.selectSkuInfo = this.combinations[this.selectedIndex]
- // if(this.selectSkuInfo[this.cbStock] === 0) {
- // this.buyCount = 0
- // }
- if(this.selectSkuInfo[this.cbStock] !== 0 && this.buyCount*1 === 0) {
- this.buyCount = 1
- }
- },
- handleBuyCount(type) {
- if(type === 'minus') {
- if(this.buyCount <= 1) return
- this.buyCount = this.buyCount*1 - 1
- }
- if(type === 'add') {
- if(this.buyCount >= this.selectSkuInfo[this.cbStock]) return
- this.buyCount = this.buyCount*1 + 1
- }
- },
- closeSkuBox() {
- this.$emit('close')
- },
- handleConfirm(type) {
- const result = this.selectSkuInfo
- result.count = this.buyCount*1
- let data = { type:type ,result:result}
- this.$emit('confirm', data)
- }
- }
- }
- </script>
- <style>
- page {
- font-size: 28upx;
- color: #333333;
- }
- </style>
- <style lang="scss" scoped>
- @mixin flex-center {
- display: flex;
- align-items: center;
- }
- @mixin flex-center-center {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- $font-color-light: #999999;
- $page-bg-color-grey: #f5f5f5;
- .fs-24 {
- font-size: 24upx;
- }
- .fs-26 {
- font-size: 26upx;
- }
- .fs-38 {
- font-size: 38upx;
- }
- .container {
- width: 690upx;
- margin: 0 auto;
- }
- .sku-box {
- min-height: 500upx;
- background-color: #FFFFFF;
- padding-bottom: 120upx;
- .sku-header {
- display: flex;
- padding: 40upx 0 20upx;
- .goods-img {
- width: 200upx;
- height: 200upx;
- border-radius: 6upx;
- border: 4upx solid #FFFFFF;
- flex: none;
- margin-top: -80upx;
- }
- }
- .sku-goods-info {
- margin-left: 20upx;
- .money {
- border: none;
- padding-bottom: 0;
- }
- .stock {
- color: $font-color-light;
- }
- }
- .sku-item {
- padding: 30upx 0;
- .sku-name {
- font-size: 30upx;
- }
- .sku-content {
- border-bottom: 2upx solid $page-bg-color-grey;
- padding: 20upx 0;
- @include flex-center;
- flex-wrap: wrap;
- .sku-content-item {
- padding: 16upx 20upx;
- border-radius: 6upx;
- margin: 0 30upx 20upx 0;
- }
- }
- &.count {
- @include flex-center;
- justify-content: space-between;
- .count-box {
- @include flex-center;
- text,.count-content {
- @include flex-center-center;
- width: 70upx;
- height: 70upx;
- font-size: 32upx;
- border: 2upx solid $page-bg-color-grey;
- }
- .add,.minus {
- font-size: 44upx;
- }
- .count-content {
- border-width: 2upx 0;
- text-align: center;
- }
- }
- }
- }
- .confirm-btn {
- @include flex-center-center;
- height: 80upx;
- border-radius: 80upx;
- color: #FFFFFF;
- font-size: 32upx;
- margin-top: 10upx;
- }
- }
- [class*=disabled] {
- color: $font-color-light;
- opacity: .7;
- }
- .tui-right-flex {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .tui-popup-btn {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: 0;
- z-index: 9999;
- }
- .tui-flex-1 {
- flex: 1;
- padding: 16rpx;
- }
- </style>
|