|
@@ -270,7 +270,7 @@
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
|
|
|
- <u-popup :show="showWl" :round="10" mode="center" @close="showWl = false">
|
|
|
+ <u-popup :show="showWl" @close="showWl = false">
|
|
|
<view>
|
|
|
<u--input
|
|
|
placeholder="请输入物流单号"
|
|
@@ -278,7 +278,8 @@
|
|
|
clearable
|
|
|
v-model="wlNo"
|
|
|
></u--input>
|
|
|
- <u-button class="custom-style" text="提交" @click="bindLogistics"></u-button>
|
|
|
+ <u-button text="取消" @click="showWl = false"></u-button>
|
|
|
+ <u-button class="bind-wl" text="提交" @click="bindLogistics"></u-button>
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
|
|
@@ -1415,7 +1416,12 @@ export default {
|
|
|
line-height: 28rpx;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ bind-wl {
|
|
|
+ width: 90%;
|
|
|
+ height: 84rpx;
|
|
|
+ background: #B42A3E;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|