UI修改
This commit is contained in:
parent
700bbe7b54
commit
227adc0f4b
|
@ -79,7 +79,7 @@ export default {
|
|||
}
|
||||
],
|
||||
tableData: [],
|
||||
maxSize: { y: 195 },
|
||||
maxSize: { y: 235 },
|
||||
loadingDynamic: false,
|
||||
loadingTable: false
|
||||
}
|
||||
|
@ -170,6 +170,7 @@ export default {
|
|||
font-size: 16px;
|
||||
color: #212121;
|
||||
text-align: center;
|
||||
box-shadow: 2px 2px 5px #ccc;
|
||||
}
|
||||
.container {
|
||||
background: #fff;
|
||||
|
@ -177,6 +178,7 @@ export default {
|
|||
height: 335px;
|
||||
padding: 0px 0 0 10px;
|
||||
box-sizing: border-box;
|
||||
box-shadow: 2px 2px 5px #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -256,6 +258,10 @@ export default {
|
|||
::v-deep .ant-table-thead {
|
||||
background-color: #f4f5f8;
|
||||
}
|
||||
::v-deep .ant-table-header{
|
||||
margin-right: -17px;
|
||||
}
|
||||
::v-deep .ant-table-body::-webkit-scrollbar{width:0;}
|
||||
</style>
|
||||
<style lang="scss">
|
||||
.testTooltip {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<!--
|
||||
* @Author: hisense.wuhongjian
|
||||
* @Date: 2022-07-05 12:53:03
|
||||
* @LastEditors: hisense.wuhongjian
|
||||
* @LastEditTime: 2022-08-26 10:24:16
|
||||
* @LastEditors: Light
|
||||
* @LastEditTime: 2022-12-30 10:07:30
|
||||
* @Description: 告诉大家这是什么
|
||||
-->
|
||||
<template>
|
||||
|
@ -35,5 +35,9 @@ export default {
|
|||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
&>div{
|
||||
|
||||
box-shadow: 2px 2px 5px #ccc;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -211,6 +211,7 @@ export default {
|
|||
|
||||
.num {
|
||||
font-size: 30px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.unit {
|
||||
|
|
|
@ -68,7 +68,6 @@ export default {
|
|||
const valueItem = y + '-' + m + '-' + d // 组合
|
||||
days.unshift(valueItem) // 添加至数组
|
||||
}
|
||||
|
||||
|
||||
return days
|
||||
},
|
||||
|
@ -88,7 +87,6 @@ export default {
|
|||
endDate: this.endDate
|
||||
},
|
||||
(res) => {
|
||||
|
||||
if (res.data.data && res.data.data.length > 0) {
|
||||
this.data = res.data.data[0].values
|
||||
this.data.map((item) => {
|
||||
|
@ -106,23 +104,23 @@ export default {
|
|||
} else {
|
||||
this.trendChartData = {
|
||||
xaxis: this.ydata,
|
||||
ydata:this.xaxis
|
||||
ydata: this.xaxis
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
this.$nextTick(() => {
|
||||
trendLineChart('trendId', this.trendChartData)
|
||||
})
|
||||
},
|
||||
(err) => {
|
||||
|
||||
|
||||
}
|
||||
)
|
||||
},
|
||||
handleTitleSwitch (idx) {
|
||||
this.selectedTitle = idx
|
||||
this.startDate = this.getData(this.selectedTitle == 0 ? 7 : 30)
|
||||
|
||||
|
||||
this.initChart()
|
||||
},
|
||||
getData (aa) {
|
||||
|
|
|
@ -73,13 +73,13 @@ export default {
|
|||
},
|
||||
// 部门申请
|
||||
resourceData: [],
|
||||
resourceColor: ['#7b2cff', '#fd5151' , '#2ca1ff', '#0adbfa', '#febe13', '#65e5dd', '#f071ff', '#85f67a'],
|
||||
resourceColor: ['#fe845e', '#0058e1', '#48c6c7', '#48c760', '#9c78ed', '#ff9999', '#d5c438', '#ff3e55'],
|
||||
// 部门申请
|
||||
applyData: [],
|
||||
applyColor: ['#5085f2', '#e75fc3', '#f87be2', '#f2719a', '#fca4bb', '#f59a8f', '#fdb301', '#57e7ec', '#cf9ef1'],
|
||||
applyColor: ['#fe845e', '#0058e1', '#48c6c7', '#48c760', '#9c78ed', '#ff9999', '#d5c438', '#ff3e55'],
|
||||
// 部门需求
|
||||
requireData: [],
|
||||
requireColor: ['#FD866A', '#9E87FF', '#58D5FF', '#73DDFF', '#73ACFF', '#FDD56A', '#FDB36A'],
|
||||
requireColor: ['#fe845e', '#0058e1', '#48c6c7', '#48c760', '#9c78ed', '#ff9999', '#d5c438', '#ff3e55'],
|
||||
loadingToDo: false,
|
||||
loadingHasToDo: false,
|
||||
loadingResource: false,
|
||||
|
@ -252,12 +252,20 @@ export default {
|
|||
width: 836px;
|
||||
background: #fff;
|
||||
margin-right: 16px;
|
||||
box-shadow: 2px 2px 5px #ccc;
|
||||
}
|
||||
|
||||
.dept-chart-box {
|
||||
width: 780px;
|
||||
height: 100%;
|
||||
background: #fff;
|
||||
box-shadow: 2px 2px 5px #ccc;
|
||||
&>div{
|
||||
border-left: 1px solid rgba($color: #d0d4de, $alpha: 0.5);
|
||||
}
|
||||
&>div:nth-of-type(1){
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue