新增阶结算订单

This commit is contained in:
gyq
2024-02-29 17:34:46 +08:00
parent c198f81483
commit 5deec59c38
3 changed files with 41 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
<!-- 结算订单 -->
<template>
<el-drawer size="100%" :with-header="false" direction="ttb" v-model="dialogVisible">
<div class="drawer_wrap">
</div>
</el-drawer>
</template>
<script setup>
import { ref } from 'vue'
const dialogVisible = ref(true)
</script>
<style scoped lang="scss">
.drawer_wrap {
width: 100%;
height: 100%;
}
</style>