|
@@ -31,7 +31,13 @@
|
|
|
</template>
|
|
|
<el-descriptions title="" :column="1" border style="max-height: 400px; overflow: auto">
|
|
|
<el-descriptions-item label="审批人">甄别待审批工单审批时登录的用户</el-descriptions-item>
|
|
|
- <el-descriptions-item label="审批数量">甄别待审批工单审批通过数量 </el-descriptions-item>
|
|
|
+ <template v-if="['YiBin', 'LuZhou'].includes(themeConfig.appScope)">
|
|
|
+ <el-descriptions-item label="审批数量">甄别待审批工单审批通过数量 </el-descriptions-item>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <el-descriptions-item label="审批同意数量">甄别审批同意的工单数量 </el-descriptions-item>
|
|
|
+ <el-descriptions-item label="审批不同意数量">甄别审批不同意的工单数量 </el-descriptions-item>
|
|
|
+ </template>
|
|
|
<el-descriptions-item label="被退回数量">甄别待审批工单被退回数量</el-descriptions-item>
|
|
|
<el-descriptions-item label="小计"> 审批数量+被退回数量</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
@@ -69,7 +75,13 @@
|
|
|
>
|
|
|
<vxe-column field="auditName" title="审批人"></vxe-column>
|
|
|
<vxe-column field="stepName" title="审批环节" v-if="['ZiGong'].includes(themeConfig.appScope)"></vxe-column>
|
|
|
- <vxe-column field="auditNum" title="审批数量"></vxe-column>
|
|
|
+ <template v-if="['YiBin', 'LuZhou'].includes(themeConfig.appScope)">
|
|
|
+ <vxe-column field="auditNum" title="审批数量"></vxe-column>
|
|
|
+ </template>
|
|
|
+ <template v-if="['ZiGong'].includes(themeConfig.appScope)">
|
|
|
+ <vxe-column field="auditNum" title="审批同意数量"></vxe-column>
|
|
|
+ <vxe-column field="auditNoNum" title="审批不同意数量"></vxe-column>
|
|
|
+ </template>
|
|
|
<vxe-column field="auditBackNum" title="被退回数量"></vxe-column>
|
|
|
<vxe-column field="total" title="小计"></vxe-column>
|
|
|
</vxe-table>
|