You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.1 KiB
66 lines
1.1 KiB
|
2 years ago
|
<!--
|
||
|
|
@ 作者: 鲁智强
|
||
|
|
@ 时间: 2023-08-29 11:32:54
|
||
|
|
@ 备注:
|
||
|
|
-->
|
||
|
|
<script lang='ts'>
|
||
|
|
import { ref, defineProps, defineEmits,reactive, toRefs,onMounted } from "vue";
|
||
|
|
import { ElMessage,UploadProps} from "element-plus";
|
||
|
|
interface FormInfoac {
|
||
|
|
id: string;
|
||
|
|
age: string;
|
||
|
|
name: string;
|
||
|
|
sex: string;
|
||
|
|
ccc: string;
|
||
|
|
ade: string;
|
||
|
|
num: string,
|
||
|
|
abc: string,
|
||
|
|
acc: string,
|
||
|
|
ace: string,
|
||
|
|
acf: string,
|
||
|
|
acg: string,
|
||
|
|
acd: string,
|
||
|
|
abg: string,
|
||
|
|
}
|
||
|
|
export default {
|
||
|
|
props: {
|
||
|
|
title: {
|
||
|
|
type: String,
|
||
|
|
default: "",
|
||
|
|
},
|
||
|
|
diaacdShow: {
|
||
|
|
type: Boolean,
|
||
|
|
default: false,
|
||
|
|
},
|
||
|
|
aceInfo: {
|
||
|
|
type: Object as () => FormInfoac,
|
||
|
|
default() {
|
||
|
|
return {};
|
||
|
|
},
|
||
|
|
},
|
||
|
|
arrayNum: {
|
||
|
|
type: Number,
|
||
|
|
default: 0,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
emits: ["update:diaacdShow"],
|
||
|
|
setup(props) {
|
||
|
|
const handleClose = () => {
|
||
|
|
// 在这里关闭弹窗
|
||
|
|
emit("update:diaacdShow", false);
|
||
|
|
};
|
||
|
|
const emit = defineEmits();
|
||
|
|
// 其他逻辑和方法
|
||
|
|
return {
|
||
|
|
handleClose,
|
||
|
|
};
|
||
|
|
},
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<template>
|
||
|
|
<div>dsddsds</div>
|
||
|
|
</template>
|
||
|
|
<style lang='scss' scoped>
|
||
|
|
|
||
|
|
</style>
|