This commit is contained in:
caozehui
2024-12-16 11:34:12 +08:00
parent 396d6a7336
commit ae47d429ba
2 changed files with 3 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ export namespace TestSource {
id:string;
type:string;
desc:string;
value:string;
value:string|null;
sort:number;
pId:string;
children?:ParameterType[];

View File

@@ -83,7 +83,7 @@ function useMetaInfo() {
const formContent = reactive<TestSource.ParameterType>({
id: "",
type: "",
value: "",
value: null,
desc: "",
sort: 100,
pId: "0",
@@ -115,7 +115,7 @@ const resetFormContent = () => {
Object.assign(formContent, {
id: "",
type: "",
value: "",
value: null,
desc: "",
sort: 100,
pId: "0",