refactor(接口测试): 隐藏除正则提取外的自定义模版选项
--bug=1032642 --user=赵勇 【接口测试】后置操作的JSONPath提取中的默认值$1$和正则提取中的默认选项“$1$” 混淆了,建议隐藏 https://www.tapd.cn/55049933/s/1434208 Signed-off-by: fit2-zhao <yong.zhao@fit2cloud.com>
This commit is contained in:
parent
6163d5ef63
commit
1136d62153
|
@ -32,14 +32,15 @@
|
||||||
show-word-limit
|
show-word-limit
|
||||||
:placeholder="expression"
|
:placeholder="expression"
|
||||||
@click.native="savePreParams(common.variable)"
|
@click.native="savePreParams(common.variable)"
|
||||||
style="width: 70%" />
|
:style="extractType === 'Regex' ? 'width: 70%' : 'width: 100%'" />
|
||||||
|
|
||||||
<el-autocomplete
|
<el-autocomplete
|
||||||
style="width: 25%; margin-left: 10px"
|
style="width: 25%; margin-left: 10px"
|
||||||
size="small"
|
size="small"
|
||||||
placeholder="Template $i$ where i is capturing group number,stats at 1"
|
placeholder="Template $i$ where i is capturing group number,stats at 1"
|
||||||
v-model="common.template"
|
v-model="common.template"
|
||||||
:fetch-suggestions="querySearch" />
|
:fetch-suggestions="querySearch"
|
||||||
|
v-if="extractType === 'Regex'" />
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col class="multiple_checkbox" v-if="edit">
|
<el-col class="multiple_checkbox" v-if="edit">
|
||||||
<el-checkbox v-model="common.multipleMatching" :disabled="isReadOnly">
|
<el-checkbox v-model="common.multipleMatching" :disabled="isReadOnly">
|
||||||
|
|
Loading…
Reference in New Issue