32 lines
615 B
Vue
32 lines
615 B
Vue
|
<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>
|