微调
This commit is contained in:
@@ -36,7 +36,7 @@ export namespace TestSource {
|
||||
id:string;
|
||||
type:string;
|
||||
desc:string;
|
||||
value:string;
|
||||
value:string|null;
|
||||
sort:number;
|
||||
pId:string;
|
||||
children?:ParameterType[];
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user