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; id:string;
type:string; type:string;
desc:string; desc:string;
value:string; value:string|null;
sort:number; sort:number;
pId:string; pId:string;
children?:ParameterType[]; children?:ParameterType[];

View File

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