@custouch/jssdk
    Preparing search index...

    Function getBusinessInfoInForm

    • 表单工商查询

      Parameters

      • params: { formId: string; keyword: string; skip: number }
        • formId: string

          问卷id

        • keyword: string

          企业相关关键字,输入字数大于等于2个或以上,且不允许仅输入公司和有限公司

        • skip: number

          跳过条目数(默认为0,单页返回10条数据)

      Returns Promise<
          {
              statusCode: ReturnCode;
              value: {
                  data: {
                      credit_no: string;
                      id: string;
                      matchItems: string;
                      matchType: string;
                      name: string;
                      oper_name: string;
                      reg_no: string;
                      start_date: string;
                      type: string;
                  }[];
                  index: string;
                  size: string;
                  total: string;
              };
          },
      >