完善订单

This commit is contained in:
魏啾
2024-03-07 18:29:29 +08:00
parent fc810fd02f
commit f0b7169a29
6 changed files with 61 additions and 98 deletions

View File

@@ -13,8 +13,11 @@
</div>
</div>
<div class="demo_tabs_boxitem_onetow">
<div style="width: 80%;">{{item.names && item.names.join(',') }}</div>
<div style="font-size: 16px; color: #757575;">{{ item.orderNo }}</div>
<div>
<span>{{item.names && item.names[0] }} </span>
<span style="margin-left: 6px;">{{ item.names && item.names.length }}</span>
</div>
</div>
</div>
<div class="demo_tabs_boxitem_tow">
@@ -38,7 +41,11 @@ import { dayjs } from 'element-plus'
const props = defineProps({
ordereData: {
type: Object,
default: {}
default: {
list:[{
names:[]
}]
}
}
})
const emit = defineEmits(["emititemboxshow"])
@@ -77,6 +84,9 @@ const clickitemboxshow = (e) => {
}
.demo_tabs_boxitem_onetow {
display: flex;
flex-direction: column;
justify-content: space-around;
flex: 1;
margin-left: 20px;
}