增加部分公共样式

修改部分公共组件代码
修改台桌,代课下单逻辑代码
增加支付页面
修改用户列表页面
This commit is contained in:
2024-09-09 17:45:19 +08:00
parent da5f7ca916
commit 34853b8783
31 changed files with 1182 additions and 99 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="default-box-padding bg-fff border-r-12 u-m-t-20">
<view class="default-box-padding bg-fff border-r-12 u-m-t-20" v-if="data.length">
<view class="u-font-32">
<text></text>
<text class="color-main font-bold"> {{goodsNumber}}</text>
@@ -39,7 +39,7 @@
</view>
<view>
<text>小计</text>
<text class="font-bold u-font-32">16.00</text>
<text class="font-bold u-font-32">{{allPrice}}</text>
</view>
</view>
@@ -47,10 +47,12 @@
<view></view>
<view>
<text>总计</text>
<text class="font-bold u-font-32">16.00</text>
<text class="font-bold u-font-32">{{allPrice}}</text>
</view>
</view>
<my-button type="cancel" :color="color.ColorMain">重新打印</my-button>
<view class="u-m-t-30">
<my-button type="cancel" :color="color.ColorMain">重新打印</my-button>
</view>
</view>
</view>
</template>
@@ -86,7 +88,9 @@
width: 70rpx;
height: 70rpx;
}
.border-bottom{
border-color: rgb(240, 240, 240);
}
.tag {
padding: 2rpx 8rpx;
border-radius: 8rpx;

View File

@@ -2,7 +2,7 @@
<view class="default-box-padding bg-fff border-r-12 u-m-t-20">
<view class="u-flex u-row-between">
<view>订单状态</view>
<view>未支付</view>
<view>{{returnStatus(data.status)}}</view>
</view>
<view class="u-flex u-row-between u-m-t-20">
<view>订单类型</view>
@@ -10,7 +10,7 @@
</view>
<view class="u-flex u-row-between u-m-t-20">
<view>桌位号</view>
<view>A6</view>
<view>{{table.name}}</view>
</view>
<view class="u-flex u-row-between u-m-t-20">
<view>就餐人数</view>
@@ -28,10 +28,6 @@
<view>下单时间</view>
<view>2024-08-31 15:54:40</view>
</view>
<view class="u-flex u-row-between u-m-t-20">
<view>下单时间</view>
<view>2024-08-31 15:54:40</view>
</view>
<view class="u-flex u-row-between u-m-t-20">
<view>订单编号</view>
<view>2024083115544056362</view>
@@ -44,6 +40,23 @@
</template>
<script setup>
const props = defineProps({
data: {
type: Object,
default: () => {}
},
table:{
type: Object,
default: () => {}
}
})
const statusMap={
unpaid:'未支付'
}
function returnStatus(status){
return statusMap[status]||''
}
</script>
<style lang="scss" scoped>

View File

@@ -3,10 +3,10 @@
<user-vue></user-vue>
<view class="default-box-padding bg-fff border-r-12 u-m-t-20">
<text class="color-666">桌位号</text>
<text class="font-bold">A6</text>
<text class="font-bold">{{options.name}}</text>
</view>
<goods-list :data="orderDetail.goodsList"></goods-list>
<order-vue></order-vue>
<order-vue :data="orderDetail.info" :table="options"></order-vue>
<step-vue></step-vue>
<view style="height: 200rpx;"></view>
<view class="u-fixed bottom bg-fff ">
@@ -16,7 +16,8 @@
shape="circle" plain type="primary">加菜</my-button>
</view>
<view class="u-flex-1">
<my-button borderRadius="0 100rpx 100rpx 0" shape="circle" type="primary" >结账</my-button>
<my-button @tap="toPay" borderRadius="0 100rpx 100rpx 0" shape="circle"
type="primary">结账</my-button>
</view>
</view>
</view>
@@ -31,36 +32,76 @@
import stepVue from './components/step.vue';
import go from '@/commons/utils/go.js'
import {
onLoad,onHide
onLoad,
onShow,
onHide
} from '@dcloudio/uni-app';
import {
reactive
} from 'vue';
import OrderDetail from './page.js'
const uiPage=new OrderDetail()
setTimeout(()=>{
uiPage.setVal('user',{name:1})
},1500)
const uiPage = new OrderDetail()
setTimeout(() => {
uiPage.setVal('user', {
name: 1
})
}, 1500)
function diancan() {
go.to('PAGES_CREATE_ORDER', {
tableId: options.tableId,
tableName: options.name
})
}
const orderDetail=reactive({
goodsList:[]
function toPay() {
go.to('PAGES_CRESATE_ORDER_PAY', {
...orderDetail.info,
tableId: options.tableId,
tableName: options.name,
masterId: options.masterId,
})
}
const orderDetail = reactive({
goodsList: [],
info: {}
})
const options = reactive({})
async function init(){
const {masterId}=await Api.$getMasterId(options)
async function init() {
const {
masterId
} = await Api.$getMasterId(options)
console.log(masterId);
const {records} = await Api.getCart({
...options,masterId
options.masterId=masterId
const {
records
} = await Api.getCart({
...options,
masterId
})
orderDetail.goodsList=records
orderDetail.goodsList = records
const info = await Api.$createOrder({
masterId,
vipUserId: '',
tableId: options.tableId,
note: '',
postPay: true,
orderld: ''
})
orderDetail.info = info
}
function watchEmit(){
uni.$off('orderDetail:update')
uni.$once('orderDetail:update',(newval)=>{
console.log(newval);
init()
})
}
onShow(()=>{
watchEmit()
})
onLoad((opt) => {
Object.assign(options, opt)
console.log(options);