首页名称更改
This commit is contained in:
parent
7bdfa85c90
commit
aea17133e4
30928
package-lock.json
generated
30928
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -32,6 +32,7 @@
|
||||
"vuex-persistedstate": "^4.0.0-beta.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@stomp/stompjs": "^5.4.4",
|
||||
"@trydo/files-utils": "^0.1.19-alpha",
|
||||
"@vue/cli-plugin-babel": "~4.3.0",
|
||||
"@vue/cli-plugin-eslint": "~4.3.0",
|
||||
@ -45,8 +46,7 @@
|
||||
"sass": "^1.53.0",
|
||||
"sass-loader": "^8.0.2",
|
||||
"svg-sprite-loader": "^6.0.11",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"@stomp/stompjs": "^5.0.0"
|
||||
"vue-template-compiler": "^2.6.11"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
|
||||
@ -421,10 +421,9 @@ import { values } from "lodash";
|
||||
deptId:'',//区域id
|
||||
current:1,
|
||||
size:10,
|
||||
dataAuthUserId:'',//当前登录用户所拥有权限的用户id
|
||||
dataAuthDeptId:'',//当前登录用户所拥有权限的区域id
|
||||
|
||||
mediatorId:'',//调解员id
|
||||
// dataAuthUserId:'',//当前登录用户所拥有权限的用户id
|
||||
// dataAuthDeptId:'',//当前登录用户所拥有权限的区域id
|
||||
// mediatorId:'',//调解员id
|
||||
caseStatus:null,//案件状态
|
||||
mediateStatus:null,//调解状态
|
||||
dispatch:null,//分案状态
|
||||
@ -653,7 +652,7 @@ import { values } from "lodash";
|
||||
// 选择状态重置
|
||||
this.selectionData = []
|
||||
this.checkedCheckAll = false
|
||||
|
||||
|
||||
this.queryParam.current = val
|
||||
api.getCaseInfoList(this.queryParam).then(res => {
|
||||
if (!res.code) {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<!-- <el-scrollbar :style="'height:'+`${contentHeight}`+'px'"> -->
|
||||
<div class="layout-content-wrap flex-column">
|
||||
<div class="work-hello">
|
||||
<span>你好,李德生</span>
|
||||
<span>你好,{{userInfo.realName || userInfo.showName ||'-'}}</span>
|
||||
</div>
|
||||
<div class="flex-row justify-content-between work-main p-16">
|
||||
<div class="border-radius-4 flex-column casework1">
|
||||
@ -171,6 +171,7 @@
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
userInfo:{},
|
||||
eventTraDialog:null,//事项追踪
|
||||
casePkOptions:[],//案件包
|
||||
queryParamJZ: {
|
||||
@ -248,7 +249,10 @@
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
|
||||
if(JSON.parse(sessionStorage.getItem('userInfo'))){
|
||||
this.userInfo = JSON.parse(sessionStorage.getItem('userInfo'))
|
||||
}
|
||||
|
||||
// 判断当前登录人角色,如果是普通调解员,则默认展示区域且不可选择
|
||||
let identifier = this.$store.state.userinfo.identifier
|
||||
if(identifier=='mediator'){
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<!-- <el-scrollbar :style="'height:'+`${contentHeight}`+'px'"> -->
|
||||
<div class="layout-content-wrap flex-column">
|
||||
<div class="work-hello">
|
||||
<span>你好,李德生</span>
|
||||
<span>你好,{{userInfo.realName || userInfo.showName ||'-'}}</span>
|
||||
</div>
|
||||
<div class="flex-row justify-content-between work-main p-16">
|
||||
<div class="border-radius-4 flex-column casework1">
|
||||
@ -213,6 +213,7 @@ import { color } from "echarts";
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
userInfo:{},
|
||||
eventTraDialog:null,//事项追踪
|
||||
casePkOptions:[],//案件包
|
||||
queryParamJZ: {
|
||||
@ -293,6 +294,22 @@ import { color } from "echarts";
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
if(JSON.parse(sessionStorage.getItem('userInfo'))){
|
||||
this.userInfo = JSON.parse(sessionStorage.getItem('userInfo'))
|
||||
|
||||
// 判断当前登录人角色,如果是普通调解员,则默认展示区域且不可选择
|
||||
let identifier = this.$store.state.userinfo
|
||||
console.log(identifier,'identifier')
|
||||
if(identifier=='mediator'){
|
||||
this.deptDisabled = true
|
||||
this.queryParam.deptId = this.$store.state.userinfo.deptId
|
||||
}else{
|
||||
this.deptDisabled = false
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
this.getCaseapkList()
|
||||
this.getCaseInfoList()
|
||||
this.drawCharts()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user