初始化仓库备份

This commit is contained in:
2025-03-21 09:20:29 +08:00
commit c35f4f8a99
235 changed files with 37389 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<template>
<el-dialog :model-value="props.showes" width="70%" >
<ceshi></ceshi>
<div class="btnList">
<el-button type="primary">打印</el-button>
</div>
</el-dialog>
</template>
<script setup lang="ts">
import {defineProps, reactive} from 'vue';
import ceshi from './ceshi.vue'
const props = defineProps({
listData:{
type: Array,
default: () => []
},
showes:{
type: Boolean,
default: true
}
});
const state = reactive({
dialogVisible: true,
});
</script>
<style scoped lang="scss">
.btnList{
margin-top: 26px;
display: flex;
justify-content: center;
}
</style>