fix(接口测试): 修复场景断言类型选择响应时间点击下调按钮显示相应时间为0提示:格式错误的缺陷
--bug=1013446 --user=王孝刚 【接口测试】场景断言-类型选择响应时间-点击下调按钮显示相应时间为0-提示:格式错误 https://www.tapd.cn/55049933/s/1163541
This commit is contained in:
parent
47ad51b400
commit
2c24d6178c
|
@ -2,8 +2,10 @@
|
||||||
<div>
|
<div>
|
||||||
<el-row :gutter="10" type="flex" justify="space-between" align="middle">
|
<el-row :gutter="10" type="flex" justify="space-between" align="middle">
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-input :disabled="isReadOnly" :value="value" v-bind="$attrs" step="100" size="small" type="number" @change="change" @input="input" :min="0"
|
<el-input :disabled="isReadOnly" :value="value" v-bind="$attrs" step="100" size="small" type="number"
|
||||||
:placeholder="$t('api_test.request.assertions.response_in_time')"/>
|
@change="change" @input="input" :min="0"
|
||||||
|
:placeholder="$t('api_test.request.assertions.response_in_time')"
|
||||||
|
onKeypress="return (/[\d]/.test(String.fromCharCode(event.keyCode)))"/>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col class="assertion-btn">
|
<el-col class="assertion-btn">
|
||||||
<el-tooltip :content="$t('test_resource_pool.enable_disable')" placement="top" v-if="edit">
|
<el-tooltip :content="$t('test_resource_pool.enable_disable')" placement="top" v-if="edit">
|
||||||
|
@ -55,7 +57,7 @@ export default {
|
||||||
this.$emit('input', value);
|
this.$emit('input', value);
|
||||||
},
|
},
|
||||||
validate() {
|
validate() {
|
||||||
if (this.value == '' || Number(this.value) <= 0) {
|
if (this.value === '' || Number(this.value) < 0) {
|
||||||
this.$error(this.$t('commons.formatErr'));
|
this.$error(this.$t('commons.formatErr'));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue