首页名称更改

This commit is contained in:
liuxi 2025-01-15 15:37:43 +08:00
parent 7bdfa85c90
commit aea17133e4
5 changed files with 3872 additions and 27096 deletions

30928
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -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,

View File

@ -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,//

View File

@ -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

View File

@ -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()