From 36c73464d6850aa6622eccc06ada3edf81631999 Mon Sep 17 00:00:00 2001 From: x_z Date: Wed, 19 Apr 2023 14:46:38 +0800 Subject: [PATCH] =?UTF-8?q?1.=E6=B7=BB=E5=8A=A0=E6=8E=A5=E5=8F=A3=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E6=97=B6=E9=97=B4=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../thirdSys/api/BasicThirdSysDetailModify.vue | 13 +++++++++++++ src/views/thirdSys/api/index.vue | 11 +++++++++++ 2 files changed, 24 insertions(+) diff --git a/src/views/thirdSys/api/BasicThirdSysDetailModify.vue b/src/views/thirdSys/api/BasicThirdSysDetailModify.vue index 48b3b4ef..6f8a2cc0 100644 --- a/src/views/thirdSys/api/BasicThirdSysDetailModify.vue +++ b/src/views/thirdSys/api/BasicThirdSysDetailModify.vue @@ -41,6 +41,19 @@ + + + + + + + diff --git a/src/views/thirdSys/api/index.vue b/src/views/thirdSys/api/index.vue index a3f0d7f3..527a6561 100644 --- a/src/views/thirdSys/api/index.vue +++ b/src/views/thirdSys/api/index.vue @@ -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) {