24 lines
494 B
Vue
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>
|