fangmingyue пре 1 година
родитељ
комит
e50aac8135

+ 2
- 0
src/pages/authentication/components/EveryoneInfo.jsx Прегледај датотеку

@@ -12,6 +12,7 @@ export default (props) => {
12 12
 
13 13
   const [ratio, setRatio] = useState("0");
14 14
   const onFinish = (values) => {
15
+    console.log('----------->');
15 16
     postTaCompanyBeneficiaryInfo([values]).then((res) => {
16 17
       setIndex(index + 1);
17 18
     });
@@ -60,6 +61,7 @@ export default (props) => {
60 61
           </Form.Item>
61 62
           <div style={{ marginBottom: '36px', color: '#ffac00', marginTop: '-24px' }}>{t('authentication.everyoneInfoRadioTip')}</div> */}
62 63
 
64
+          {/* 这个是 我已阅读并同意 的东西,涛哥你看适当放开 */}
63 65
           {/* <Form.Item name="check" rules={[{ required: true, message: '请阅读并勾选协议' }]}>
64 66
             <Checkbox>
65 67
               {t('authentication.everyoneInfoAgreement')}

+ 5
- 3
src/pages/qRegister/QRegister.jsx Прегледај датотеку

@@ -124,17 +124,19 @@ export default (props) => {
124 124
         >
125 125
           <Input placeholder="若有,请输入邀请码" style={{ borderRadius: "4px" }} />
126 126
         </Form.Item>
127
-        <Form.Item name="check"
127
+        {/* 这个是 我已阅读并同意 的东西,涛哥你看适当放开 */}
128
+
129
+        {/* <Form.Item name="check"
128 130
           rules={[{ required: true, message: '请阅读并勾选协议' }]}>
129 131
           <Checkbox>
130 132
             <div>
131 133
               <span>我已阅读并同意</span>
132
-              <a href="https://qbitnetwork.com/terms?type=QbitGeneralTermsAndConditions" target="_blank">Qbit General Terms and Conditions</a>和
134
+              <a href="https://qbitnetwork.com/terms?type=QbitGeneralTermsAndConditions" target="_blank">快云 General Terms and Conditions</a>和
133 135
               <a href="https://qbitnetwork.com/terms?type=PrivacyPolicies" target="_blank">Privacy Policies</a>
134 136
             </div>
135 137
 
136 138
           </Checkbox>
137
-        </Form.Item>
139
+        </Form.Item> */}
138 140
         <Form.Item>
139 141
           <Button
140 142
             type="primary"

+ 6
- 5
src/routes/routes.jsx Прегледај датотеку

@@ -6,7 +6,8 @@ import {
6 6
   IdcardOutlined,
7 7
   SettingOutlined,
8 8
   ShopOutlined,
9
-  BankOutlined
9
+  BankOutlined,
10
+  MinusOutlined
10 11
 } from "@ant-design/icons";
11 12
 import { Outlet, Navigate } from "react-router-dom";
12 13
 import AuthLayout from "@/layouts/AuthLayout";
@@ -80,7 +81,7 @@ export const authRoutes = [
80 81
         element: <AccountManagement />,
81 82
         meta: {
82 83
           title: "账户管理",
83
-          icon: <SolutionOutlined />,
84
+          icon: <MinusOutlined />,
84 85
         },
85 86
       },
86 87
       {
@@ -88,7 +89,7 @@ export const authRoutes = [
88 89
         element: <PayMent />,
89 90
         meta: {
90 91
           title: "付款",
91
-          icon: <SolutionOutlined />,
92
+          icon: <MinusOutlined />,
92 93
         },
93 94
       },
94 95
       {
@@ -96,7 +97,7 @@ export const authRoutes = [
96 97
         element: <RecipientManagement />,
97 98
         meta: {
98 99
           title: "收款方管理",
99
-          icon: <SolutionOutlined />,
100
+          icon: <MinusOutlined />,
100 101
         },
101 102
       },
102 103
       {
@@ -104,7 +105,7 @@ export const authRoutes = [
104 105
         element: <StoreForeignExchange />,
105 106
         meta: {
106 107
           title: "店铺和结汇额度管理",
107
-          icon: <SolutionOutlined />,
108
+          icon: <MinusOutlined />,
108 109
         },
109 110
       },
110 111
     ],