39 lines
801 B
Vue
39 lines
801 B
Vue
<template>
|
|
<basic-container class="waybill-import-page-container">
|
|
<div class="waybill-import-page-title">导入运单</div>
|
|
<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 > .el-card__body) {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.waybill-import-page-title {
|
|
position: relative;
|
|
padding: 16px 24px 12px 36px;
|
|
border-bottom: 1px solid #eff1f7;
|
|
color: #303133;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
top: 16px;
|
|
left: 24px;
|
|
width: 4px;
|
|
height: 22px;
|
|
border-radius: 2px;
|
|
background: #409eff;
|
|
content: '';
|
|
}
|
|
}
|
|
</style>
|