fix(接口测试): 批量执行case是集合报告名称增加必填标识 (#11326)

--bug=1011008 --user=王孝刚 【接口测试】批量执行case-串行/并行-集合报告-名称为必填项-未增加必填标识
https://www.tapd.cn/55049933/s/1116148

Co-authored-by: wxg0103 <727495428@qq.com>
This commit is contained in:
metersphere-bot 2022-03-10 17:34:26 +08:00 committed by GitHub
parent 6999963eae
commit fb94179212
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 2 deletions

View File

@ -65,7 +65,7 @@
</div>
<div class="ms-mode-div" v-if="runConfig.reportType === 'setReport'">
<span class="ms-mode-span">{{ $t("run_mode.report_name") }}</span>
<span class="ms-mode-span-label">{{ $t("run_mode.report_name") }}</span>
<el-input
v-model="runConfig.reportName"
:placeholder="$t('commons.input_content')"
@ -198,4 +198,12 @@ export default {
.ms-mode-div {
margin-top: 20px;
}
.ms-mode-span-label:before {
content: '*';
color: #F56C6C;
margin-right: 4px;
margin-left: 10px;
}
</style>

View File

@ -64,7 +64,7 @@
</div>
<div class="ms-mode-div" v-if="runConfig.reportType === 'setReport'">
<span class="ms-mode-span">{{ $t("run_mode.report_name") }}</span>
<span class="ms-mode-span-label">{{ $t("run_mode.report_name") }}</span>
<el-input
v-model="runConfig.reportName"
:placeholder="$t('commons.input_content')"
@ -190,4 +190,16 @@ export default {
margin-top: 20px;
}
.ms-mode-span {
margin-right: 10px;
margin-left: 10px;
}
.ms-mode-span-label:before {
content: '*';
color: #F56C6C;
margin-right: 4px;
margin-left: 10px;
}
</style>