魏熙美 5 年 前
コミット
4f9060c48a

+ 1
- 1
src/pages/building/list/add/components/base.jsx ファイルの表示

@@ -114,7 +114,7 @@ function AddBuilding(props) {
114 114
             {getFieldDecorator('buildingProjectType')(<BudildingProjectType />)}
115 115
           </Form.Item>
116 116
           <Form.Item label="均价" >
117
-            {getFieldDecorator('price')(<Input type="number" style={{ width: '210px' }}/>)}m²/元
117
+            {getFieldDecorator('price')(<Input type="number" style={{ width: '210px' }}/>)}元/
118 118
           </Form.Item>
119 119
           <Form.Item label="开盘时间"  >
120 120
             {getFieldDecorator('openingDate')(<DatePicker format="YYYY/MM/DD" />)}

+ 2
- 2
src/pages/customer/recommendCustomer/audit.jsx ファイルの表示

@@ -90,7 +90,7 @@ function body(props) {
90 90
 
91 91
   return (
92 92
     <>
93
-      <Form {...tailFormItemLayout} onSubmit={e => handleSubmit(e, props)} style={{ width: '800px', margin: 'auto' }}>
93
+      <Form {...tailFormItemLayout} onSubmit={e => handleSubmit(e)} style={{ width: '800px', margin: 'auto' }}>
94 94
         <Form.Item label="客户ID" style={{ display: 'none' }}>
95 95
           {getFieldDecorator('customerId')(
96 96
             <Input
@@ -179,7 +179,7 @@ function body(props) {
179 179
         </Form.Item>
180 180
         <Form.Item style={{ display: 'flex', justifyContent: 'center' }}>
181 181
           <Button type="primary" htmlType="submit" className={Styles.SubmitButton}>
182
-            搜索
182
+            确定
183 183
           </Button>
184 184
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
185 185
           <Button onClick={() => router.go(-1)}>

+ 1
- 1
src/pages/customer/recommendCustomer/index.jsx ファイルの表示

@@ -169,7 +169,7 @@ function body(props) {
169 169
         <>
170 170
           {
171 171
             <AuthButton name="admin.customer.recommend.verify.id.put" noRight={null}>
172
-              {record.verifyStatus === 0 ? <span style={{ color: 'rgba(239,39,58,1)',cursor: 'pointer' }} onClick={() => toAudit(record.customerId)}>审核</span> : ''}
172
+              {record.verifyStatus === null ? <span style={{ color: 'rgba(239,39,58,1)',cursor: 'pointer' }} onClick={() => toAudit(record.customerId)}>审核</span> : ''}
173 173
             </AuthButton>
174 174
           }
175 175
         </>