Browse Source

修复bug

魏熙美 5 years ago
parent
commit
4f9060c48a

+ 1
- 1
src/pages/building/list/add/components/base.jsx View File

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

+ 2
- 2
src/pages/customer/recommendCustomer/audit.jsx View File

90
 
90
 
91
   return (
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
         <Form.Item label="客户ID" style={{ display: 'none' }}>
94
         <Form.Item label="客户ID" style={{ display: 'none' }}>
95
           {getFieldDecorator('customerId')(
95
           {getFieldDecorator('customerId')(
96
             <Input
96
             <Input
179
         </Form.Item>
179
         </Form.Item>
180
         <Form.Item style={{ display: 'flex', justifyContent: 'center' }}>
180
         <Form.Item style={{ display: 'flex', justifyContent: 'center' }}>
181
           <Button type="primary" htmlType="submit" className={Styles.SubmitButton}>
181
           <Button type="primary" htmlType="submit" className={Styles.SubmitButton}>
182
-            搜索
182
+            确定
183
           </Button>
183
           </Button>
184
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
184
           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
185
           <Button onClick={() => router.go(-1)}>
185
           <Button onClick={() => router.go(-1)}>

+ 1
- 1
src/pages/customer/recommendCustomer/index.jsx View File

169
         <>
169
         <>
170
           {
170
           {
171
             <AuthButton name="admin.customer.recommend.verify.id.put" noRight={null}>
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
             </AuthButton>
173
             </AuthButton>
174
           }
174
           }
175
         </>
175
         </>