更新订单相关页面样式

This commit is contained in:
YeMingfei666 2024-10-18 16:45:01 +08:00
parent f44cf801e8
commit 86240ee89d
3 changed files with 12 additions and 9 deletions

View File

@ -169,7 +169,7 @@
</view> </view>
</view> </view>
<template v-if="item.note"> <template v-if="item.note">
<view class="u-p-20 bg-gray u-m-t-10"> <view class="u-p-20 bg-gray u-m-t-16">
{{item.note}} {{item.note}}
</view> </view>
</template> </template>

View File

@ -1,16 +1,16 @@
<template> <template>
<view class="default-box-padding bg-fff border-r-24 u-m-t-32" v-if="data.length"> <view class="default-box-padding bg-fff border-r-24 u-m-t-32" v-if="data.length">
<view class=" font-bold u-p-b-32 border-bottom"> <view class=" font-bold u-p-b-32 border-bottom u-m-b-24" v-if="orderInfo.tableName">
<text class="">桌号</text> <text class="">桌号</text>
<text class="">{{orderInfo.tableName||""}}</text> <text class="">{{orderInfo.tableName||""}}</text>
</view> </view>
<view class=" u-m-t-24 color-999 border-bottom u-p-b-24"> <view class=" color-999 border-bottom u-p-b-24">
<text></text> <text></text>
<text class="color-333 "> {{goodsNumber}}</text> <text class="color-333 "> {{goodsNumber}}</text>
<text>份菜品</text> <text>份菜品</text>
</view> </view>
<view class="u-m-b-20 u-m-t-24" v-for="(order,orderIndex) in data" :key="orderIndex"> <view class="u-m-b-20 " v-for="(order,orderIndex) in data" :key="orderIndex">
<view class=""> {{ order.placeNum }}次下单 <view class="u-p-t-24"> {{ order.placeNum }}次下单
</view> </view>
<view class="u-m-t-24 list"> <view class="u-m-t-24 list">
<view class="item u-m-b-32" v-for="(item,index) in order.info" :key="index"> <view class="item u-m-b-32" v-for="(item,index) in order.info" :key="index">

View File

@ -32,10 +32,13 @@
<view>订单编号</view> <view>订单编号</view>
<view>{{data.orderNo}}</view> <view>{{data.orderNo}}</view>
</view> </view>
<!-- <view class="u-flex u-row-between u-m-t-24"> <view class="u-flex u-row-between u-m-t-24 u-col-top">
<view>商家备注</view> <view class="no-wrap">商家备注</view>
<my-button plain shape="circle" :width="160" :height="60">编辑</my-button> <view class="u-p-l-32 " style="max-width: 522rpx; word-wrap: break-word;">
</view> --> {{data.remark}}
</view>
<!-- <my-button plain shape="circle" :width="160" :height="60">编辑</my-button> -->
</view>
</view> </view>
</template> </template>