购物车一半
This commit is contained in:
parent
79afb38a63
commit
4c489c632b
@ -1,4 +1,5 @@
|
|||||||
// components/shopping/shoppingitem/shoppingitem.js
|
// components/shopping/shoppingitem/shoppingitem.js
|
||||||
|
import {request} from "../../../utils/bin"
|
||||||
Component({
|
Component({
|
||||||
/**
|
/**
|
||||||
* 组件的属性列表
|
* 组件的属性列表
|
||||||
@ -7,14 +8,16 @@ Component({
|
|||||||
shopname: String,
|
shopname: String,
|
||||||
shopdesc: String,
|
shopdesc: String,
|
||||||
price: Number,
|
price: Number,
|
||||||
pic: String
|
pic: String,
|
||||||
|
gid:Number,
|
||||||
|
num:Number
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 组件的初始数据
|
* 组件的初始数据
|
||||||
*/
|
*/
|
||||||
data: {
|
data: {
|
||||||
num: 5
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -25,15 +28,31 @@ Component({
|
|||||||
if (this.data.num == 0) {
|
if (this.data.num == 0) {
|
||||||
return
|
return
|
||||||
} else {
|
} else {
|
||||||
this.setData({
|
request({
|
||||||
num: this.data.num - 1
|
url:"Cart/updateNum",
|
||||||
|
urldata:{
|
||||||
|
id:this.data.gid,
|
||||||
|
num:this.data.num - 1
|
||||||
|
}
|
||||||
|
}).then((res)=>{
|
||||||
|
this.setData({
|
||||||
|
num: this.data.num - 1
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
add() {
|
add() {
|
||||||
|
request({
|
||||||
this.setData({
|
url:"Cart/updateNum",
|
||||||
num: this.data.num + 1
|
urldata:{
|
||||||
|
id:this.data.gid,
|
||||||
|
num:this.data.num + 1
|
||||||
|
}
|
||||||
|
}).then((res)=>{
|
||||||
|
this.setData({
|
||||||
|
num: this.data.num + 1
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<view class="shopping">
|
<view class="shopping">
|
||||||
<view class="item" wx:for="{{list}}" wx:for-index="j" wx:key="{{j}}">
|
<view class="item" wx:for="{{list}}" wx:for-index="j" wx:key="{{j}}">
|
||||||
<shopping-item shopname="{{item.goods_name}}" shopdesc="{{item.spec_key_name||'默认规格'}}" price="{{item.goods_price}}" pic="{{item.image}}"></shopping-item>
|
<shopping-item shopname="{{item.goods_name}}" shopdesc="{{item.spec_key_name||'默认规格'}}" price="{{item.goods_price}}" pic="{{item.image}}" num="{{item.goods_num}}" gid="{{item.id}}"></shopping-item>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="item">
|
<!-- <view class="item">
|
||||||
<shopping-item shopname="J`adore - Dior" shopdesc="30支 1.30kg" price="61.78"></shopping-item>
|
<shopping-item shopname="J`adore - Dior" shopdesc="30支 1.30kg" price="61.78"></shopping-item>
|
||||||
|
Loading…
Reference in New Issue
Block a user