feature:#1647 自动化代码支持纯json

This commit is contained in:
piexlMax
2024-03-18 22:25:50 +08:00
parent 99d6b4a361
commit a5cbd7387b
4 changed files with 28 additions and 0 deletions

View File

@@ -418,6 +418,7 @@
style="width:100%"
placeholder="请选择字段查询条件"
clearable
:disabled="row.fieldType!=='json'"
>
<el-option
v-for="item in typeSearchOptions"
@@ -601,6 +602,10 @@ const typeOptions = ref([
{
label: '文件json字符串',
value: 'file',
},
{
label: 'JSON',
value: 'json',
}
])