|
@@ -13,11 +13,11 @@
|
|
|
</view>
|
|
|
<view class="money">
|
|
|
<text>¥</text>
|
|
|
- <text>{{item.goods.money}}</text>
|
|
|
+ <text>{{item.goods.sell_money}}</text>
|
|
|
</view>
|
|
|
<view class="other">
|
|
|
<view class="other_1">
|
|
|
- {{item.goods.num||0}}人评价
|
|
|
+ {{item.goods.view_num||0}}人浏览
|
|
|
</view>
|
|
|
<view class="other_2">
|
|
|
<text @click="toDel(item)" class="iconfont icon-del"></text>
|
|
@@ -52,7 +52,10 @@
|
|
|
// 详细信息
|
|
|
toView(e) {
|
|
|
const that = this;
|
|
|
- console.log(e);
|
|
|
+ that.clearPage();
|
|
|
+ uni.navigateTo({
|
|
|
+ url: `/pagesHome/order/detail?id=${e.goods._id}`
|
|
|
+ })
|
|
|
},
|
|
|
// 删除
|
|
|
toDel(e) {
|