fix: 修复接口测试创建新版本的时候右上角显示的版本没有及时更新的问题

--bug=1009728 --user=刘瑞斌 【接口定义】-CASE和Mock页面默认的版本都是版本:v1.0.0不会自动更新为实际版本 https://www.tapd.cn/55049933/s/1093834
This commit is contained in:
CaptainB 2022-01-19 10:49:39 +08:00 committed by 刘瑞斌
parent 112777dcb1
commit 7b37283303
6 changed files with 6 additions and 5 deletions

View File

@ -38,12 +38,10 @@ import MsEditCompleteDubboApi from "./complete/EditCompleteDubboApi";
import MsEditCompleteSqlApi from "./complete/EditCompleteSQLApi";
import {Body} from "../model/ApiTestModel";
import {getCurrentProjectID, getUUID} from "@/common/js/utils";
import {getCurrentProjectID, getUUID, handleCtrlSEvent} from "@/common/js/utils";
import {createComponent, Request} from "./jmeter/components";
import Sampler from "./jmeter/components/sampler/sampler";
import {WORKSPACE_ID} from '@/common/js/constants';
import {handleCtrlSEvent} from "../../../../../common/js/utils";
import {ELEMENT_TYPE, TYPE_TO_C} from "@/business/components/api/automation/scenario/Setting";
import {TYPE_TO_C} from "@/business/components/api/automation/scenario/Setting";
export default {
name: "ApiConfig",

View File

@ -340,6 +340,7 @@ export default {
create(row) {
//
this.basisData.versionId = row.id;
this.basisData.versionName = row.name;
this.$set(this.basisData, 'newVersionRemark', !!this.basisData.remark);
this.$set(this.basisData, 'newVersionDeps', this.$refs.apiOtherInfo.relationshipCount > 0);
if (this.$refs.apiOtherInfo.relationshipCount > 0 || this.basisData.remark) {

View File

@ -660,6 +660,7 @@ export default {
create(row) {
//
this.httpForm.versionId = row.id;
this.httpForm.versionName = row.name;
this.$set(this.httpForm, 'newVersionRemark', !!this.httpForm.remark);
this.$set(this.httpForm, 'newVersionDeps', this.$refs.apiOtherInfo.relationshipCount > 0);
if (this.$refs.apiOtherInfo.relationshipCount > 0 || this.httpForm.remark) {

View File

@ -346,6 +346,7 @@ export default {
create(row) {
//
this.basisData.versionId = row.id;
this.basisData.versionName = row.name;
this.$set(this.basisData, 'newVersionRemark', !!this.basisData.remark);
this.$set(this.basisData, 'newVersionDeps', this.$refs.apiOtherInfo.relationshipCount > 0);
if (this.$refs.apiOtherInfo.relationshipCount > 0 || this.basisData.remark) {

View File

@ -468,6 +468,7 @@ export default {
create(row) {
//
this.basisData.versionId = row.id;
this.basisData.versionName = row.name;
this.$set(this.basisData, 'newVersionRemark', !!this.basisData.remark);
this.$set(this.basisData, 'newVersionDeps', this.$refs.apiOtherInfo.relationshipCount > 0);
if (this.$refs.apiOtherInfo.relationshipCount > 0 || this.basisData.remark) {

View File

@ -120,7 +120,6 @@ export default {
reportId: "",
envMap: new Map,
runLoading: false,
versionName: '',
versionEnable: false,
}
},