feat(crm,wms): 重构客诉流程,优化节点与展示逻辑
1. 重构客诉受理流程:改为质量部+生产部并行处理,后续流转至陈总审批、吴部长处理 2. 移除原有的下发、驳回相关接口与逻辑 3. 更新全流程状态文案、标签与步骤展示 4. 调整页面筛选条件与操作按钮 5. 新增陈总审批表单与对应逻辑
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user