mod(custom):
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-01 21:43:10 +08:00
parent 3782abcd2e
commit 736675608a

View File

@@ -90,7 +90,6 @@
<script setup> <script setup>
import api from './api' import api from './api'
import { NEllipsis } from 'naive-ui'
const loading = ref(false) const loading = ref(false)
@@ -141,6 +140,11 @@ const columns = ref([
align: 'center', align: 'center',
key: 'seat', key: 'seat',
}, },
{
title: '备注',
align: 'center',
key: 'notes',
},
{ {
title: '订单号', title: '订单号',
align: 'center', align: 'center',
@@ -166,10 +170,8 @@ const columns = ref([
row.OrderGoods.forEach((item) => { row.OrderGoods.forEach((item) => {
el.push( el.push(
h( h(
NEllipsis, 'div',
{ {},
style: 'max-width: 100px',
},
{ {
default: () => `${item.Goods.name}|${item.pay_price}元|X${item.number}`, default: () => `${item.Goods.name}|${item.pay_price}元|X${item.number}`,
} }
@@ -229,11 +231,6 @@ const columns = ref([
align: 'center', align: 'center',
key: 'payment_time', key: 'payment_time',
}, },
{
title: '备注',
align: 'center',
key: 'notes',
},
// { // {
// title: '操作', // title: '操作',
// align: 'center', // align: 'center',