Compare commits
3 Commits
5ced373ffe
...
df187151d6
| Author | SHA1 | Date | |
|---|---|---|---|
| df187151d6 | |||
| c7671317c5 | |||
| 1a61e26279 |
@ -7,11 +7,22 @@ const getChildrenRoutes = (routes) => {
|
|||||||
const result = [];
|
const result = [];
|
||||||
const { deptBizType, deptLevel } = getItem('deptId')[0]
|
const { deptBizType, deptLevel } = getItem('deptId')[0]
|
||||||
const roleList = getItem('roleList') ? getItem('roleList').filter(item => item.roleCode == 'JS_666666').length > 0 : false
|
const roleList = getItem('roleList') ? getItem('roleList').filter(item => item.roleCode == 'JS_666666').length > 0 : false
|
||||||
|
const xjLsit = getItem('roleList') ? getItem('roleList').filter(item => item.roleCode == 'JS_999999').length > 0 : false
|
||||||
|
console.log(roleList, xjLsit);
|
||||||
|
|
||||||
routes.forEach((route) => {
|
routes.forEach((route) => {
|
||||||
if (route.children && route.children.length > 0) {
|
if (route.children && route.children.length > 0) {
|
||||||
if (deptBizType == '23' && roleList) {
|
if (deptBizType == '23') {
|
||||||
// 在这个条件分支中也需要过滤掉/internalAuditor路由
|
|
||||||
|
if (roleList) {
|
||||||
result.push(...route.children);
|
result.push(...route.children);
|
||||||
|
} else if (xjLsit) {
|
||||||
|
if (route.path == '/JudgmentHome') {
|
||||||
|
route.children.splice(route.children.findIndex(item => item.path == '/internalAuditor'), 1)
|
||||||
|
result.push(...route.children);
|
||||||
|
} else {
|
||||||
|
result.push(...route.children);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (route.path == '/HumanIntelligence') {
|
if (route.path == '/HumanIntelligence') {
|
||||||
route.children.splice(route.children.findIndex(item => item.path == '/auditList'), 1)
|
route.children.splice(route.children.findIndex(item => item.path == '/auditList'), 1)
|
||||||
@ -19,7 +30,6 @@ const getChildrenRoutes = (routes) => {
|
|||||||
} else {
|
} else {
|
||||||
result.push(...route.children);
|
result.push(...route.children);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (route.path == '/JudgmentHome') {
|
if (route.path == '/JudgmentHome') {
|
||||||
route.children.splice(route.children.findIndex(item => item.path == '/internalAuditor'), 1)
|
route.children.splice(route.children.findIndex(item => item.path == '/internalAuditor'), 1)
|
||||||
result.push(...route.children);
|
result.push(...route.children);
|
||||||
@ -27,6 +37,37 @@ const getChildrenRoutes = (routes) => {
|
|||||||
result.push(...route.children);
|
result.push(...route.children);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if (route.path == '/HumanIntelligence') {
|
||||||
|
route.children.splice(route.children.findIndex(item => item.path == '/auditList'), 1)
|
||||||
|
result.push(...route.children);
|
||||||
|
} else {
|
||||||
|
result.push(...route.children);
|
||||||
|
}
|
||||||
|
if (route.path == '/JudgmentHome') {
|
||||||
|
route.children.splice(route.children.findIndex(item => item.path == '/internalAuditor'), 1)
|
||||||
|
result.push(...route.children);
|
||||||
|
} else {
|
||||||
|
result.push(...route.children);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// if (deptBizType == '23' && (roleList || xjLsit)) {
|
||||||
|
// // 在这个条件分支中也需要过滤掉/internalAuditor路由
|
||||||
|
// result.push(...route.children);
|
||||||
|
// } else {
|
||||||
|
|
||||||
|
|
||||||
|
// if (route.path == '/JudgmentHome' && xjLsit) {
|
||||||
|
// route.children.splice(route.children.findIndex(item => item.path == '/internalAuditor'), 1)
|
||||||
|
// result.push(...route.children);
|
||||||
|
// } else {
|
||||||
|
// result.push(...route.children);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@ -61,20 +61,24 @@
|
|||||||
<!-- "市情指挥人员": ["采纳", "回退", "分组", "转线索", "转合成", "转会商", "打标签", "修改", "详情", "关注部门", "送审"], -->
|
<!-- "市情指挥人员": ["采纳", "回退", "分组", "转线索", "转合成", "转会商", "打标签", "修改", "详情", "关注部门", "送审"], -->
|
||||||
<!-- "县情指人员": ["上报", "回退", "修改", "详情", "送审"], -->
|
<!-- "县情指人员": ["上报", "回退", "修改", "详情", "送审"], -->
|
||||||
<template #controls="{ row }">
|
<template #controls="{ row }">
|
||||||
<el-link v-if="isShowBtn('送审', row) && qxkz.deptLevel == '01'" :disabled="row.sldshzt != '00'||row.lczt != '04'" size="small"
|
<el-link v-if="isShowBtn('送审', row) && qxkz.deptLevel == '01'"
|
||||||
type="primary" @click="postXxcjXxcjTjsh(row)">送审</el-link>
|
:disabled="row.sldshzt != '00' || row.lczt != '04'" size="small" type="primary"
|
||||||
<el-link v-if="isShowBtn('送审', row) && qxkz.deptLevel == '02'" :disabled="row.xldshzt != '00'||row.lczt != '04'" size="small"
|
@click="postXxcjXxcjTjsh(row)">送审</el-link>
|
||||||
type="primary" @click="postXxcjXxcjTjsh(row)">送审</el-link>
|
<el-link v-if="isShowBtn('送审', row) && qxkz.deptLevel == '02'"
|
||||||
|
:disabled="row.xldshzt != '00' || row.lczt != '04'" size="small" type="primary"
|
||||||
|
@click="postXxcjXxcjTjsh(row)">送审</el-link>
|
||||||
<!-- (01 提交 02 上报县局 03 上班市局 04 采纳 05 退回 06 打标签 07 转合成 08 转线索 09 转会商)v-if="qxkz.deptLevel == '01'" -->
|
<!-- (01 提交 02 上报县局 03 上班市局 04 采纳 05 退回 06 打标签 07 转合成 08 转线索 09 转会商)v-if="qxkz.deptLevel == '01'" -->
|
||||||
<!-- 在提交和退回得状态才能进行上报 -->
|
<!-- 在提交和退回得状态才能进行上报 -->
|
||||||
<el-link v-if="isShowBtn('上报')" size="small" type="primary" @click="appearNewspapers(row)" :disabled="row.xldshzt != '02'">上报</el-link>
|
<el-link v-if="isShowBtn('上报')" size="small" type="primary" @click="appearNewspapers(row)"
|
||||||
|
:disabled="row.xldshzt != '02' || (row.lczt != '02' || row.lczt != '03')">上报</el-link>
|
||||||
<el-link v-if="isShowBtn('分组')" size="small" type="primary" @click="opneMsg(row)"
|
<el-link v-if="isShowBtn('分组')" size="small" type="primary" @click="opneMsg(row)"
|
||||||
:disabled="row.sldshzt != '02'">分组</el-link>
|
:disabled="row.sldshzt != '02'">分组</el-link>
|
||||||
<!-- 只有领导有肯定 -->
|
<!-- 只有领导有肯定 -->
|
||||||
<!-- <el-link v-if="isShowBtn('肯定')" size="small" type="primary" @click="affirm(row)">肯定</el-link> -->
|
<!-- <el-link v-if="isShowBtn('肯定')" size="small" type="primary" @click="affirm(row)">肯定</el-link> -->
|
||||||
<el-link v-if="isShowBtn('删除')" size="small" type="primary" @clic.stopk="delDictItem(row.id)">删除</el-link>
|
<el-link v-if="isShowBtn('删除')" size="small" type="primary" @clic.stopk="delDictItem(row.id)">删除</el-link>
|
||||||
<el-link v-if="isShowBtn('修改', row)" size="small" type="primary" @click="addEdit('edit', row)">修改</el-link>
|
<el-link v-if="isShowBtn('修改', row)" size="small" type="primary" @click="addEdit('edit', row)">修改</el-link>
|
||||||
<el-link v-if="isShowBtn('续报', row)" size="small" type="primary" @click="addEdit('followUpReport', row)">续报</el-link>
|
<el-link v-if="isShowBtn('续报', row)" size="small" type="primary"
|
||||||
|
@click="addEdit('followUpReport', row)">续报</el-link>
|
||||||
|
|
||||||
<el-link v-if="isShowBtn('详情')" size="small" type="primary" @click="addEdit('info', row)">详情</el-link>
|
<el-link v-if="isShowBtn('详情')" size="small" type="primary" @click="addEdit('info', row)">详情</el-link>
|
||||||
<!-- 所有状态都能进行转线索 -->
|
<!-- 所有状态都能进行转线索 -->
|
||||||
@ -87,7 +91,8 @@
|
|||||||
<!-- <el-link v-if="isShowBtn('转会商')" size="small" type="primary" @click="handleTransferMerchant(row)"
|
<!-- <el-link v-if="isShowBtn('转会商')" size="small" type="primary" @click="handleTransferMerchant(row)"
|
||||||
:disabled="butcontroll('01', row.lczt)">转会商</el-link> -->
|
:disabled="butcontroll('01', row.lczt)">转会商</el-link> -->
|
||||||
|
|
||||||
<el-link v-if="isShowBtn('关注部门')" :disabled="row.sldshzt != '02'" size="small" type="primary" @click="FollowUpOnDept(row)">关注</el-link>
|
<el-link v-if="isShowBtn('关注部门')" :disabled="row.sldshzt != '02'" size="small" type="primary"
|
||||||
|
@click="FollowUpOnDept(row)">关注</el-link>
|
||||||
<!-- 市局能给所有数据创建标签 -->
|
<!-- 市局能给所有数据创建标签 -->
|
||||||
<el-link v-if="isShowBtn('打标签')" size="small" type="primary" @click="openCustomTag(row)"
|
<el-link v-if="isShowBtn('打标签')" size="small" type="primary" @click="openCustomTag(row)"
|
||||||
:disabled="row.sldshzt != '02'">打标签</el-link>
|
:disabled="row.sldshzt != '02'">打标签</el-link>
|
||||||
|
|||||||
@ -208,8 +208,6 @@ const createProcess = (row) => {
|
|||||||
rowData.value = row
|
rowData.value = row
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 线索下发
|
// 线索下发
|
||||||
const xsxfShow = ref(false)
|
const xsxfShow = ref(false)
|
||||||
const openXsxf = (row) => {
|
const openXsxf = (row) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user