1.添加接口请求时间设置

prod
x_z 2 years ago
parent ccd953f054
commit 36c73464d6

@ -41,6 +41,19 @@
</el-form-item>
</el-col>
</el-row>
<el-row v-if="inputDetailQuery.fromType === 3" :gutter="20" class="el-row" type="flex" align="middle">
<el-col :span="24" class="el-col">
<el-form-item label-width="100px" label="请求时间">
<el-input
style="width: 80%"
splaceholder="请输入请求时间 单位:分钟"
type="number"
min="0"
v-model="inputDetailQuery.time"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex" align="middle">
<el-col :span="24" class="el-col">

@ -460,6 +460,17 @@ export default {
});
},
onDetailModifySubmit() {
if (this.inputDetailQuery.fromType === 3) {
if (isBlank(this.inputDetailQuery.time)) {
this.$message.error("接口请求时间不能为空");
return;
}
if (this.inputDetailQuery.time < 0) {
this.$message.error("接口请求时间不能小于0");
return;
}
}
updateDetailBasicThirdSys(this.inputDetailQuery)
.then((response) => {
if (response.code == 20000) {

Loading…
Cancel
Save