初始化仓库备份
This commit is contained in:
32
src/views/materialReceiptNotice/selectedData.vue
Normal file
32
src/views/materialReceiptNotice/selectedData.vue
Normal 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>
|
||||
Reference in New Issue
Block a user