修改bug
This commit is contained in:
parent
5da5221a85
commit
d1060cc612
@ -87,8 +87,8 @@ new Vue({
|
||||
if(!interviewFlag)
|
||||
{
|
||||
// 判断当前登录人角色,如果是普通调解员,则默认展示区域且不可选择
|
||||
let identifier = this.$store.state.userinfo.roleIdentifier
|
||||
if(identifier.includes('manager'))
|
||||
let identifier = this.$store.state.userinfo.roleIdentifierList
|
||||
if(identifier.includes('manager') || identifier.includes('admin'))
|
||||
{
|
||||
router.push('/workbench')
|
||||
}
|
||||
|
||||
@ -188,6 +188,7 @@ import caseapi from "@/services/caseManagement";
|
||||
getProofList(val){
|
||||
this.queryParam.startTime = this.queryParam.beginTime
|
||||
this.queryParam.current = val
|
||||
this.queryParam.isDebatorUpload = 1
|
||||
api.posttrace_proof(this.queryParam).then(res => {
|
||||
if (!res.code) {
|
||||
this.tableData = res.records;
|
||||
|
||||
@ -47,8 +47,8 @@
|
||||
if(this.menuTree.length>0)
|
||||
{
|
||||
// 判断当前登录人角色,如果是普通调解员,则默认展示区域且不可选择
|
||||
let identifier = this.$store.state.userinfo.roleIdentifier
|
||||
if(identifier.includes('manager'))
|
||||
let identifier = this.$store.state.userinfo.roleIdentifierList
|
||||
if(identifier.includes('manager') || identifier.includes('admin'))
|
||||
{
|
||||
// 案件管理员
|
||||
this.menuTree.unshift({children:[],id:0,menuIcon:"menu-home",name:"调解首页",nameEn:"",pid:0,prefix:"mediate",sort:0,type:1,typeName:"",url:"/workbench"})
|
||||
|
||||
@ -183,17 +183,12 @@ export default {
|
||||
if (res.user.resources.length > 0) {
|
||||
|
||||
let url = "/workbenchcm";
|
||||
let identifier = res.user.roleIdentifier
|
||||
if(identifier.includes('manager'))
|
||||
let identifier = res.user.roleIdentifierList
|
||||
if(identifier.includes('manager') || identifier.includes('admin'))
|
||||
{
|
||||
url = '/workbench'
|
||||
}
|
||||
// let data= res.user.resources[0].children[0]
|
||||
// if(data.children.length>0){
|
||||
// url = data.children[0].url
|
||||
// }else{
|
||||
// url = data.url
|
||||
// }
|
||||
|
||||
this.$store.commit('setRoutes', url)
|
||||
this.$router.push(url)
|
||||
} else {
|
||||
|
||||
@ -664,6 +664,7 @@ import { values } from "lodash";
|
||||
this.checkedCheckAll = false
|
||||
|
||||
this.queryParam.current = val
|
||||
this.queryParam.dispatch = true //默认已分案
|
||||
api.getCaseInfoList(this.queryParam).then(res => {
|
||||
if (!res.code) {
|
||||
this.tableData = res.records;
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
</el-row>
|
||||
<el-row v-if="Object.keys(this.addOrEditDeptConfig.data).length>0 && this.addOrEditDeptConfig.data.pid != 0" type="flex" align="middle">
|
||||
<el-col :span="24">
|
||||
<el-form-item label="区域负责人" prop="remark">
|
||||
<el-form-item label="团队负责人" prop="remark">
|
||||
<el-select v-model="deptInfo.directorIds" multiple placeholder="请选择" class="width100" :multiple-limit="5">
|
||||
<el-option
|
||||
v-for="item in usersOptions"
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
<div class="flex-row color-text-regular f14">
|
||||
<div class="mr-24">
|
||||
<el-input
|
||||
placeholder="请输入搜索内容"
|
||||
placeholder="请输入团队名称"
|
||||
suffix-icon="el-icon-search"
|
||||
v-model.trim="queryData.name"
|
||||
size="small"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user