render()

in src/routes/System/AppAuth/SearchContent.js [33:65]


  render() {
    const { getFieldDecorator } = this.props.form;
    return (
      <Form layout="inline" onSubmit={this.handleSubmit}>
        <Form.Item className={styles.formInput}>
          {getFieldDecorator('appKey', {
            initialValue: null
          })(
            <Input
              placeholder={getIntlContent("SHENYU.AUTH.INPUTAPPKEY")}
            />,
          )}
        </Form.Item>
        <Form.Item className={styles.formInput}>
          {getFieldDecorator('phone', {
            initialValue: null
          })(
            <Input
              type="phone"
              placeholder={getIntlContent("SHENYU.AUTH.TELPHONE")}
            />,
          )}
        </Form.Item>
        <Form.Item className={styles.formItem}>
          <AuthButton perms="system:authen:list">
            <Button type="primary" htmlType="submit">
              {getIntlContent("SHENYU.SYSTEM.SEARCH")}
            </Button>
          </AuthButton>
        </Form.Item>
      </Form>
    );
  }