|
|
@@ -267,15 +267,15 @@
|
|
|
|
|
|
<view class="option-group">
|
|
|
<view class="option-label">付款方式</view>
|
|
|
- <view class="button-group">
|
|
|
- <button @tap="forwardPayWay = 0" class="admin-button-com middle" :class="forwardPayWay == 0? 'blue' : 'default'">微信</button>
|
|
|
- <button @click="forwardPayWay = 1" class="admin-button-com middle" :class="forwardPayWay == 1 ? 'blue' : 'default'">支付宝</button>
|
|
|
- <button @tap="forwardPayWay = 4" class="admin-button-com middle" :class="forwardPayWay == 4? 'blue' : 'default'">现金</button>
|
|
|
- <button @click="forwardPayWay = 5" class="admin-button-com middle" :class="forwardPayWay == 5 ? 'blue' : 'default'">银行卡</button>
|
|
|
- </view>
|
|
|
- <view>
|
|
|
- 请线下转账给客户
|
|
|
- </view>
|
|
|
+ <view class="button-group">
|
|
|
+ <button @tap="forwardPayWay = 0" class="admin-button-com middle" :class="forwardPayWay == 0? 'blue' : 'default'">微信</button>
|
|
|
+ <button @click="forwardPayWay = 1" class="admin-button-com middle" :class="forwardPayWay == 1 ? 'blue' : 'default'">支付宝</button>
|
|
|
+ <button @tap="forwardPayWay = 4" class="admin-button-com middle" :class="forwardPayWay == 4? 'blue' : 'default'">现金</button>
|
|
|
+ <button @click="forwardPayWay = 5" class="admin-button-com middle" :class="forwardPayWay == 5 ? 'blue' : 'default'">银行卡</button>
|
|
|
+ </view>
|
|
|
+ <view class="payment-notice">
|
|
|
+ 请线下转账给客户
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<view class="popup-footer">
|
|
|
@@ -925,6 +925,16 @@ export default {
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ .payment-notice {
|
|
|
+ text-align: center;
|
|
|
+ font-size: 32upx;
|
|
|
+ color: #666;
|
|
|
+ margin-top: 20upx;
|
|
|
+ padding: 15upx 20upx;
|
|
|
+ background-color: #f5f5f5;
|
|
|
+ border-radius: 8upx;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.popup-footer {
|