新增综合收银台

This commit is contained in:
唐明明
2023-07-11 17:26:07 +08:00
parent 375448411f
commit 6d1382e2c5
6 changed files with 481 additions and 58 deletions

View File

@@ -1,7 +1,7 @@
<template>
<view class="content">
<!-- tabs -->
<u-sticky bgColor="#FFF" zIndex="9" >
<u-sticky bgColor="#FFF" zIndex="9" customNavHeight="0" >
<view class="screen-flex">
<view class="screen-picker">
<picker :range="statusArr" range-key="title" :value="statusIndex" @change="onPickerChange($event, 'statusIndex')">
@@ -231,17 +231,12 @@
},
// 订单支付
onPay(obj){
let { order_id, order_type, price } = obj
console.log(obj)
this.$Router.replace({
name: 'FeePay',
let { order_id, order_type } = obj
this.$Router.push({
name: 'Pay',
params: {
orderId : order_id,
orderType : order_type,
price : price,
payForm : 'entrust',
orderType : order_type
}
})
}