feat(crm,wms): 重构客诉流程,优化节点与展示逻辑

1.  重构客诉受理流程:改为质量部+生产部并行处理,后续流转至陈总审批、吴部长处理
2.  移除原有的下发、驳回相关接口与逻辑
3.  更新全流程状态文案、标签与步骤展示
4.  调整页面筛选条件与操作按钮
5.  新增陈总审批表单与对应逻辑
This commit is contained in:
王文昊
2026-07-11 10:11:02 +08:00
parent 2a611bad19
commit 3c506e8ca6
13 changed files with 213 additions and 293 deletions

View File

@@ -37,9 +37,9 @@
<el-table-column label="客户诉求" align="center" prop="customerDemand" show-overflow-tooltip></el-table-column>
<el-table-column label="状态" align="center" prop="objectionStatus">
<template slot-scope="scope">
<el-tag v-if="scope.row.objectionStatus === 0" type="danger">待处理</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 1" type="success">处理</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 2" type="info">关闭</el-tag>
<el-tag v-if="scope.row.objectionStatus === 0" type="warning">待处理</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 1" type="success">反馈</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 2" type="info">办结</el-tag>
</template>
</el-table-column>
<el-table-column label="钢卷信息" align="center" prop="coilList" width="200" show-overflow-tooltip>

View File

@@ -37,9 +37,9 @@
<el-table-column label="客户诉求" align="center" prop="customerDemand" show-overflow-tooltip></el-table-column>
<el-table-column label="状态" align="center" prop="objectionStatus">
<template slot-scope="scope">
<el-tag v-if="scope.row.objectionStatus === 0" type="danger">待处理</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 1" type="success">处理</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 2" type="info">关闭</el-tag>
<el-tag v-if="scope.row.objectionStatus === 0" type="warning">待处理</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 1" type="success">反馈</el-tag>
<el-tag v-else-if="scope.row.objectionStatus === 2" type="info">办结</el-tag>
</template>
</el-table-column>
<el-table-column label="钢卷信息" align="center" prop="coilList" width="200" show-overflow-tooltip>