fix(接口定义): 修复接口一键同步进入待更新列表失败问题

--bug=1025581 --user=郭雨琦
https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001025581
This commit is contained in:
guoyuqi 2023-04-19 13:17:04 +08:00 committed by fit2-zhao
parent d431374797
commit 8df9cbeb95
2 changed files with 6 additions and 4 deletions

View File

@ -430,8 +430,8 @@ export default {
file: false,
files: null,
isEdit: false,
max: null,
min: null,
max: 0,
min: 0,
required: false,
type: 'text',
urlEncode: this.urlEncode,
@ -534,8 +534,8 @@ export default {
file: false,
files: null,
isEdit: false,
max: null,
min: null,
max: 0,
min: 0,
required: false,
type: 'text',
urlEncode: this.urlEncode,

View File

@ -787,6 +787,8 @@ export class KeyValue extends BaseConfig {
this.enable = undefined;
this.uuid = undefined;
this.time = undefined;
this.max = 0;
this.min = 0;
this.contentType = undefined;
this.set(options);
}