yee 7 years ago
parent
commit
cd2a75caa3
1 changed files with 4 additions and 2 deletions
  1. 4 2
      js/component/account/set/company.jsx

+ 4 - 2
js/component/account/set/company.jsx

@@ -313,9 +313,11 @@ const PersonFrom = Form.create()(React.createClass({
                     {...formItemLayout}
                     label="所在地"
                 >
-                    {getFieldDecorator('province')(
+                    {getFieldDecorator('province', {
+                        initialValue: this.state.province
+                    })(
                         <Cascader options={areaSelect()} placeholder="请选择所在地" />
-                    )}
+                        )}
                 </FormItem>
 
                 <FormItem