微调
This commit is contained in:
@@ -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[];
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user