From 24251556fec412665e66c17b75281f67fb077b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E8=BE=89?= <814457906@qq.com> Date: Tue, 4 Apr 2023 15:51:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/motionPrescriptionLibrary/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/system/motionPrescriptionLibrary/index.vue b/src/views/system/motionPrescriptionLibrary/index.vue index a5c6f7b..0924b87 100644 --- a/src/views/system/motionPrescriptionLibrary/index.vue +++ b/src/views/system/motionPrescriptionLibrary/index.vue @@ -21,6 +21,7 @@ v-model="queryParams.degreeStartFraction" placeholder="请输入运动程度得分起始值" clearable + oninput="value=value.replace(/[^\d]/g,'')" @keyup.enter.native="handleQuery" /> @@ -29,6 +30,7 @@ v-model="queryParams.degreeEndFraction" placeholder="请输入运动程度得分结束值" clearable + oninput="value=value.replace(/[^\d]/g,'')" @keyup.enter.native="handleQuery" /> @@ -525,7 +527,10 @@ export default { }, // 提交上传文件 submitFileForm() { - confirmUploadVideo(this.upload.data.motionPrescriptionId,this.videourl).then(res => { + confirmUploadVideo( + this.upload.data.motionPrescriptionId, + this.videourl + ).then(res => { this.upload.open = false; this.getList(); });