工作台:top5
This commit is contained in:
parent
f0bd3218a9
commit
2fa8bdc869
|
@ -12,26 +12,16 @@ export default {
|
||||||
props: {
|
props: {
|
||||||
title: String,
|
title: String,
|
||||||
},
|
},
|
||||||
data() {
|
|
||||||
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
.content-title {
|
.content-title {
|
||||||
height:48px;
|
height: 48px;
|
||||||
line-height:48px;
|
line-height: 48px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
// color: #fff;
|
// color: #fff;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
|
@ -1,26 +1,62 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="frequency">
|
<div class="frequency">
|
||||||
555
|
<contentTitle title="部门能力使用频率TOP5"></contentTitle>
|
||||||
<div>标题</div>
|
<div v-if="!noData">
|
||||||
<div class="no-box">
|
<div class="no-box">
|
||||||
<div class="no2"></div>
|
<div class="no no2">
|
||||||
<div class="no1"></div>
|
<div class="name" :style="{ color: colorObj[2] }">{{ no2Obj.name || '--' }}</div>
|
||||||
<div class="no3"></div>
|
<div class="count">{{ no2Obj.count }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="no no1">
|
||||||
|
<div class="name" :style="{ color: colorObj[1] }">{{ no1Obj.name }}</div>
|
||||||
|
<div class="count">{{ no1Obj.count }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="no no3">
|
||||||
|
<div class="name" :style="{ color: colorObj[3] }">{{ no3Obj.name }}</div>
|
||||||
|
<div class="count">{{ no3Obj.count }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex-row-between row-name" v-for="(data, i) in listInfo" :key="i">
|
||||||
|
<div class="left">
|
||||||
|
<div class="row-index">{{ i + 3 }}</div>
|
||||||
|
<div class="name-text">{{ data.name }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="count-text">{{ data.count }}</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div></div>
|
<div class="no-data" v-else>暂无数据</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import * as Apis from '../api.js'
|
import * as Apis from '../api.js'
|
||||||
|
import contentTitle from './content-title.vue'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
frequenceList: [],
|
listInfo: [],
|
||||||
noInfo: {}
|
colorObj: {
|
||||||
}
|
1: '#4658710',
|
||||||
|
2: '#734204',
|
||||||
|
3: '#805932',
|
||||||
|
},
|
||||||
|
no1Obj: {
|
||||||
|
name: '',
|
||||||
|
count: '',
|
||||||
|
},
|
||||||
|
no2Obj: {
|
||||||
|
name: '',
|
||||||
|
count: '',
|
||||||
|
},
|
||||||
|
no3Obj: {
|
||||||
|
name: '',
|
||||||
|
count: '',
|
||||||
|
},
|
||||||
|
noData: false
|
||||||
|
};
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getData()
|
this.getData();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 频率
|
// 频率
|
||||||
|
@ -28,33 +64,63 @@ export default {
|
||||||
let data = {
|
let data = {
|
||||||
limit: 5,
|
limit: 5,
|
||||||
page: 1,
|
page: 1,
|
||||||
}
|
};
|
||||||
Apis.getFrequence(data, res => {
|
Apis.getFrequence(data, res => {
|
||||||
if (res.data.code !== 0) {
|
if (res.data.code !== 0) {
|
||||||
return this.$message.error(res.data.msg)
|
return this.$message.error(res.data.msg);
|
||||||
}
|
}
|
||||||
console.log('res----频率-------->', res.data);
|
console.log("res----频率-------->", res.data);
|
||||||
this.frequenceList = res.data.data.records || [];
|
let _arr = res.data.data.records || [];
|
||||||
|
if (_arr.length == 0) {
|
||||||
|
this.noData = true
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
for (let i = 0; i < 3; i++) {
|
||||||
|
let k = i + 1;
|
||||||
|
this[`no${k}Obj`].name = _arr[i].name
|
||||||
|
this[`no${k}Obj`].count = _arr[i].count
|
||||||
|
}
|
||||||
|
this.listInfo = []
|
||||||
|
this.listInfo.push(_arr[3])
|
||||||
|
this.listInfo.push(_arr[4])
|
||||||
}, err => {
|
}, err => {
|
||||||
this.$message.error(err)
|
this.$message.error(err);
|
||||||
})
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
components: { contentTitle }
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
.flex-row-between {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
height: 52px;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
.frequency {
|
.frequency {
|
||||||
width: 540px;
|
width: 540px;
|
||||||
height: 335px;
|
height: 335px;
|
||||||
background: pink;
|
background: #fff;
|
||||||
margin-right: 4px;
|
padding: 0 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-box {
|
.no-box {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
margin-bottom: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.no1 {
|
.no1 {
|
||||||
|
@ -64,6 +130,13 @@ export default {
|
||||||
background-image: url("~@/assets/img/workBench/NO1.png");
|
background-image: url("~@/assets/img/workBench/NO1.png");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.no {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
.no2 {
|
.no2 {
|
||||||
width: 170px;
|
width: 170px;
|
||||||
height: 120px;
|
height: 120px;
|
||||||
|
@ -78,4 +151,46 @@ export default {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
background-image: url("~@/assets/img/workBench/NO3.png");
|
background-image: url("~@/assets/img/workBench/NO3.png");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.name {
|
||||||
|
font-size: 16px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-top: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.count {
|
||||||
|
font-size: 18px;
|
||||||
|
color: #2b2b2b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row-name {
|
||||||
|
background: #f4f5f8;
|
||||||
|
border-radius: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row-index {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #414d60;
|
||||||
|
}
|
||||||
|
|
||||||
|
.name-text {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #464545;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.num-text {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #2b2b2b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-data {
|
||||||
|
width: 540px;
|
||||||
|
height: 300px;
|
||||||
|
background: #fff;
|
||||||
|
line-height: 232px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #212121;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
|
@ -79,6 +79,8 @@ export default {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.data = res.data.data.records || [];
|
this.data = res.data.data.records || [];
|
||||||
|
console.log('this.data------------>', this.data);
|
||||||
|
|
||||||
},
|
},
|
||||||
err => {
|
err => {
|
||||||
console.log("err", err);
|
console.log("err", err);
|
||||||
|
|
|
@ -1,17 +1,32 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="risk">
|
<div class="risk">
|
||||||
555
|
<contentTitle title="部门能力使用频率TOP5"></contentTitle>
|
||||||
|
<div class="no-data">暂无数据</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
import contentTitle from './content-title.vue'
|
||||||
export default {
|
export default {
|
||||||
|
components: { contentTitle }
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.risk {
|
.risk {
|
||||||
width: 540px;
|
width: 540px;
|
||||||
height: 335px;
|
height: 335px;
|
||||||
background: pink;
|
background: #fff;
|
||||||
|
padding: 0 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-data {
|
||||||
|
width: 540px;
|
||||||
|
height: 300px;
|
||||||
|
background: #fff;
|
||||||
|
line-height: 232px;
|
||||||
|
font-size: 16px;
|
||||||
|
color: #212121;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
Loading…
Reference in New Issue