Skip to content

待审核注册网点

基础信息

说明
菜单路径/operationsManagement/reviewManage/petChannelNetworkAudit/toAudit
路由名称petChannelNetwork
页面组件src/views/operationsManagement/reviewManage/petChannelNetworkAudit/toAudit/index.vue
接口模块组件内 this.$api.post(...) 直接调用
Store
页面定位查看待审核(auditStatus=0)注册网点列表并进入审核

页面功能

与「全部注册网点」共用同一套筛选+表格框架,差异如下:

1. 筛选区差异

  • 写法为 Vue2 Options API(非 <script setup>)。
  • 查询参数固定 searchData.auditStatus = '0',无审核状态多选、无审核时间筛选项;地址筛选用 DistrictSelect 组件(单选省/市/区,返回 provinceCode/cityCode/areaCode)。
  • 其余筛选项:服务商名称、网点名称、网点编码、统一社会信用代码、注册渠道、详细地址、注册时间、注册来源。
  • 支持更多筛选展开(SearchContainer isMore)。

2. 表格与操作差异

表格列较全部页少「审核时间、操作人」两列(因为均为待审核状态)。操作列仅一个「审核」按钮,点击跳转审核详情 .../petChannelNetworkAudit/auditDetailsquery: { id, view: true })。

3. 生命周期与分页

createdgetOptionsgetTableDataactivated 重新查询。分页用原生 el-paginationpageshow 控制重渲染)。

使用组件

组件路径用途
Container@/components/container页面容器
SearchContainer@/components/SearchTableContainer筛选区容器
TableContainer@/components/SearchTableContainer表格区容器
DistrictSelect@/components/DistrictSelect所在地址(省/市/区)单选

使用 Store

无。

调用接口

所有接口实际请求统一带 /api 前缀(下表为业务路径简写)。

接口 URL用途
network/auditNetworkPageQuery分页查询注册网点列表(auditStatus=0)
ddic/getList字典(注册渠道 supplier_network_registration_channel / 注册来源 supplier_network_channel

修改记录

修改人修改时间修改内容
zhouw2026-07-03初始化页面
zhouw2026-07-09编写页面内容