Browse Source

🐛一波

shaogen1995 1 year ago
parent
commit
301fa12f8a

+ 2 - 2
src/components/Z3upFiles/index.module.scss

@@ -7,7 +7,7 @@
 
     .Z3files {
       width: 500px;
-      padding-top: 6px;
+      // padding-top: 6px;
 
       .Z3filesRow {
         display: flex;
@@ -15,7 +15,7 @@
         justify-content: space-between;
         align-items: center;
         font-size: 16px;
-        border-bottom: 1px solid var(--themeColor);
+        border-bottom: 1px dashed #999;
         padding-bottom: 5px;
 
         .Z3files1 {

+ 4 - 4
src/pages/A1Project/A1Add/index.module.scss

@@ -90,7 +90,7 @@
     .A1AddMainLook {
       height: 100%;
 
-      #basic_name_help{
+      #basic_name_help {
         display: none !important;
       }
 
@@ -181,9 +181,9 @@
           padding-left: 12px;
         }
 
-        .e_rowRML {
-          margin-top: -10px;
-        }
+        // .e_rowRML {
+        //    margin-top: -10px;
+        // }
 
       }
 

+ 2 - 1
src/pages/A1Project/A1Add/index.tsx

@@ -174,6 +174,7 @@ function A1Add({ pageType, closeFu, addFu, editFu }: Props) {
         dateScope,
         fileIds,
         linkJson: JSON.stringify(linkArr),
+        amount:value.amount?value.amount:'',
         province,
         dirCode,
       };
@@ -323,7 +324,7 @@ function A1Add({ pageType, closeFu, addFu, editFu }: Props) {
                 <div className="e_rowR e_rowRLook">
                   {isOk
                     ? lookInfo.amount
-                      ? lookInfo.amount + "¥"
+                      ?"¥"+ lookInfo.amount
                       : "(空)"
                     : ""}
                 </div>

+ 1 - 1
src/pages/Layout/index.tsx

@@ -212,7 +212,7 @@ function Layout() {
             name="oldPassword"
             rules={[{ required: true, message: "不能为空!" }]}
           >
-            <Input.Password maxLength={15} />
+            <Input.Password maxLength={20} />
           </Form.Item>
 
           <Form.Item

+ 1 - 1
src/pages/Login/index.tsx

@@ -79,7 +79,7 @@ export default function Login() {
                 onChange={(e) => setPassWord(e.target.value.trim())}
                 prefix={<LockOutlined rev={undefined} />}
                 placeholder="请输入密码"
-                maxLength={15}
+                maxLength={20}
               />
             </div>
           </div>