diff --git a/api/store.js b/api/store.js
index 85721a5..cc981d5 100644
--- a/api/store.js
+++ b/api/store.js
@@ -144,6 +144,20 @@ export function changeCartNum(id, number) {
});
}
+/*
+ * 购物车 获取商品规格
+ * */
+export function getCartGoodAttr(id, uniqueId) {
+ return request.get(`/product/attr/${id}?uniqueId=${uniqueId}`)
+}
+
+/*
+ * 购物车 商品规格修改
+ * */
+export function cartGoodChangeAttr(data) {
+ return request.post('/cart/changeAttr', data)
+}
+
/**
* 搜索推荐关键字
*/
@@ -196,3 +210,8 @@ export function storeListApi(data) {
login: false
});
}
+
+// 商品列表
+export function getHotels(param) {
+ return request.get('/api/hotelMain/search', param, { login: false })
+}
diff --git a/api/user.js b/api/user.js
index ab4ac36..a8729e9 100644
--- a/api/user.js
+++ b/api/user.js
@@ -539,3 +539,18 @@ export function getRechargeApi() {
export function getUserCenterBanner() {
return request.get("userCenterBanner");
}
+
+
+/*
+ * 用户积分信息
+ */
+export function getUserPointInfo(param) {
+ return request.get('/user/points/info', param, { login: true })
+}
+
+/*
+ * 用户积分记录
+ */
+export function getUserPointBill(param) {
+ return request.get('/user/points/bill', param, { login: true })
+}
diff --git a/assets/css/goods.less b/assets/css/goods.less
index ed2ccdf..3b5ee89 100644
--- a/assets/css/goods.less
+++ b/assets/css/goods.less
@@ -54,8 +54,10 @@
}
.value {
+ width: 200rpx;
color: #9D9D9D;
font-size: 24rpx;
+ text-align: right;
}
.red {
@@ -180,9 +182,10 @@
.title {
width: 160rpx;
- padding: 16rpx;
- border-right: 2rpx solid #D2D2D2;
color: #ADADAD;
+ .title-cont {
+ padding: 16rpx;
+ }
}
}
@@ -191,6 +194,13 @@
}
.value {
+ width: calc(100% - 160rpx);
+ border-left: 2rpx solid #D2D2D2;
+ .value-cont {
+ padding: 16rpx;
+ }
+ }
+ .btn {
width: 100%;
padding: 16rpx;
}
diff --git a/assets/css/style.less b/assets/css/style.less
index c093901..78275cd 100644
--- a/assets/css/style.less
+++ b/assets/css/style.less
@@ -843,6 +843,8 @@ page {
}
.goodWrapper .item .text {
+ display: flex;
+ flex-flow: column;
width: 5.37*100rpx;
position: relative;
}
@@ -866,7 +868,6 @@ page {
.goodWrapper .item .text .money {
font-size: 0.26*100rpx;
- margin-top: 0.17*100rpx;
}
.goodWrapper .item .text .evaluate {
@@ -3254,6 +3255,7 @@ page {
.my-order .list .item .item-info .text .money {
text-align: right;
+ color: #333;
}
.my-order .list .item .totalPrice {
@@ -3422,7 +3424,7 @@ page {
.order-details .wrapper .item .conter {
color: #868686;
- width: 5*100rpx;
+ width: 4.5*100rpx;
text-align: right;
}
diff --git a/components/CheckboxIcon.vue b/components/CheckboxIcon.vue
index e06a8c2..1ff67c1 100644
--- a/components/CheckboxIcon.vue
+++ b/components/CheckboxIcon.vue
@@ -1,6 +1,6 @@
-
+
@@ -19,6 +19,11 @@ export default {
}
}
},
+ data() {
+ return {
+ webUrl: Object.freeze(this.$VUE_APP_RESOURCES_URL)
+ }
+ },
computed: {
isSelected: function() {
return this.defaultState
diff --git a/components/Coupons.vue b/components/Coupons.vue
index bd82d9e..fbe4d2c 100644
--- a/components/Coupons.vue
+++ b/components/Coupons.vue
@@ -1,21 +1,35 @@
-
-
+
有效期至:
{{ data.endTime }}
- 已到期
- 去使用
+
+ 已到期
+ 不可用
-
+
-
使用规则
-
+
{
+ return {}
+ }
+ },
+ // 是否显示选择框
radioModel: {
type: Boolean,
default: false
@@ -51,13 +71,10 @@ export default {
changeRules() {
this.isOpen = !this.isOpen
},
- goGoods() {
- uni.switchTab({url: '/pages/home/landMark'})
- // this.$global.navToGoods(this.data.productId)
- },
selectCoupon() {
if (!this.radioModel) return
- this.$emit('change', this.data.id)
+ // 已选中则可以取消选中
+ this.$emit('change', this.data.checked ? '' : this.data.id)
}
}
}
diff --git a/components/CouponsPopup.vue b/components/CouponsPopup.vue
index f2be69a..bacc4f7 100644
--- a/components/CouponsPopup.vue
+++ b/components/CouponsPopup.vue
@@ -2,20 +2,41 @@
@@ -26,16 +47,26 @@ import Coupons from '@/components/Coupons.vue'
export default {
name: 'CouponsPopup',
- components: {SubSection, Coupons},
+ components: { SubSection, Coupons },
props: {
twoList: {
type: Object,
- default: {}
+ default: {
+ usable: [],
+ unusable: []
+ }
+ }
+ },
+ data() {
+ return {
+ webUrl: this.$VUE_APP_RESOURCES_URL,
+ current: 0,
+ couponId: uni.getStorageSync('couponId') || 0
}
},
computed: {
list() {
- let temp = this.current === 0 ? this.twoList['usable'] : this.twoList['unusable']
+ const temp = this.current === 0 ? this.twoList['usable'] : this.twoList['unusable']
return this.$global.deepClone(temp)
},
canUse() {
@@ -45,44 +76,20 @@ export default {
return this.twoList['unusable'].length
}
},
- watch: {
- current() {
- this.selectCoupon(this.couponId)
- }
- },
- data() {
- return {
- webUrl: this.$VUE_APP_RESOURCES_URL,
- current: 0,
- couponId: 0
- }
- },
- mounted() {
- this.couponId = uni.getStorageSync('couponId') || 0
- this.selectCoupon(this.couponId)
- },
methods: {
changeNav(index) {
this.current = index
},
selectCoupon(id) {
- const isCancel = this.couponId === id
- this.couponId = isCancel ? 0 : id
-
- this.list?.forEach(item => {
- if (!isCancel) {
- item.checked = id === item.id
- } else {
- item.checked = false
- }
+ this.couponId = id
+ this.list.map(item => {
+ item.checked = id === item.id
})
},
setCoupon() {
if (this.current === 1) return
- // if (this.couponId !== 0) {
- uni.setStorageSync('couponId', this.couponId)
- // }
- this.$emit('close')
+ uni.setStorageSync('couponId', this.couponId)
+ this.$emit('change')
}
}
}
diff --git a/components/OrderGoods.vue b/components/OrderGoods.vue
index aa7d37b..8f7ddcb 100644
--- a/components/OrderGoods.vue
+++ b/components/OrderGoods.vue
@@ -1,39 +1,57 @@
-
-
-
- {{title}}
-
-
-
- 共{{ cartInfo.length }}件商品
+
+
+
+
+ {{ title }}
+
+
+
+ 共{{ cartInfo.length }}件商品
-
+
- {{ cart.productInfo.storeName }}
-
+ {{ cart.productInfo.storeName }}
-
-
- 属性:{{ cart.productInfo.attrInfo.sku }}
- 评价
-
+
+
+ 规格:{{ cart.productInfo.attrInfo.sku }}
+
+ 评价
+
- ¥{{ cart.truePrice }}
- x{{ cart.cartNum }}
-
+ ¥{{ cart.truePrice }}
+ x{{ cart.cartNum }}
+
@@ -68,21 +86,42 @@ export default {
};
diff --git a/components/ProductWindow.vue b/components/ProductWindow.vue
index 4d7f731..d339fc4 100644
--- a/components/ProductWindow.vue
+++ b/components/ProductWindow.vue
@@ -24,14 +24,14 @@
:key="indexn"
:class="{
'on': item.index == indexn,
- 'disabled': productValue[itemn.attr].stock === 0
+ 'disabled': getAttrItemData(itemn.attr).stock === 0
}"
class="itemn"
@click="tapAttr(indexw, indexn, itemn)"
>
{{ itemn.attr }}
缺货
@@ -66,18 +66,22 @@ export default {
type: Object,
default: () => {}
},
- productValue: {
- type: Object,
- default: () => {}
+ // 使用字符串再转成对象的原因是,当key='2.5g'时,会变成key='2',导致数据丢失
+ productValueStr: {
+ type: String,
+ default: '{}'
+ },
+ productValueArr: {
+ type: Array,
+ default: () => {
+ return []
+ }
},
cartNum: {
type: Number,
default: () => 1
}
},
- data: function() {
- return {};
- },
methods: {
previewImg:function(imgUrl){
uni.previewImage({
@@ -85,50 +89,55 @@ export default {
})
},
closeAttr: function() {
- this.$emit("changeFun", { action: "changeattr", value: false });
+ this.$emit("changeFun", { action: "changeattr", value: false })
},
CartNumDes: function() {
- this.$emit("changeFun", { action: "ChangeCartNum", value: false });
+ this.$emit("changeFun", { action: "ChangeCartNum", value: false })
},
CartNumAdd: function() {
- this.$emit("changeFun", { action: "ChangeCartNum", value: 1 });
+ this.$emit("changeFun", { action: "ChangeCartNum", value: 1 })
+ },
+ getAttrItemData(attr) {
+ let result = {}
+ this.productValueArr.map(item => {
+ if (item.attrItemkey === attr) {
+ result = item
+ }
+ })
+ return result
},
tapAttr: function(indexw, indexn, itemn) {
- if (this.productValue[itemn.attr].stock === 0) {
+ if (this.getAttrItemData(itemn.attr).stock === 0) {
return
}
// 修改商品规格不生效的原因:
// H5端下面写法,attr更新,但是除H5外其他端不支持,
// 尽量避免下面的骚写法,不要在子组件内更新props
// 这里修改是为了能获取到被选中的属性
- this.attr.productAttr[indexw].index = indexn;
- let that = this;
- let value = that
- .getCheckedValue()
- .sort()
- .join(",");
- that.$emit("changeFun", {
+ this.attr.productAttr[indexw].index = indexn
+ const value = this.getCheckedValue().sort().join(",")
+ this.$emit("changeFun", {
action: "ChangeAttr",
value: {
value,
indexw,
indexn
}
- });
+ })
},
- //获取被选中属性;
+ // 获取被选中属性
getCheckedValue: function() {
- let productAttr = this.attr.productAttr;
- let value = [];
+ const productAttr = this.attr.productAttr
+ const value = []
for (let i = 0; i < productAttr.length; i++) {
for (let j = 0; j < productAttr[i].attrValueArr.length; j++) {
if (productAttr[i].index === j) {
- value.push(productAttr[i].attrValueArr[j]);
+ value.push(productAttr[i].attrValueArr[j])
}
}
}
- return value;
+ return value
}
}
-};
+}
diff --git a/components/UserEvaluation.vue b/components/UserEvaluation.vue
index 7e6195b..dcd21d2 100644
--- a/components/UserEvaluation.vue
+++ b/components/UserEvaluation.vue
@@ -1,9 +1,9 @@
@@ -17,8 +17,21 @@
{{ item.createTime }} {{ item.sku||'' }}
{{ item.comment }}
-
-
+
+
+
+
+
diff --git a/components/good/NoData.vue b/components/good/NoData.vue
index 4562662..f00a2cb 100644
--- a/components/good/NoData.vue
+++ b/components/good/NoData.vue
@@ -1,13 +1,28 @@
-
+
+
diff --git a/pages/activity/DargainDetails/index.vue b/pages/activity/DargainDetails/index.vue
deleted file mode 100644
index 65f6343..0000000
--- a/pages/activity/DargainDetails/index.vue
+++ /dev/null
@@ -1,617 +0,0 @@
-
-
-
-
- {{ lookCount }}人查看 丨 {{ shareCount }}人分享 丨 {{ userCount }}人参与
-
-
-
-
-
-
- {{ bargainUserInfo.nickname }}
- 邀请您帮忙砍价
-
-
-
-
-
-
-
-
-
- 查看商品
-
-
-
-
-
-
- 已砍至: ¥
-
-
-
-
-
-
-
-
-
-
-
-
-
- 砍价成功
-
-
-
-
- 已成功帮助好友砍价
-
-
-
- 恭喜您砍价成功,快去支付吧~
-
- 立即参与砍价
- 邀请好友帮砍价
- 帮好友砍一刀
- 我也要参与
- 立即支付
- 抢更多商品
-
- 已有
-
- 位好友成功帮您砍价
-
-
-
-
-
-
-
-
- 砍价帮
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 砍掉{{ item.price }}元
-
-
-
- 点击加载更多
-
-
-
-
-
-
-
- 商品详情
-
-
-
-
-
-
-
-
-
-
-
-
- 活动规则
-
-
-
-
-
-
-
-
-
- 您已砍掉
- 元,听说分享次数越多砍价成功的机会越大哦!
-
-
- ,您也可以砍价低价拿哦,快去挑选心仪的商品吧~
-
- 邀请好友帮砍价
- 我也要参与
-
-
-
-
-
-
-
diff --git a/pages/activity/GoodsBargain/index.vue b/pages/activity/GoodsBargain/index.vue
deleted file mode 100644
index 8a7bf1c..0000000
--- a/pages/activity/GoodsBargain/index.vue
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item.people }}人正在参与
-
-
- 可砍至: ¥
- {{item.minPrice}}
-
-
-
- 参与砍价
-
-
- 点击加载更多
-
-
-
-
-
-
diff --git a/pages/activity/GoodsGroup/index.vue b/pages/activity/GoodsGroup/index.vue
deleted file mode 100644
index 191b4ea..0000000
--- a/pages/activity/GoodsGroup/index.vue
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ¥
-
-
-
-
- 去拼团
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/activity/GoodsSeckill/index.vue b/pages/activity/GoodsSeckill/index.vue
deleted file mode 100644
index beb0950..0000000
--- a/pages/activity/GoodsSeckill/index.vue
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
-
-
-
-
- {{ item.time }}
- {{ item.state }}
-
-
- {{ item.time }}
- {{ item.state }}
-
-
-
-
-
-
-
- 活动已结束
-
- 活动即将开始
-
-
-
-
-
-
-
-
-
- 限时价
-
-
-
-
-
-
-
- 马上抢
-
- 已售磬
- 即将开始
- 已结束
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/activity/GroupDetails/index.vue b/pages/activity/GroupDetails/index.vue
deleted file mode 100644
index 03e9788..0000000
--- a/pages/activity/GroupDetails/index.vue
+++ /dev/null
@@ -1,375 +0,0 @@
-
-
-
-
-
-
- ¥
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 已拼{{ storeInfo.sales
- }}{{ storeInfo.unitName }}
- |
-
-
-
-
-
- {{ item }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 还差
-
- 人成团
-
-
-
-
- 去拼单
-
-
-
-
-
-
- 查看更多
-
-
-
-
-
- 拼团玩法
-
-
-
- ①开团/参团
-
-
-
- ②邀请好友
-
-
-
-
- ③满员发货
-
-
-
-
-
-
-
-
- 好评率
-
-
-
-
-
-
- 产品介绍
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/activity/GroupRule/index.vue b/pages/activity/GroupRule/index.vue
deleted file mode 100644
index 58ddb8f..0000000
--- a/pages/activity/GroupRule/index.vue
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-
-
- 剩余
-
- 结束
-
-
-
-
- 恭喜您拼团成功
- 还差{{ count }}人,拼团失败
- 拼团中,还差{{ count }}人拼团成功
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ iShidden ? "收起" : "查看全部" }}
-
-
- 邀请好友参团
- 我要参团
- 再次开团
-
-
- 取消开团
-
-
- 查看订单信息
-
-
-
-
-
-
-
-
diff --git a/pages/activity/Poster/index.vue b/pages/activity/Poster/index.vue
deleted file mode 100644
index d1e01cb..0000000
--- a/pages/activity/Poster/index.vue
+++ /dev/null
@@ -1,79 +0,0 @@
-
-
-
- 提示:长按图片保存至手机相册
-
-
-
-
-
-
-
-
-
diff --git a/pages/activity/SeckillDetails/index.vue b/pages/activity/SeckillDetails/index.vue
deleted file mode 100644
index 10e84f4..0000000
--- a/pages/activity/SeckillDetails/index.vue
+++ /dev/null
@@ -1,235 +0,0 @@
-
-
-
-
-
- ¥
-
-
-
-
-
- 距秒杀结束仅剩
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 产品介绍
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/cart.vue b/pages/cart.vue
index 5d85340..9a9ae25 100644
--- a/pages/cart.vue
+++ b/pages/cart.vue
@@ -1,105 +1,255 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ item['merName'] }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ item['merName'] }}
+
+
+ 进店逛逛
+
+
-
- 进店逛逛
-
+
+
+
+
+
+
+ {{ good['productInfo']['storeName'] }}
+
+ 规格:{{ good['productInfo']['attrInfo']['sku'] }}
+
+
+
+ ¥
+ {{ good['truePrice'] }}
+
+ changeNumHandle(index, gIndex, good, e)"
+ >
+
+
+
+
+
+
+ {{ good['cartNum'] }}
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
- {{ goods['productInfo']['storeName'] }}
-
- 规格:{{ goods['productInfo']['attrInfo']['sku'] }}
-
-
-
- ¥
- {{ goods['truePrice'] }}
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ currGood.productInfo.storeName }}
+
+
+ ¥{{ currGoodAttr.price }}
+
-
-
-
-
-
-
-
- {{ goods['cartNum'] }}
-
-
-
-
-
-
-
+
+
+
+
+ {{ item.attrName }}
+
+
+ {{ attr.attr }}
+ 缺货
+
+
+
+
+
+
+ 确认
-
-
-
+
-
diff --git a/pages/orderAdmin/AdminOrderList/index.vue b/pages/orderAdmin/AdminOrderList/index.vue
deleted file mode 100644
index f069b1a..0000000
--- a/pages/orderAdmin/AdminOrderList/index.vue
+++ /dev/null
@@ -1,330 +0,0 @@
-
-
-
- 待付款
- 待发货
- 待收货
- 待评价
- 已完成
- 退款
-
-
-
-
- 订单号:{{ item.orderId }}
-
- 下单时间:
-
-
-
-
-
-
-
-
-
-
- {{ val.productInfo.storeName }}
- {{ val.productInfo.sku }}
-
-
-
- ¥{{ val.productInfo.price }}
- x{{ val.cartNum }}
- ¥{{ val.productInfo.otPrice }}
-
-
-
-
- 共{{ item.totalNum }}件商品,应支付
- ¥{{ item.payPrice }}
- ( 邮费 ¥{{
- item.totalPostage
- }}
- )
-
-
-
-
-
-
-
-
-
-
-
-
- 一键改价
- 立即退款
- 确认付款
- 去发货
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/orderAdmin/GoodsDeliver/index.vue b/pages/orderAdmin/GoodsDeliver/index.vue
deleted file mode 100644
index 8b65932..0000000
--- a/pages/orderAdmin/GoodsDeliver/index.vue
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
- 订单号:{{ delivery.orderId }}
- {{ delivery.nickname }}
-
-
-
- {{ delivery.realName }}
- {{ delivery.userPhone }}
-
- {{ delivery.userAddress }}
-
-
-
-
-
-
-
- 发货方式
-
-
- {{ item.title }}
-
-
-
-
-
-
-
- 快递公司
-
-
-
-
-
- 快递单号
-
-
-
-
-
- 送货人
-
-
-
- 送货电话
-
-
-
-
-
- 确认提交
-
-
-
diff --git a/pages/orderAdmin/OrderCancellation/index.vue b/pages/orderAdmin/OrderCancellation/index.vue
deleted file mode 100644
index 5cd553e..0000000
--- a/pages/orderAdmin/OrderCancellation/index.vue
+++ /dev/null
@@ -1,184 +0,0 @@
-
-
-
-
-
-
-
- 立即核销
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/orderAdmin/OrderIndex/index.vue b/pages/orderAdmin/OrderIndex/index.vue
deleted file mode 100644
index be5faaa..0000000
--- a/pages/orderAdmin/OrderIndex/index.vue
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
- 数据统计
-
-
-
- {{ census.orderTimeCount.todayPrice }}
- 今日成交额
-
-
- {{ census.orderTimeCount.proPrice }}
- 昨日成交额
-
-
- {{ census.orderTimeCount.monthPrice }}
- 本月成交额
-
-
- {{ census.orderTimeCount.todayCount }}
- 今日订单数
-
-
- {{ census.orderTimeCount.proCount }}
- 昨日订单数
-
-
- {{ census.orderTimeCount.monthCount }}
- 本月订单数
-
-
-
-
-
- 详细数据
-
-
- 日期
- 订单数
- 成交额
-
-
-
- {{ item.time }}
- {{ item.count }}
- {{ item.price }}
-
-
-
-
-
-
-
diff --git a/pages/orderAdmin/Statistics/index.vue b/pages/orderAdmin/Statistics/index.vue
deleted file mode 100644
index c51f9fe..0000000
--- a/pages/orderAdmin/Statistics/index.vue
+++ /dev/null
@@ -1,446 +0,0 @@
-
-
-
-
- 今天
- 昨天
- 最近7天
- 本月
-
-
-
- {{ title }}{{ this.where.type == 1 ? "营业额(元)" : "订单量(份)" }}
- {{ time_price }}
-
-
-
-
- 详细数据
-
-
- 日期
- 订单量
- 成交额
-
-
-
- {{ item.time }}
- {{ item.count }}
- {{ item.price }}
-
-
-
-
-
-
-
-
-
-
diff --git a/pages/shop/GoodSearch/index.vue b/pages/shop/GoodSearch/index.vue
index 70af129..e024bae 100644
--- a/pages/shop/GoodSearch/index.vue
+++ b/pages/shop/GoodSearch/index.vue
@@ -5,8 +5,9 @@
@@ -15,7 +16,17 @@
- 历史搜索
+
+ 历史搜索
+
+
{
+ if (result.confirm) {
+ _this.historyKey = []
+ uni.setStorageSync('historyKey', JSON.stringify([]))
+ }
+ }
+ })
}
}
-};
+}
+
diff --git a/pages/shop/GoodsList/index.vue b/pages/shop/GoodsList/index.vue
index 1763cd3..711d728 100644
--- a/pages/shop/GoodsList/index.vue
+++ b/pages/shop/GoodsList/index.vue
@@ -1,309 +1,322 @@
-
+
-
-
+
+
+ {{ title ? title : "默认" }}
+ @click="searchTypeItemClick(item)"
+ >
+ {{ item.text }}
+
-
- 价格
-
-
-
-
-
- 销量
-
-
-
-
-
- 新品
-
+
+ 综合
+
+
+
+ 价格
+
+
+
+
+
+ 销量
+
+
+
+
+
+
+
+
-
-
-
-
- {{ item.storeName }}
-
-
-
-
- ¥
- {{ force2Decimal(item.vipPrice) }}
- {{ force2Decimal(item.price) }}
+ @click="goGoodsCon(item.id)"
+ >
+
+
+
+
+ {{ item.storeName }}
+
+
+
+ ¥
+ {{ force2Decimal(item.vipPrice) }}
+ {{ force2Decimal(item.price) }}
+
+ ¥{{ force2Decimal(item.otPrice) }}
- ¥{{ force2Decimal(item.otPrice) }}
+ 已售{{ item.sales }}件
- 已售{{ item.sales }}件
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
+ {{ item.typeName }}
+
+
+
+
+
+ {{ item.tips || ' ' }}
+
+ 进店
+
+
+
+
+
+
+
+ ¥
+ {{ force2Decimal(good.productPrice) }}
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
diff --git a/pages/user/User/index.vue b/pages/user/User/index.vue
index faaed09..25c4a51 100644
--- a/pages/user/User/index.vue
+++ b/pages/user/User/index.vue
@@ -57,7 +57,7 @@
余额
-
+
{{ userInfo.integral || 0 }}
diff --git a/pages/user/promotion/CommissionDetails/index.vue b/pages/user/promotion/CommissionDetails/index.vue
index f7539c2..1bcaa48 100644
--- a/pages/user/promotion/CommissionDetails/index.vue
+++ b/pages/user/promotion/CommissionDetails/index.vue
@@ -111,3 +111,10 @@ export default {
}
};
+
diff --git a/pagesInn/inn/innApply.vue b/pagesInn/inn/innApply.vue
index af35022..c91e1f9 100644
--- a/pagesInn/inn/innApply.vue
+++ b/pagesInn/inn/innApply.vue
@@ -216,7 +216,7 @@