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.
51 lines
747 B
51 lines
747 B
<!--
|
|
@ 作者: 鲁智强
|
|
@ 时间: 2023-08-29 11:32:54
|
|
@ 备注:
|
|
-->
|
|
<script lang='ts'>
|
|
interface FormInfo {
|
|
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,
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<template>
|
|
<<div class="diaacd"> sdad </div>>
|
|
</template>
|
|
<style lang='scss' scoped>
|
|
|
|
</style>
|
|
|