fix(接口定义): 修复接口定义责任人下拉框没有内容的缺陷
--bug=1017762 --user=王孝刚 【接口测试】高级搜索,责任人 / 关注人 / 所属模块 下拉框没有内容 https://www.tapd.cn/55049933/s/1258961
This commit is contained in:
parent
9a0c49414e
commit
54c8bf8430
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<ms-container v-if="isShow && !loading" >
|
||||
<ms-container v-if="isShow && !loading">
|
||||
<ms-aside-container>
|
||||
<api-base-info
|
||||
ref="apiBaseInfo"
|
||||
|
@ -139,7 +139,6 @@ import ApiCaseSimpleList from "./list/ApiCaseSimpleList";
|
|||
import MsApiCaseList from "./case/EditApiCase";
|
||||
import {getUUID} from "metersphere-frontend/src/utils";
|
||||
import {TYPE_TO_C} from "@/business/automation/scenario/Setting";
|
||||
import _ from 'lodash';
|
||||
import {useApiStore} from "@/store";
|
||||
import ApiBaseInfo from "@/business/definition/components/complete/ApiBaseInfo";
|
||||
import {getProjectMemberOption} from "@/api/project";
|
||||
|
@ -467,8 +466,8 @@ export default {
|
|||
}
|
||||
},
|
||||
getMaintainerOptions() {
|
||||
getProjectMemberOption(data => {
|
||||
this.maintainerOptions = data;
|
||||
getProjectMemberOption().then(res => {
|
||||
this.maintainerOptions = res.data;
|
||||
});
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue