update 完成订单 订单详情tag

Bu işleme şunda yer alıyor:
lb 2023-07-31 15:17:47 +08:00
ebeveyn 7a21e908a4
işleme 3956a0c159
4 değiştirilmiş dosya ile 662 ekleme ve 327 silme

Dosyayı Görüntüle

@ -5,8 +5,7 @@
:fullscreen="fullscreen"
:visible="visible"
@close="handleClose"
:destroy-on-close="false"
:close-on-click-modal="configs.clickModalToClose ?? false">
@closed="$emit('destroy')">
<div slot="title" style="background: #eee; padding: 8px; text-align: center; border-bottom: 1px solid #ccc">
<el-checkbox-group v-model="activeTab" @change="handleTabClick">
<el-checkbox-button :true-label="1">子订单进度</el-checkbox-button>
@ -21,7 +20,7 @@
<SubOrderDetail v-if="activeTab === 1 && order !== null" :order="order" />
<CarDetail v-if="activeTab === 2 && order !== null" :order-id="order.id" :table-layout="carLayoutKey" />
<TrayDetail v-if="activeTab === 3" />
<OrderDetailWrapper v-if="activeTab === 4" :order="order" :order-detail-configs="configs" />
<OrderDetailWrapper v-if="activeTab === 4" :order="order" />
</transition>
<!-- footer -->
@ -41,10 +40,6 @@ export default {
name: "DialogWithMenu--OrderVersion",
components: { CarDetail, OrderDetailWrapper, SubOrderDetail, TrayDetail },
props: {
configs: {
type: Object,
default: () => null,
},
fullscreen: {
type: Boolean,
default: true,
@ -102,10 +97,6 @@ export default {
handleClose() {
this.visible = false;
setTimeout(() => {
this.$emit("destroy-dialog");
}, 200);
},
},
};

Dosyayı Görüntüle

@ -26,11 +26,9 @@
<DialogWithMenu
ref="edit-dialog"
v-if="!!dialogConfigs && dialogVisible"
:configs="dialogConfigs"
v-if="dialogVisible"
@refreshDataList="getList"
@destroy-dialog="dialogVisible = false" />
<!-- :dialog-visible.sync="dialogVisible" :configs="dialogConfigs" @refreshDataList="getList" /> -->
@destroy="dialogVisible = false" />
</div>
</template>

Dosyayı Görüntüle

@ -1,7 +1,7 @@
<template>
<div style="height: 100%;">
<el-skeleton v-show="orderNotReady" />
<OrderDetail v-show="!orderNotReady" ref="order-detail-tag" :configs="orderDetailConfigs" @detail-loaded="orderNotReady = false" />
<OrderDetail v-show="!orderNotReady" ref="order-detail-tag" @detail-loaded="orderNotReady = false" />
</div>
</template>
@ -12,10 +12,6 @@ export default {
name: "OrderDetailWrapper",
components: { OrderDetail },
props: {
orderDetailConfigs: {
type: Object,
default: () => null,
},
order: {
type: Object,
default: () => null