Files
tms-erp-web/src/views/business/waybill-import.vue
T
2026-09-16 23:43:12 +08:00

24 lines
494 B
Vue

<template>
<basic-container class="waybill-import-page-container">
<waybill-import-dialog standalone />
</basic-container>
</template>
<script setup>
import WaybillImportDialog from './components/waybill-import-dialog.vue';
</script>
<style scoped lang="scss">
.waybill-import-page-container {
:deep(.basic-container__card) {
background: transparent;
border: none;
box-shadow: none;
}
:deep(.basic-container__card > .el-card__body) {
padding: 0;
}
}
</style>