|
@@ -13,7 +13,7 @@
|
|
|
<view class="order-log">
|
|
|
<view>
|
|
|
快递公司:<text class="address-title">{{item.logName}}</text>
|
|
|
- <u-button class="btn-cont" @click="copyLogNum" style="float: right;" type="primary" shape="circle" size="mini">确认收货</u-button>
|
|
|
+ <text class="btn-cont" @click="copyLogNum" style="float: right;">确认收货</text>
|
|
|
</view>
|
|
|
<view>
|
|
|
<text>运单编号:</text>
|
|
@@ -24,7 +24,7 @@
|
|
|
<u-gap height="10" bg-color="#f8f8f8"></u-gap>
|
|
|
<view class="bundle-list" v-for="row in item.itemList" :key="row.id">
|
|
|
<view class="img-cont">
|
|
|
- <image :src="row.icon?row.icon:'../../static/tabbar/user.png'"></image>
|
|
|
+ <image :src="row.icon?row.icon:'../../static/goods.png'"></image>
|
|
|
</view>
|
|
|
<view >
|
|
|
<view class="ellipsis-two">{{row.name}}</view>
|
|
@@ -105,8 +105,6 @@
|
|
|
}
|
|
|
},
|
|
|
onLoad() {
|
|
|
- // 监听待办处理后刷新
|
|
|
- uni.$on('refreshBl-handle', this.handleRefresh)
|
|
|
this.pageInit()
|
|
|
},
|
|
|
onUnload() {
|
|
@@ -369,7 +367,6 @@
|
|
|
}
|
|
|
>view {
|
|
|
&:last-child {
|
|
|
- padding: 10upx 0;
|
|
|
flex: 1;
|
|
|
margin-left: 20upx;
|
|
|
display: flex;
|
|
@@ -385,6 +382,11 @@
|
|
|
.btn-cont {
|
|
|
width: 180upx;
|
|
|
height: 60upx;
|
|
|
+ float: right;
|
|
|
+ background-color: #2979ff;
|
|
|
+ color: #fff;
|
|
|
+ text-align: center;
|
|
|
+ border-radius: 100upx;
|
|
|
font-size: 30upx;
|
|
|
}
|
|
|
.price-text{
|