企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 1.4. ChainCtl ./shop/controllers/ChainCtl.php 门店控制器 ### 1.4.1. 门店列表数据 #### 1.4.1.1. 请求URL api.php?ctl=Chain&met=lists&typ=json #### 1.4.1.2. 请求参数 | 键值 | 类型 | 描述 | | --- | --- | --- | | page | int | 当前页码 | | rows | int | 每页记录条数 | | sidx | string | 排序字段 | | sord | string | 排序方式: ASC | DESC | | store\_id | int | 描述 | #### 1.4.1.3. 返回数据 ~~~json { } ~~~ ### 1.4.2. 读取门店商品信息 #### 1.4.2.1. 请求URL api.php?ctl=Chain&met=listChainByItem&typ=json #### 1.4.2.2. 请求参数 | 键值 | 类型 | 描述 | | --- | --- | --- | | item\_id | string | 描述 | | page | int | 当前页码 | | rows | int | 每页记录条数 | | sidx | string | 排序字段 | | sord | string | 排序方式: ASC | DESC | #### 1.4.2.3. 返回数据 ~~~json { } ~~~ ### 1.4.3. 读取门店 #### 1.4.3.1. 请求URL api.php?ctl=Chain&met=get&typ=json #### 1.4.3.2. 请求参数 | 键值 | 类型 | 描述 | | --- | --- | --- | | chain\_id | string | 门店Id | #### 1.4.3.3. 返回数据 ~~~json { } ~~~ ### 1.4.4. 读取门店详情 #### 1.4.4.1. 请求URL api.php?ctl=Chain&met=getChainInfo&typ=json #### 1.4.4.2. 请求参数 | 键值 | 类型 | 描述 | | --- | --- | --- | | chain\_id | string | 门店Id | #### 1.4.4.3. 返回数据 ~~~json { } ~~~ ### 1.4.5. 读取最近的门店 #### 1.4.5.1. 请求URL api.php?ctl=Chain&met=getNearChain&typ=json #### 1.4.5.2. 请求参数 | 键值 | 类型 | 描述 | | --- | --- | --- | | store\_id | int | 描述 | | item\_id | array | 描述 | | lat | string | 描述 | | lng | string | 描述 | #### 1.4.5.3. 返回数据 ~~~json { } ~~~ ### 1.4.6. 读取门店商品信息 #### 1.4.6.1. 请求URL api.php?ctl=Chain&met=listsChainItems&typ=json #### 1.4.6.2. 请求参数 | 键值 | 类型 | 描述 | | --- | --- | --- | | chain\_id | string | 门店Id | | page | int | 当前页码 | | rows | int | 每页记录条数 | | sidx | string | 排序字段 | | sord | string | 排序方式: ASC | DESC | #### 1.4.6.3. 返回数据 ~~~json { } ~~~