From 69aebfd039319c5ea26b239add018a9d53078197 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Fri, 27 May 2022 20:18:14 +0800 Subject: [PATCH] =?UTF-8?q?fix=E6=96=87=E4=BB=B6=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/tool/file/index.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/views/tool/file/index.vue b/src/views/tool/file/index.vue index 9ad4e30..436b068 100644 --- a/src/views/tool/file/index.vue +++ b/src/views/tool/file/index.vue @@ -253,9 +253,9 @@ const { proxy } = getCurrentInstance() const uploadData = ref({}) // 查询数据 function getList() { - proxy.addDateRange(queryParams, dateRangeAddTime.value, 'Create_time') + proxy.addDateRange(queryParams.value, dateRangeAddTime.value, 'Create_time') loading.value = true - listSysfile(queryParams).then((res) => { + listSysfile(queryParams.value).then((res) => { if (res.code == 200) { dataList.value = res.data.result total.value = res.data.totalNum @@ -344,7 +344,6 @@ function submitUpload() { fileName: form.value.fileName, storeType: form.value.storeType, } - console.log(uploadData.value) proxy.$refs.uploadRef.submitUpload() } const { toClipboard } = useClipboard()