|
|
@@ -6,24 +6,24 @@
|
|
|
</view>
|
|
|
<!-- 顶部导航-end -->
|
|
|
|
|
|
- <!-- 寄售列表 -->
|
|
|
+ <!-- 寄卖列表 -->
|
|
|
<view class="con">
|
|
|
<view class="goods flex_c" v-for="(item,index) in goods" :key="index" @tap="navToSpeedUp(item,index)">
|
|
|
<view class="flex_r">
|
|
|
<image class="goods_img" :src="item.original_img" mode=""></image>
|
|
|
<view class="goods_info flex_c flex_jc">
|
|
|
<view class="goods_name ellipsis">{{item.goods_name}}</view>
|
|
|
- <view class="period">寄售数量:{{item.surplus_num}}套</view>
|
|
|
+ <view class="period">寄卖数量:{{item.surplus_num}}套</view>
|
|
|
</view>
|
|
|
<view class="goods_status flex_grow flex_r flex_je" :class="item.status === 0 ? 'g_color' : item.status == 1 ? 'g_color' : item.status == 2 ? 'y_color' : 'r_color'">
|
|
|
- {{item.status === 0 ? '寄售中' : item.status == 1 ? '寄售成功' : item.status == 2 ? '寄售失败' : '寄售转邮递'}}
|
|
|
+ {{item.status === 0 ? '寄卖中' : item.status == 1 ? '寄卖成功' : item.status == 2 ? '寄卖失败' : '寄卖转邮递'}}
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="goods_time">{{$day(item.start_sell_time*1000).format("YYYY-MM-DD HH:mm:ss")}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <!-- 寄售列表-end -->
|
|
|
- <not-goods v-if="haveGoods" textStr="暂无寄售信息"></not-goods>
|
|
|
+ <!-- 寄卖列表-end -->
|
|
|
+ <not-goods v-if="haveGoods" textStr="暂无寄卖信息"></not-goods>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
@@ -44,16 +44,16 @@ import uniPopup from '@/components/uni-popup/uni-popup.vue'
|
|
|
current: 0,
|
|
|
TabList:[
|
|
|
{title:'全部',status:0},
|
|
|
- {title:'寄售中',status:1},
|
|
|
- {title:'寄售成功',status:2},
|
|
|
- {title:'寄售失败',status:3},
|
|
|
+ {title:'寄卖中',status:1},
|
|
|
+ {title:'寄卖成功',status:2},
|
|
|
+ {title:'寄卖失败',status:3},
|
|
|
],
|
|
|
goods: [],
|
|
|
haveGoods: false, // 是否有商品
|
|
|
selectIndex:'',
|
|
|
isShow:false ,// 是否显示地址
|
|
|
DefaultAddress:'' ,// 地址
|
|
|
- pay_way:0 // 操作-0:再次寄售;1:收货
|
|
|
+ pay_way:0 // 操作-0:再次寄卖;1:收货
|
|
|
};
|
|
|
},
|
|
|
onLoad(){
|
|
|
@@ -161,7 +161,7 @@ page{background: #F4F4F4;}
|
|
|
.active{color: #1BBD89;border-bottom: 6rpx solid #1BBD89;}
|
|
|
// 顶部列表-end
|
|
|
|
|
|
-// 寄售列表
|
|
|
+// 寄卖列表
|
|
|
.goods_info{width: 300rpx;overflow: hidden;}
|
|
|
.period{font-size: 26rpx;color:#5D5C5C;margin-top: 24rpx;}
|
|
|
.goods_status{font-size: 30rpx;font-family: "SourceHanSansCN-Medium";}
|
|
|
@@ -170,7 +170,7 @@ page{background: #F4F4F4;}
|
|
|
.goods_img{width: 150rpx;height: 138.8rpx;margin-right: 36rpx;border-radius: 8rpx;}
|
|
|
.goods_name{width: 100%;overflow: hidden;font-size: 32rpx;color: #373636;font-family: "SourceHanSansCN-Medium";}
|
|
|
.goods{width: 100%;overflow: hidden;padding:24rpx 20rpx;box-sizing: border-box;background: #fff;border-radius: 12rpx;margin-bottom: 30rpx;}
|
|
|
-// 寄售列表-end
|
|
|
+// 寄卖列表-end
|
|
|
|
|
|
// 状态颜色
|
|
|
.g_color{color: #1BBD89 !important;}
|