From 94b04152f691c602e5ccd3f5f07f97ca45888819 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期二, 07 二月 2023 10:13:48 +0800
Subject: [PATCH] 修改数字输入框样式,修改提交表单名称

---
 src/views/license/licenseInfo/components/licenseInfoForm.vue |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/views/license/licenseInfo/components/licenseInfoForm.vue b/src/views/license/licenseInfo/components/licenseInfoForm.vue
index 6f75af2..4821401 100644
--- a/src/views/license/licenseInfo/components/licenseInfoForm.vue
+++ b/src/views/license/licenseInfo/components/licenseInfoForm.vue
@@ -964,9 +964,8 @@
                 + this.dataForm.city + this.dataForm.district + this.dataForm.address;
             let fullStorageAddress = (this.dataForm.storageprovince ==='新疆维吾尔自治区'? '新疆': this.dataForm.storageprovince)
                 + this.dataForm.storagecity + this.dataForm.storagedistrict + this.dataForm.storageaddress;
-
-            if (this.getByteLen(fullAddress) > 90 || this.getByteLen(fullStorageAddress) > 90){
-                parseError({error: '注册地址或仓储地址的省市区详细地址总和不能超过50个字,请删减', vm: this})
+            if (this.getByteLen(fullAddress) > 390 || this.getByteLen(fullStorageAddress) > 390){
+                parseError({error: '注册地址或仓储地址的省市区详细地址总和不能超过200个字,请删减', vm: this})
             } else {
                 if(this.title === "新增"){
                     let res = await addLicenseInfo(this.dataForm)
@@ -1275,4 +1274,7 @@
     height:70%;
     margin-left:10px;
 }
+.el-input-number{
+    width: 100%;
+}
 </style>

--
Gitblit v1.9.2