|
|
@@ -305,6 +305,12 @@
|
|
|
</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="阻碍原因" align="center" prop="auditReason">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-if="scope.row.auditReason" class="text-danger">{{ scope.row.auditReason }}</span>
|
|
|
+ <span v-else>{{ scope.row.auditReason }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<!-- 口袋助理-加微状态 -->
|
|
|
<el-table-column
|
|
|
label="口袋助理-加微状态"
|
|
|
@@ -1612,7 +1618,7 @@ export default {
|
|
|
// 【新增】流程状态映射
|
|
|
processStatusOptions: [
|
|
|
{ value: 0, label: "待完善", type: "info" },
|
|
|
- { value: 1, label: "待开方", type: "primary" },
|
|
|
+ { value: 1, label: "待推送开方数据", type: "primary" },
|
|
|
{ value: 2, label: "开方中", type: "warning" },
|
|
|
{ value: 3, label: "待审核", type: "warning" },
|
|
|
{ value: 4, label: "已开方", type: "success" },
|