修改
This commit is contained in:
parent
475c5aaa94
commit
24251556fe
@ -21,6 +21,7 @@
|
||||
v-model="queryParams.degreeStartFraction"
|
||||
placeholder="请输入运动程度得分起始值"
|
||||
clearable
|
||||
oninput="value=value.replace(/[^\d]/g,'')"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
@ -29,6 +30,7 @@
|
||||
v-model="queryParams.degreeEndFraction"
|
||||
placeholder="请输入运动程度得分结束值"
|
||||
clearable
|
||||
oninput="value=value.replace(/[^\d]/g,'')"
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
@ -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();
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user