# 模板套装列表筛选项

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/template_component/suit/select:
    get:
      summary: 模板套装列表筛选项
      deprecated: false
      description: |
        此接口返回模板套装列表筛选项，用于模板套装列表接口的筛选项数据填充
      tags:
        - 模板
      parameters:
        - name: x-api-key
          in: header
          description: ''
          required: true
          example: '{{apiKey}}'
          schema:
            type: string
        - name: x-channel
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: x-token
          in: header
          description: ''
          required: true
          example: '{{token}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    description: 返回码，0表示成功，非0表示异常
                  data:
                    type: object
                    properties:
                      colour:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              description: 颜色ID
                            name:
                              type: string
                              description: 颜色名称
                            en_name:
                              type: string
                            code:
                              type: string
                              description: 颜色值
                          required:
                            - id
                            - name
                            - en_name
                            - code
                          x-apifox-orders:
                            - id
                            - name
                            - en_name
                            - code
                      suit_style:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: integer
                              description: 风格ID
                            title:
                              type: string
                              description: 风格名称
                          required:
                            - id
                            - title
                          x-apifox-orders:
                            - id
                            - title
                    required:
                      - colour
                      - suit_style
                    x-apifox-orders:
                      - colour
                      - suit_style
                  msg:
                    type: string
                    description: 返回提示信息
                required:
                  - code
                  - data
                  - msg
                x-apifox-orders:
                  - code
                  - data
                  - msg
              example:
                code: 0
                data:
                  colour:
                    - id: 1
                      name: 橙色
                      en_name: Orange
                      code: '#FCC462'
                    - id: 2
                      name: 红色
                      en_name: ''
                      code: '#FB6E6F'
                  suit_style:
                    - id: 1
                      title: 扁平简约
                    - id: 2
                      title: 商务科技
                msg: ok
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 模板
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4285308/apis/api-165846000-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
  - url: http://test-cn.your-api-server.com
    description: 测试环境
  - url: https://co.aippt.cn
    description: 正式环境
security: []

```
