diff --git a/src/views/inout/DialogCheck.vue b/src/views/inout/DialogCheck.vue index a5700b2..16edf2f 100644 --- a/src/views/inout/DialogCheck.vue +++ b/src/views/inout/DialogCheck.vue @@ -318,9 +318,9 @@ export default { return; } // 限制上传文件的大小 - const isLt = file.size / 1024 / 1024 / 10 <= 1; + const isLt = file.size / 1024 / 1024 / 30 <= 1; if (!isLt) { - this.$message.error("上传文件大小不能超过 10MB"); + this.$message.error("上传文件大小不能超过 30MB"); for (let i = 0; i < fileList.length; i++) { if (fileList[i].uid === uid) { fileList.splice(i, 1) diff --git a/src/views/inout/DialogInvoice.vue b/src/views/inout/DialogInvoice.vue index fefc39d..5e8f820 100644 --- a/src/views/inout/DialogInvoice.vue +++ b/src/views/inout/DialogInvoice.vue @@ -288,9 +288,9 @@ export default { return; } // 限制上传文件的大小 - const isLt = file.size / 1024 / 1024 / 10 <= 1; + const isLt = file.size / 1024 / 1024 / 30 <= 1; if (!isLt) { - this.$message.error("上传文件大小不能超过 10MB"); + this.$message.error("上传文件大小不能超过 30MB"); for (let i = 0; i < fileList.length; i++) { if (fileList[i].uid === uid) { fileList.splice(i, 1) diff --git a/src/views/purchase/cert/supCertAddDialog.vue b/src/views/purchase/cert/supCertAddDialog.vue index daf74fb..d41aad3 100644 --- a/src/views/purchase/cert/supCertAddDialog.vue +++ b/src/views/purchase/cert/supCertAddDialog.vue @@ -313,9 +313,9 @@ export default { return; } // 限制上传文件的大小 - const isLt = file.size / 1024 / 1024 / 10 <= 1; + const isLt = file.size / 1024 / 1024 / 30 <= 1; if (!isLt) { - this.$message.error("上传文件大小不能超过 10MB"); + this.$message.error("上传文件大小不能超过 30MB"); for (let i = 0; i < fileList.length; i++) { if (fileList[i].uid === uid) { fileList.splice(i, 1) diff --git a/src/views/purchase/cert/supCertAudit.vue b/src/views/purchase/cert/supCertAudit.vue index f954860..c64ec53 100644 --- a/src/views/purchase/cert/supCertAudit.vue +++ b/src/views/purchase/cert/supCertAudit.vue @@ -35,6 +35,17 @@ + + + + + + + - - - + + +