diff --git a/src/views/inout/DialogInvoice.vue b/src/views/inout/DialogInvoice.vue
index 6773dc0..38a46fc 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 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/inout/DialogReviewOrder.vue b/src/views/inout/DialogReviewOrder.vue
index 5e82922..d6facff 100644
--- a/src/views/inout/DialogReviewOrder.vue
+++ b/src/views/inout/DialogReviewOrder.vue
@@ -222,6 +222,7 @@ export default {
this.udiCode = "01" + response.data.nameCode;
this.originCode = this.udiCode;
} else {
+ this.originCode = "";
this.$alert(response.message, '提示', {
confirmButtonText: '确定',
type: 'warning',
diff --git a/src/views/purchase/cert/supCertAddDialog.vue b/src/views/purchase/cert/supCertAddDialog.vue
index fd68163..56f2c11 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 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue b/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue
index 745cc91..3439586 100644
--- a/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue
+++ b/src/views/purchase/manufacturer/supManufacturerAuditDialog.vue
@@ -182,7 +182,7 @@
-
+
@@ -239,7 +239,7 @@
-
+
+ placeholder="请选择生效期">
@@ -783,9 +783,9 @@ export default {
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/purchase/manufacturer/supManufacturerEditDialog.vue b/src/views/purchase/manufacturer/supManufacturerEditDialog.vue
index 913e8b3..a948fe2 100644
--- a/src/views/purchase/manufacturer/supManufacturerEditDialog.vue
+++ b/src/views/purchase/manufacturer/supManufacturerEditDialog.vue
@@ -208,7 +208,7 @@
-
+
@@ -675,9 +675,9 @@ export default {
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/purchase/product/supProductAuditDialog.vue b/src/views/purchase/product/supProductAuditDialog.vue
index 5b5279d..c9a1f35 100644
--- a/src/views/purchase/product/supProductAuditDialog.vue
+++ b/src/views/purchase/product/supProductAuditDialog.vue
@@ -216,7 +216,7 @@
-
+
@@ -272,7 +272,7 @@
-
+
+ placeholder="请选择生效期">
diff --git a/src/views/register.vue b/src/views/register.vue
index 05a94aa..7adf132 100644
--- a/src/views/register.vue
+++ b/src/views/register.vue
@@ -851,9 +851,9 @@ export default {
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/supplier/company/basicCompany.vue b/src/views/supplier/company/basicCompany.vue
index ca4863a..d35d2cd 100644
--- a/src/views/supplier/company/basicCompany.vue
+++ b/src/views/supplier/company/basicCompany.vue
@@ -169,7 +169,7 @@
-
+
diff --git a/src/views/supplier/company/supCompanyProduct.vue b/src/views/supplier/company/supCompanyProduct.vue
index a930146..5cea5be 100644
--- a/src/views/supplier/company/supCompanyProduct.vue
+++ b/src/views/supplier/company/supCompanyProduct.vue
@@ -426,9 +426,9 @@
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/system/param/addhelpSettings.vue b/src/views/system/param/addhelpSettings.vue
index 60b6de8..12099ac 100644
--- a/src/views/system/param/addhelpSettings.vue
+++ b/src/views/system/param/addhelpSettings.vue
@@ -245,9 +245,9 @@ export default {
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/system/print/pdfPrintSet.vue b/src/views/system/print/pdfPrintSet.vue
index 1bbcdd7..eebf2ba 100644
--- a/src/views/system/print/pdfPrintSet.vue
+++ b/src/views/system/print/pdfPrintSet.vue
@@ -651,9 +651,9 @@ export default {
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
diff --git a/src/views/system/print/pdfTmpleateManage.vue b/src/views/system/print/pdfTmpleateManage.vue
index d48264e..b29bcc7 100644
--- a/src/views/system/print/pdfTmpleateManage.vue
+++ b/src/views/system/print/pdfTmpleateManage.vue
@@ -590,9 +590,9 @@ export default {
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)
@@ -629,9 +629,9 @@ export default {
return;
}
// 限制上传文件的大小
- const isLt = file.size / 1024 / 1024 / 2 <= 1;
+ const isLt = file.size / 1024 / 1024 / 10 <= 1;
if (!isLt) {
- this.$message.error("上传文件大小不能超过 2MB");
+ this.$message.error("上传文件大小不能超过 10MB");
for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) {
fileList.splice(i, 1)