fix(接口定义): 修复接口定义默认值没有值的缺陷 (#17994)
--bug=1016860 --user=王孝刚 【项目设置】接口模板,模板里设置了默认值,但是创建接口的时候没有显示 https://www.tapd.cn/55049933/s/1244982 Co-authored-by: wxg0103 <727495428@qq.com>
This commit is contained in:
parent
a9f8c7cab6
commit
691c2c6407
|
@ -45,7 +45,7 @@ public class CustomFieldTemplateService {
|
|||
CustomFieldTemplateExample example = new CustomFieldTemplateExample();
|
||||
example.createCriteria().andTemplateIdEqualTo(templateId);
|
||||
example.setOrderByClause("`order` asc");
|
||||
return customFieldTemplateMapper.selectByExample(example);
|
||||
return customFieldTemplateMapper.selectByExampleWithBLOBs(example);
|
||||
}
|
||||
|
||||
public List<CustomFieldTemplateDao> list(CustomFieldTemplate request) {
|
||||
|
@ -87,7 +87,7 @@ public class CustomFieldTemplateService {
|
|||
return fieldTemplates;
|
||||
}
|
||||
|
||||
public void updateFieldIdByTemplate(String templateId, String originId , String fieldId) {
|
||||
public void updateFieldIdByTemplate(String templateId, String originId, String fieldId) {
|
||||
CustomFieldTemplateExample example = new CustomFieldTemplateExample();
|
||||
example.createCriteria()
|
||||
.andTemplateIdEqualTo(templateId)
|
||||
|
@ -144,6 +144,7 @@ public class CustomFieldTemplateService {
|
|||
/**
|
||||
* 将原来全局字段与模板的关联
|
||||
* 改为项目下字段与模板的关联
|
||||
*
|
||||
* @param customField
|
||||
* @param templateIds
|
||||
* @return
|
||||
|
|
|
@ -488,7 +488,7 @@ export default {
|
|||
}
|
||||
}
|
||||
// 通知过来的数据跳转到编辑
|
||||
if (this.routeParamObj.caseId) {
|
||||
if (routeParamObj.caseId) {
|
||||
this.activeDom = 'middle';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue