|
|
@@ -19,6 +19,9 @@
|
|
|
<view class="call-one-btn">
|
|
|
<button class="button-com default" @click="checkResult()">查询支付结果</button>
|
|
|
</view>
|
|
|
+ <view style="margin-top:35upx;">
|
|
|
+ <button style="width:25vh;" @click="changePayWay(2)" class="admin-button-com big default">记欠款</button>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view v-else>
|
|
|
<view style="text-align:center;margin:10upx auto 10upx auto;">
|
|
|
@@ -29,13 +32,13 @@
|
|
|
<button @click="changePayWay(2)" style="margin-left:40upx;" class="admin-button-com middle" :class="payWay == 2 ? 'blue' : 'default'">欠款</button>
|
|
|
</view>
|
|
|
<image mode="widthFix" style="width:350upx;margin:0 auto;" :src="payQrCodeUrl"></image>
|
|
|
- <view style="margin-top:35upx;">
|
|
|
- <button style="width:25vh;" @click="goBack()" class="admin-button-com big default">返回首页</button>
|
|
|
- </view>
|
|
|
- <view v-if="orderInfo.orderType == 1" style="color:#CCCCCC;margin-top:20upx;">15分钟后,订单将自动变成欠款单 <text @click="cancelOrder()" style="color:#666666;margin-left:10upx;text-decoration:underline;">取消订单</text></view>
|
|
|
- <view v-else style="color:#CCCCCC;margin-top:20upx;">客户下单,15分钟后将自动取消</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view style="margin-top:35upx;">
|
|
|
+ <button style="width:25vh;" @click="goBack()" class="admin-button-com big default">返回首页</button>
|
|
|
+ </view>
|
|
|
+ <view v-if="orderInfo.orderType == 1" style="color:#CCCCCC;margin-top:20upx;">15分钟后,订单将自动变成欠款单 <text @click="cancelOrder()" style="color:#666666;margin-left:10upx;text-decoration:underline;">取消订单</text></view>
|
|
|
+ <view v-else style="color:#CCCCCC;margin-top:20upx;">客户下单,15分钟后将自动取消</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -199,7 +202,14 @@ export default {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
left: 0;
|
|
|
- width: 100vw;
|
|
|
+ /* 手机mobile屏幕小于1000px */
|
|
|
+ @media screen and (max-width: 1100px) {
|
|
|
+ width: 100vw;
|
|
|
+ }
|
|
|
+ /* 收银台cashier屏幕大于1000px */
|
|
|
+ @media screen and (min-width:1100px) {
|
|
|
+ width: 40vw;
|
|
|
+ }
|
|
|
height: 290upx;
|
|
|
background: #3385ff;
|
|
|
border-radius: 0upx 0upx 83upx 83upx;
|