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