|
@@ -57,6 +57,11 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
+ <view class="op-area">
|
|
|
+<!-- <button v-if="item.status == 3" class="action-btn" @click="cancelOrder(item.afterSalesNo)">上传物流单号</button>-->
|
|
|
+ <button class="action-btn" @click="cancelOrder(item.afterSalesNo)">上传物流单号</button>
|
|
|
+ </view>
|
|
|
+
|
|
|
</view>
|
|
|
|
|
|
</mescroll-uni>
|
|
@@ -134,17 +139,14 @@
|
|
|
size: 10,
|
|
|
state:this.index
|
|
|
}
|
|
|
-
|
|
|
getUserAfterSalesList(httpData).then((res) => {
|
|
|
-
|
|
|
//联网成功的回调,隐藏下拉刷新和上拉加载的状态;
|
|
|
this.mescroll.endSuccess(res.data.records.length,res.data.records.length === 10);
|
|
|
//设置列表数据
|
|
|
if (page.num === 1) this.list = []; //如果是第一页需手动制空列表
|
|
|
if (res.data.records.length > 0){
|
|
|
- this.list = this.list.concat(res.data.records.redias); //追加新数据
|
|
|
+ this.list = this.list.concat(res.data.records); //追加新数据
|
|
|
}
|
|
|
- console.log("+++++++++++++++++++++",this.list)
|
|
|
}).catch((err) => {
|
|
|
//联网失败, 结束加载
|
|
|
this.mescroll.endErr();
|
|
@@ -170,4 +172,26 @@
|
|
|
<style>
|
|
|
@import '/static/css/common.css';
|
|
|
@import './index.rpx.css';
|
|
|
+
|
|
|
+ .op-area {
|
|
|
+ height: 120 rpx;
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ line-height: 120 rpx;
|
|
|
+ padding: 20 rpx 0;
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+
|
|
|
+ .action-btn {
|
|
|
+ min-width: 200rpx;
|
|
|
+ background: #FFF7F8;
|
|
|
+ border-radius: 32rpx;
|
|
|
+ border: 2rpx solid #B22338;
|
|
|
+ margin-right: 30rpx;
|
|
|
+ height: 64rpx;
|
|
|
+ font-size: 24rpx;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #B22338;
|
|
|
+ line-height: 64rpx;
|
|
|
+ }
|
|
|
</style>
|