32 lines
615 B
Vue
Raw Normal View History

2025-03-21 09:20:29 +08:00
<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>