Merge branch 'master' of https://github.com/metersphere/metersphere
This commit is contained in:
commit
637739459e
|
@ -299,8 +299,8 @@
|
||||||
select test_plan_test_case.*, test_case.*
|
select test_plan_test_case.*, test_case.*
|
||||||
from test_plan_test_case
|
from test_plan_test_case
|
||||||
inner join test_case on test_plan_test_case.case_id = test_case.id
|
inner join test_case on test_plan_test_case.case_id = test_case.id
|
||||||
where status != 'Prepare'
|
where test_plan_test_case.status != 'Prepare'
|
||||||
and status != 'Underway'
|
and test_plan_test_case.status != 'Underway'
|
||||||
and test_plan_test_case.Executor = #{request.executor}
|
and test_plan_test_case.Executor = #{request.executor}
|
||||||
and test_plan_test_case.plan_id in
|
and test_plan_test_case.plan_id in
|
||||||
<foreach collection="request.planIds" item="planId" separator="," open="(" close=")">
|
<foreach collection="request.planIds" item="planId" separator="," open="(" close=")">
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d2fc4b42117be97c679b4d15d6f979923e598f7f
|
Subproject commit efd6af73b7c5cc53cd4515772000bc1436c49837
|
|
@ -31,10 +31,10 @@
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<slot name="button"></slot>
|
<slot name="button"></slot>
|
||||||
<el-tooltip content="Copy" placement="top">
|
<el-tooltip content="Copy" placement="top">
|
||||||
<el-button size="mini" icon="el-icon-copy-document" circle @click="copyRow" :disabled="data.referenced==='REF' || data.disabled"/>
|
<el-button size="mini" icon="el-icon-copy-document" circle @click="copyRow" :disabled="data && data.disabled"/>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<el-tooltip :content="$t('commons.remove')" placement="top">
|
<el-tooltip :content="$t('commons.remove')" placement="top">
|
||||||
<el-button size="mini" icon="el-icon-delete" type="danger" circle @click="remove" :disabled="data.referenced==='REF' || data.disabled"/>
|
<el-button size="mini" icon="el-icon-delete" type="danger" circle @click="remove" :disabled="data && data.disabled"/>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -216,7 +216,7 @@
|
||||||
}
|
}
|
||||||
this.request.requestResult = requestResult;
|
this.request.requestResult = requestResult;
|
||||||
this.request.id = response.data.id;
|
this.request.id = response.data.id;
|
||||||
this.request.disabled = true;
|
//this.request.disabled = true;
|
||||||
if (!this.request.projectId) {
|
if (!this.request.projectId) {
|
||||||
this.request.projectId = response.data.projectId;
|
this.request.projectId = response.data.projectId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
if (this.scenario.hashTree) {
|
if (this.scenario.hashTree) {
|
||||||
this.setDisabled(this.scenario.hashTree);
|
this.setDisabled(this.scenario.hashTree);
|
||||||
}
|
}
|
||||||
this.scenario.disabled = true;
|
//this.scenario.disabled = true;
|
||||||
this.scenario.name = response.data.name;
|
this.scenario.name = response.data.name;
|
||||||
if (!this.scenario.projectId) {
|
if (!this.scenario.projectId) {
|
||||||
this.scenario.projectId = response.data.projectId;
|
this.scenario.projectId = response.data.projectId;
|
||||||
|
|
|
@ -325,7 +325,7 @@ export default {
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
total: 0,
|
total: 0,
|
||||||
screenHeight: document.documentElement.clientHeight - 270,//屏幕高度,
|
screenHeight: document.documentElement.clientHeight - 310,//屏幕高度,
|
||||||
environmentId: undefined,
|
environmentId: undefined,
|
||||||
selectDataCounts: 0,
|
selectDataCounts: 0,
|
||||||
}
|
}
|
||||||
|
|
|
@ -132,6 +132,7 @@ import MsChart from "@/business/components/common/chart/MsChart";
|
||||||
import {findThreadGroup} from "@/business/components/performance/test/model/ThreadGroup";
|
import {findThreadGroup} from "@/business/components/performance/test/model/ThreadGroup";
|
||||||
|
|
||||||
const HANDLER = "handler";
|
const HANDLER = "handler";
|
||||||
|
const THREAD_GROUP_TYPE = "tgType";
|
||||||
const TARGET_LEVEL = "TargetLevel";
|
const TARGET_LEVEL = "TargetLevel";
|
||||||
const RAMP_UP = "RampUp";
|
const RAMP_UP = "RampUp";
|
||||||
const STEPS = "Steps";
|
const STEPS = "Steps";
|
||||||
|
@ -225,6 +226,9 @@ export default {
|
||||||
case HANDLER:
|
case HANDLER:
|
||||||
this.threadGroups[i].handler = item.value;
|
this.threadGroups[i].handler = item.value;
|
||||||
break;
|
break;
|
||||||
|
case THREAD_GROUP_TYPE:
|
||||||
|
this.threadGroups[i].tgType = item.value;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ export default {
|
||||||
url: [
|
url: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: this.$t('system_par'),
|
message: this.$t('system_config.base.url_is_null'),
|
||||||
trigger: ['change', 'blur']
|
trigger: ['change', 'blur']
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 17404980aab725889843ce8c65f5f5c00113ae21
|
Subproject commit 4c33b9c3b12a83da6d9bd2740262c6c8baaab819
|
|
@ -240,7 +240,8 @@ export default {
|
||||||
base_config: 'Base Config',
|
base_config: 'Base Config',
|
||||||
base: {
|
base: {
|
||||||
url: 'Website URL',
|
url: 'Website URL',
|
||||||
url_tip: 'example:http://localhost:8081'
|
url_tip: 'example:http://localhost:8081',
|
||||||
|
url_is_null: 'The current site URL cannot be empty'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
workspace: {
|
workspace: {
|
||||||
|
|
|
@ -241,7 +241,8 @@ export default {
|
||||||
base_config: '基本配置',
|
base_config: '基本配置',
|
||||||
base: {
|
base: {
|
||||||
url: '当前站点URL',
|
url: '当前站点URL',
|
||||||
url_tip: '例如:http://localhost:8081'
|
url_tip: '例如:http://localhost:8081',
|
||||||
|
url_is_null: '当前站点URL不能为空'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
workspace: {
|
workspace: {
|
||||||
|
|
|
@ -241,7 +241,8 @@ export default {
|
||||||
base_config: '基本配置',
|
base_config: '基本配置',
|
||||||
base: {
|
base: {
|
||||||
url: '當前站點URL',
|
url: '當前站點URL',
|
||||||
url_tip: '例如:http://localhost:8081'
|
url_tip: '例如:http://localhost:8081',
|
||||||
|
url_is_null: '當前站點URL不能為空'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
workspace: {
|
workspace: {
|
||||||
|
|
Loading…
Reference in New Issue