首页名称更改

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"
},
"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,

View File

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

View File

@ -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'){

View File

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