大屏页面
@ -0,0 +1,24 @@
|
||||
.DS_Store
|
||||
node_modules
|
||||
/dist
|
||||
|
||||
|
||||
# local env files
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Log files
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Editor directories and files
|
||||
.idea
|
||||
.vscode
|
||||
*.suo
|
||||
/dist/
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
@ -1,3 +1,19 @@
|
||||
# docus_echarts
|
||||
# test
|
||||
|
||||
大屏页面展示1
|
||||
## Project setup
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
### Compiles and hot-reloads for development
|
||||
```
|
||||
npm run serve
|
||||
```
|
||||
|
||||
### Compiles and minifies for production
|
||||
```
|
||||
npm run build
|
||||
```
|
||||
|
||||
### Customize configuration
|
||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||
|
@ -0,0 +1,5 @@
|
||||
module.exports = {
|
||||
presets: [
|
||||
'@vue/cli-plugin-babel/preset'
|
||||
]
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "esnext",
|
||||
"baseUrl": "./",
|
||||
"moduleResolution": "node",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/*"
|
||||
]
|
||||
},
|
||||
"lib": [
|
||||
"esnext",
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"scripthost"
|
||||
]
|
||||
}
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "test",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^1.2.2",
|
||||
"core-js": "^3.8.3",
|
||||
"echarts": "^5.4.1",
|
||||
"element-ui": "^2.15.12",
|
||||
"register-service-worker": "^1.7.2",
|
||||
"vue": "^2.6.14",
|
||||
"vue-router": "^3.5.1",
|
||||
"vuex": "^3.6.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-pwa": "~5.0.0",
|
||||
"@vue/cli-plugin-router": "~5.0.0",
|
||||
"@vue/cli-plugin-vuex": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"postcss-px-to-viewport": "^1.1.1",
|
||||
"sass": "^1.32.7",
|
||||
"sass-loader": "^12.0.0",
|
||||
"vue-template-compiler": "^2.6.14"
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead"
|
||||
]
|
||||
}
|
After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 9.2 KiB |
After Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 22 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 799 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 4.2 KiB |
@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8.00251 14.9297L0 1.07422H6.14651L8.00251 4.27503L9.84583 1.07422H16L8.00251 14.9297Z" fill="black"/>
|
||||
</svg>
|
After Width: | Height: | Size: 215 B |
@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
@ -0,0 +1,34 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
|
||||
<router-view/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {selectArchivingDataVoList} from '@/api/statistical'
|
||||
export default {
|
||||
name: "archiveline",
|
||||
|
||||
methods: {
|
||||
getlist(){
|
||||
selectArchivingDataVoList().then(res=>{
|
||||
|
||||
})
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getlist()
|
||||
window.sessionStorage.setItem("token", "eyJhbGciOiJIUzUxMiJ9.eyJ0b2tlblVzZXIiOiJ7XCJkb3dubG9hZFJlY29yZFwiOjEsXCJuYW1lXCI6XCLlsI_ojINcIixcInJlYWRlckxpc3RcIjpbXCJFQUJFRUI1RDYyODQ0OUE3OTMwRjRDMEE5OTUzQTc2MFwiLFwiRUFCRUVCNUQ2Mjg0NDlBNzkzMEY0QzBBOTk1M0E3NjFcIixcIkVBQkVFQjVENjI4NDQ5QTc5MzBGNEMwQTk5NTNBNzYyXCIsXCJFQUJFRUI1RDYyODQ0OUE3OTMwRjRDMEE5OTUzQTc2M1wiLFwiMTVFN0ZFNzgwM0Y1NDVDQjgxMzkwQkM4OEU3MjUyNDBcIixcIkRCNUU3REE3OEE3RTQ4MDk5MUQ2NUI4QzJBOEUyODUwXCIsXCIxNTI0NjI1MUY0MTE0MjQzODM1MUY1RkE5MEREN0FGOVwiLFwiMERCOTM3OTc4ODU3NDZCMThEQUY2QzBDOTM2RDJEQ0FcIixcIkRFNTk5RDc3MEU4MzQ3Q0NCNTEyMkJDMzU3RDk2RjM1XCIsXCI4M0JFQTkxRDgwODc0MUQ1ODYxNkY3QTBCN0E5QjFCQ1wiLFwiRUFCRUVCNUQ2Mjg0NDlBNzkzMEY0QzBBOTk1M0E3NTdcIixcIkVBQkVFQjVENjI4NDQ5QTc5MzBGNEMwQTk5NTNBNzU4XCIsXCJFQUJFRUI1RDYyODQ0OUE3OTMwRjRDMEE5OTUzQTc1OVwiLFwiRUFCRUVCNUQ2Mjg0NDlBNzkzMEY0QzBBOTk1M0E3NTNcIixcIkVBQkVFQjVENjI4NDQ5QTc5MzBGNEMwQTk5NTNBNzU0XCIsXCJFQUJFRUI1RDYyODQ0OUE3OTMwRjRDMEE5OTUzQTc1NVwiLFwiRUFCRUVCNUQ2Mjg0NDlBNzkzMEY0QzBBOTk1M0E3NTZcIixcIkMzOTEwODVEREYzMTRFNTZCQjA4RjhCODM1OEFERUJBXCIsXCJFQUJFRUI1RDYyODQ0OUE3OTMwRjRDMEE5OTUzQTc1MVwiLFwiRUFCRUVCNUQ2Mjg0NDlBNzkzMEY0QzBBOTk1M0E3NTJcIixcIkM3MEU4QzQyN0EzNjQ4Qjc5QkU4MDc5OEMwOEY0RDEyXCIsXCI3QTlDNjIxRTNGNEY0QzlDQTk1MjkyMTQxQzVFMTVFOFwiLFwiQkZENDA2MzMzMUFENDVGQjgzQzczMzJERjQ5RUNCRjRcIixcIjAwRUY2OTUyRkFBNjQ3Mzk4N0FFRUYxOEU0Njc5MzkyXCIsXCJBQzJDOEY0QTg4ODg0REM4OTQ2MzAzMDJDNjFDNkEwN1wiLFwiODVEQUU3M0E4N0QwNDdEMjhDMjIyRTg3OEM3OEM2NzBcIixcIkFGQjlGQkU2NTZENzQ5MkM4MEFFREU2RTY4NUE4NTFBXCIsXCJEODBFRDQyOUFFQzI0QzM4OUU0NDRGMzE1NkY4OTBCNVwiXSxcInJvbGVJZFwiOi0xMDAsXCJzaG93UHJpbnRcIjoxLFwic2hvd1JlY29yZFwiOjEsXCJ1c2VySWRcIjoxNTE2MjIxNTU0MjQzOTU2NzM3LFwidXNlck5hbWVcIjpcImZ4d1wifSIsImV4cCI6MTY3MzU5NTM3MX0.rF5WdSboaAYAvPI-M-6cIyhM7JmCB5vyaffRpbHS3hKRtcZ_qXinxSjT6STpaqHgub2TCKsIs01_K0dwwIER0w")
|
||||
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
#app {
|
||||
|
||||
}
|
||||
|
||||
|
||||
</style>
|
@ -0,0 +1,80 @@
|
||||
import service from '@/utils/request'
|
||||
const url = "api/collector/st"
|
||||
|
||||
/**
|
||||
* 采集器效率
|
||||
*/
|
||||
|
||||
export function collectorEf() {
|
||||
return service({
|
||||
url:url+`/collectorEf`,
|
||||
method:'get'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询全局采集器信息
|
||||
*/
|
||||
|
||||
export function collectorsGlobalInfo() {
|
||||
return service({
|
||||
url:url+`/collectorsGlobalInfo`,
|
||||
method:'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询采集器状态
|
||||
*/
|
||||
|
||||
export function CollectorsStatus() {
|
||||
return service({
|
||||
url:url+`/collectorsStatus`,
|
||||
method:'get'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 采集服务器状态
|
||||
*/
|
||||
|
||||
export function collectServerStatus() {
|
||||
return service({
|
||||
url:url+`/collectServerStatus`,
|
||||
method:'get'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 采集数量统计
|
||||
*/
|
||||
|
||||
export function countCompleteCollectorTask() {
|
||||
return service({
|
||||
url:url+`/countCompleteCollectorTask`,
|
||||
method:'get'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 实时预警
|
||||
*/
|
||||
|
||||
export function ewMessage() {
|
||||
return service({
|
||||
url:url+`/ewMessage`,
|
||||
method:'get'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* pdf存值
|
||||
*/
|
||||
|
||||
export function pdfDiskUsage() {
|
||||
return service({
|
||||
url:'/file/collector/st/pdfDiskUsage',
|
||||
method:'get'
|
||||
})
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
import service from '@/utils/request'
|
||||
const url = "/statistical"
|
||||
|
||||
/**
|
||||
* 查询全员病案归档率统计
|
||||
*/
|
||||
|
||||
export function selectStArchivingDataVo() {
|
||||
return service({
|
||||
url:url+`/selectStArchivingDataVo`,
|
||||
method:'post'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 地球仪
|
||||
*/
|
||||
|
||||
export function selectStFileData() {
|
||||
return service({
|
||||
url:url+`/selectStFileData`,
|
||||
method:'post'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询科室排名前五数据
|
||||
*/
|
||||
|
||||
export function selectStDepTop5FileData() {
|
||||
return service({
|
||||
url:url+`/selectStDepTop5FileData`,
|
||||
method:'post'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 科室归档折线图
|
||||
*/
|
||||
|
||||
export function selectArchivingDataVoList() {
|
||||
return service({
|
||||
url:url+`/selectArchivingDataVoList`,
|
||||
method:'post'
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 科室归档柱状图
|
||||
*/
|
||||
|
||||
export function selectStDeptFileData() {
|
||||
return service({
|
||||
url:url+`/selectStDeptFileData`,
|
||||
method:'post'
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 未终审质控状态占比
|
||||
*/
|
||||
|
||||
export function selectStNoFileStatState() {
|
||||
return service({
|
||||
url:url+`/selectStNoFileStatState`,
|
||||
method:'post'
|
||||
})
|
||||
}
|
||||
|
@ -0,0 +1,763 @@
|
||||
@import './element.scss';
|
||||
@import './transition.scss';
|
||||
@import './element-variables.scss';
|
||||
@import './submenu-theme.scss';
|
||||
@import './green.scss';
|
||||
@import './default.scss';
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
outline: none;
|
||||
}
|
||||
::-webkit-scrollbar-track-piece {
|
||||
border-radius: 0;
|
||||
}
|
||||
::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
height: 10px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: rgba(144, 147, 153, 0.3);
|
||||
border-radius: 6px;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background-color: rgba(144, 147, 153, 0.5);
|
||||
cursor: pointer;
|
||||
}
|
||||
.el-tooltip__popper{
|
||||
max-width: 40vw;
|
||||
}
|
||||
.cell .el-button{
|
||||
margin-left: 0 !important;
|
||||
margin-right: .521vw !important;
|
||||
}
|
||||
|
||||
.el-card-visible{
|
||||
overflow: visible;
|
||||
}
|
||||
html,
|
||||
body,
|
||||
#app {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #f8f8f8;
|
||||
font-size: 14px;
|
||||
.classic-warp-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.classic-warp {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
.classic-warp-left {
|
||||
box-shadow: 2px 0 8px 0 rgba(29, 35, 41, 0.05);
|
||||
border-right: 1px solid #e6e6e6;
|
||||
}
|
||||
.classic-warp-right {
|
||||
flex: 1;
|
||||
.classic-warp-right-view {
|
||||
padding: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#nprogress .bar {
|
||||
background: #09f !important;
|
||||
}
|
||||
.markdown-body {
|
||||
border: 1px solid #ebeef5 !important;
|
||||
border-radius: 2px !important;
|
||||
z-index: unset !important;
|
||||
.v-note-op {
|
||||
border-bottom: 1px solid #ebeef5 !important;
|
||||
z-index: unset !important;
|
||||
}
|
||||
}
|
||||
.el-button--small{
|
||||
font-size: 14px;
|
||||
}
|
||||
.el-table thead{
|
||||
color:#212121;
|
||||
}
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
.flex-col {
|
||||
flex-direction: column;
|
||||
}
|
||||
.flex-auto {
|
||||
flex: 1;
|
||||
}
|
||||
.flex-items-center {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
@for $i from 10 through 32 {
|
||||
.font#{$i} {
|
||||
font-size: #{$i}px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@for $i from 5 through 20 {
|
||||
.mt#{$i} {
|
||||
margin-top: #{$i}px !important;
|
||||
}
|
||||
.mr#{$i} {
|
||||
margin-right: #{$i}px !important;
|
||||
}
|
||||
.mb#{$i} {
|
||||
margin-bottom: #{$i}px !important;
|
||||
}
|
||||
.ml#{$i} {
|
||||
margin-left: #{$i}px !important;
|
||||
}
|
||||
.pt#{$i} {
|
||||
padding-top: #{$i}px !important;
|
||||
}
|
||||
.pr#{$i} {
|
||||
padding-right: #{$i}px !important;
|
||||
}
|
||||
.pb#{$i} {
|
||||
padding-bottom: #{$i}px !important;
|
||||
}
|
||||
.pl#{$i} {
|
||||
padding-left: #{$i}px !important;
|
||||
}
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.popClass{
|
||||
margin-right: 40vw;
|
||||
.popper__arrow{
|
||||
margin-right: 40vw;
|
||||
}
|
||||
}
|
||||
.el-input__inner{
|
||||
height: 36px;
|
||||
}
|
||||
.el-form-item{
|
||||
margin-top: 15px;
|
||||
}
|
||||
.router-link-active {
|
||||
text-decoration: none;
|
||||
}
|
||||
.form_del{
|
||||
.el-form-item:first-child{
|
||||
// margin-left: -6px ;
|
||||
}
|
||||
}
|
||||
.el-card__header{
|
||||
font-weight: 600;
|
||||
}
|
||||
.el-tree-node__content{
|
||||
height: 30px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.el-button{
|
||||
border-radius:4px ;
|
||||
|
||||
}
|
||||
|
||||
.el-dialog__title{
|
||||
font-size: 16px;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 600;
|
||||
color: #212121;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.jst_center{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
.btn_float {
|
||||
float:right
|
||||
}
|
||||
|
||||
.el-message-box__btns{
|
||||
.el-button--primary{
|
||||
color: #fff;
|
||||
background: #2878FF;
|
||||
&:hover{
|
||||
background: #5192FF;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.importExcel {
|
||||
position: absolute;
|
||||
left: 45px;
|
||||
top: 290px;
|
||||
margin: 0 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.el-button--default:hover{
|
||||
background-color: #fff;
|
||||
}
|
||||
.el-button--default:visited{
|
||||
background-color: #fff;
|
||||
}
|
||||
.el-button--default:link{
|
||||
background-color: #fff;
|
||||
}
|
||||
.el-form-item {
|
||||
margin: 15px 17px 0 20px !important;
|
||||
}
|
||||
.el-dropdown-menu__item:hover{
|
||||
.newAddMenu{
|
||||
background-image: url(../images/konjian/icon_menu_hl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
.newAddOption{
|
||||
background-image: url(../images/konjian/icon_function_hl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
.newAddQueryModel{
|
||||
background-image: url(../images/icon_formwork_hl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
.newAddColumnModel{
|
||||
background-image: url(../images/icon_formwork2_hl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.newAddCustom{
|
||||
background-image: url(../images/icon_field_hl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
.newAddCustom{
|
||||
background-image: url(../images/icon_field_nl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
.newAddMenu{
|
||||
background-image: url(../images/konjian/icon_menu_nl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.newAddOption{
|
||||
background-image: url(../images/konjian/icon_function_nl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
.newAddQueryModel{
|
||||
background-image: url(../images/icon_formwork_nl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.newAddColumnModel{
|
||||
background-image: url(../images/icon_formwork2_nl.png);
|
||||
@include icon;
|
||||
&:before{
|
||||
content: "替";
|
||||
font-size: 16px;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.bt_title {
|
||||
font-size: 14px;
|
||||
}
|
||||
.primaryExport{
|
||||
background-image: url(../images/konjian/btn-icon-upload.png);
|
||||
@include icon;
|
||||
}
|
||||
.primaryDownload{
|
||||
background-image: url(../images/konjian/btn-icon-download.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
.search {
|
||||
background-image: url(../images/konjian/btn-icon-search.png);
|
||||
@include icon;
|
||||
}
|
||||
.loading{
|
||||
background-image: url(../images/konjian/btn-icon-loading-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.warn_icon {
|
||||
background: url(../images/popoup-icon-attention.png);
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
display: block;
|
||||
margin: 5px 5px 0 30px;
|
||||
padding-top: 2px;
|
||||
}
|
||||
|
||||
.el-message-box__status{
|
||||
position: absolute!important;
|
||||
top:13px!important;
|
||||
transform: 0!important;
|
||||
}
|
||||
.confirmtitle{
|
||||
font-size: 16px;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 600;
|
||||
color: #212121;
|
||||
line-height: 26px;
|
||||
}
|
||||
.confirmbody{
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #707070;
|
||||
line-height: 26px;
|
||||
}
|
||||
.el-table .sort-caret.ascending{
|
||||
border-bottom-color:#212121;
|
||||
}
|
||||
.el-table .sort-caret.descending{
|
||||
border-top-color:#212121;
|
||||
}
|
||||
.caoqi{
|
||||
width: 40px;
|
||||
height: 20px;
|
||||
background:#FAE9E9;
|
||||
border-radius: 2px;
|
||||
color: #F75050 ;
|
||||
padding: 4px 8px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.Ycaoqi{
|
||||
width: 2.08333vw;
|
||||
height: 1.04167vw;
|
||||
background: #ffeac5;
|
||||
border-radius: 0.10417vw;
|
||||
color: #ff9b45;
|
||||
padding: 0.20833vw 0.41667vw;
|
||||
margin-right: 0.52083vw;
|
||||
|
||||
}
|
||||
.el-select__tags-text {
|
||||
display: inline-block;
|
||||
//根据自己的需要调整文字宽度
|
||||
max-width: 90px;
|
||||
overflow: hidden;
|
||||
text-overflow:ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
// .el-select__tags{
|
||||
// .el-tag__close{
|
||||
// margin-top: -11px;
|
||||
// }
|
||||
// }
|
||||
|
||||
.table-bottom{
|
||||
width: 100%;
|
||||
}
|
||||
.btn{
|
||||
// padding-bottom: 20px;
|
||||
margin-top: 8px;
|
||||
display: grid !important;
|
||||
text-align: end!important;
|
||||
padding-right: 2vw;
|
||||
.bt_title {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
.el-table th > .cell{
|
||||
padding-left: 15px;
|
||||
}
|
||||
.lock {
|
||||
background: url(../images/lock.png);
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: -20px;
|
||||
}
|
||||
|
||||
.el-icon-timestamp{
|
||||
background: url(../images/timeline-icon-time.png) center no-repeat;
|
||||
|
||||
background-size: cover;
|
||||
|
||||
}
|
||||
|
||||
.el-icon-timestamp:before{
|
||||
content: "替";
|
||||
|
||||
font-size: 16px;
|
||||
|
||||
visibility: hidden;
|
||||
|
||||
}
|
||||
.second {
|
||||
.sp_node_dot{
|
||||
position: absolute;
|
||||
left: -25px!important;
|
||||
background: #fff;
|
||||
top: 0;
|
||||
width: .677vw;
|
||||
height: .677vw;
|
||||
border: .156vw solid #2878ff;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
.warning_icon_green{
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
margin-right: 1px;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
.greenLinght{
|
||||
padding: 5px;
|
||||
border-radius: 50%;
|
||||
background: #36CD76;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.readLinght{
|
||||
padding: 5px;
|
||||
border-radius: 50%;
|
||||
background: #FF4948;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.orangeLight{
|
||||
padding: 5px;
|
||||
border-radius: 50%;
|
||||
background: #FFBB44;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.grayLight{
|
||||
padding: 5px;
|
||||
border-radius: 50%;
|
||||
background: #C2C2C2;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.blueLight{
|
||||
padding: 5px;
|
||||
border-radius: 50%;
|
||||
background: #2878FF;
|
||||
margin-right: 5px;
|
||||
}
|
||||
// .greenLinght{
|
||||
// padding: 5px;
|
||||
// border-radius: 50%;
|
||||
// background: #00FF00;
|
||||
// margin-right: 5px;
|
||||
// }
|
||||
|
||||
|
||||
.confirmbody {
|
||||
|
||||
font-size: 14px;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #707070;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.icon-warning {
|
||||
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border: 2px solid #FF802C;
|
||||
border-radius: 50%;
|
||||
position: absolute !important;
|
||||
// top: 15% !important;
|
||||
}
|
||||
.el-table__expanded-cell{
|
||||
padding: 0!important;
|
||||
}
|
||||
.el-table{
|
||||
.cell {
|
||||
.el-tooltip{
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
}
|
||||
.el-card{
|
||||
// overflow: unset;
|
||||
}
|
||||
.el-notification{
|
||||
// position: relative;
|
||||
}
|
||||
.el-notification{
|
||||
padding: 0;
|
||||
}
|
||||
.el-notification__content{
|
||||
margin: 0;
|
||||
}
|
||||
.msg_notify{
|
||||
// position: fixed;right: 0;bottom: 1vw;
|
||||
|
||||
width: 450px;
|
||||
height: 110px;
|
||||
background:#FFFFFF;
|
||||
// box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.2);
|
||||
border-radius: 4px;z-index: 99999;display: flex;justify-content: center;align-items: center;
|
||||
}
|
||||
.el-table th>.cell{
|
||||
padding-left: 0.5vw;
|
||||
padding-right: 0.5vw;
|
||||
}
|
||||
.el-table .cell{
|
||||
padding-left: 0.5vw;
|
||||
padding-right: 0.5vw;
|
||||
}
|
||||
.DeadSt{
|
||||
// width: 40px;
|
||||
// height: 20px;
|
||||
background:#FF5151;
|
||||
border-radius: 6px;
|
||||
color: #fff;
|
||||
padding: 4px 8px;
|
||||
margin-right: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
.shareBootn{
|
||||
// width: 40px;
|
||||
// height: 20px;
|
||||
background: #2878FF;
|
||||
border-radius: 6px;
|
||||
color: #fff;
|
||||
padding: 4px 8px;
|
||||
margin-right: 10px;
|
||||
display: inline-block;
|
||||
}
|
||||
.el-message-box__title{
|
||||
font-size: 16px;
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 600;
|
||||
color: #212121;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.el-message-box{
|
||||
width: 30vw;
|
||||
}
|
||||
.del-model{
|
||||
.el-message-box__btns{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.el-message-box__message{
|
||||
margin-bottom: 1vw;
|
||||
}
|
||||
.el-icon-warning1{
|
||||
background-image: url(../images/noticfy/alert-icon-warning.png);
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
margin-right: 1px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
.el-icon-error1{
|
||||
background-image: url(../images/noticfy/alert-icon-error.png);
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
margin-right: 1px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
.el-icon-success1{
|
||||
background-image: url(../images/noticfy/alert-icon-success.png);
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
margin-right: 1px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
.lightParent{
|
||||
width: 3vw;
|
||||
}
|
||||
.el-table__empty-block{
|
||||
text-align:left;
|
||||
display: block;
|
||||
}
|
||||
.el-pagination.is-background .el-pager .active:hover{
|
||||
color: #fff!important;
|
||||
}
|
||||
.buttonRadioDefault{
|
||||
|
||||
.el-radio-button,
|
||||
.el-radio-button__inner {
|
||||
width: 5.72vw;
|
||||
}
|
||||
}
|
||||
|
||||
.el-scrollbar__view{
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.el-table{
|
||||
.el-tooltip{
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
// .el-card{
|
||||
// overflow: visible;
|
||||
// }
|
||||
// .clear{
|
||||
// clear: both;
|
||||
// }
|
||||
|
||||
.line-clamp2 {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
.hiddenSel {
|
||||
display: none;
|
||||
}
|
||||
.jsbt{
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.popclass{
|
||||
min-width: 17vw;
|
||||
}
|
||||
.backPRE{
|
||||
background-image: url(../../assets/images/konjian/icon_back_nl.png);
|
||||
@include icon;
|
||||
margin-right: 12px;
|
||||
|
||||
&:hover {
|
||||
background-image: url(../../assets/images/konjian/icon_back_hover.png);
|
||||
};
|
||||
}
|
||||
.LStyle{
|
||||
width: 1px;
|
||||
height: 24px;
|
||||
background: #E5E5E5;
|
||||
}
|
||||
.demo-form-inline{
|
||||
overflow: auto;
|
||||
}
|
||||
.el-dialog__body{
|
||||
padding-top: 0vw;
|
||||
}
|
||||
.form_delete {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
background-image: url(../../assets/images/konjian/icon_delete2.png);
|
||||
position: absolute;
|
||||
right: -35px;
|
||||
top: 10px;
|
||||
}
|
||||
.form_add {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
background-image: url(../../assets/images/konjian/icon_add.png);
|
||||
position: absolute;
|
||||
right: -35px;
|
||||
top: 10px;
|
||||
}
|
||||
|
||||
.el-input__inner{
|
||||
border-radius: 4px;
|
||||
}
|
||||
.form_about {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin-right: .2vw;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
background-image: url(../../assets/images/konjian/icon_about.png);
|
||||
|
||||
}
|
||||
.gray_border{
|
||||
border: 1px solid #DCDCDC;
|
||||
}
|
@ -0,0 +1,373 @@
|
||||
|
||||
@mixin icon{
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
margin-right: 1px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
@mixin iconMenu {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 0 10px;
|
||||
margin-right: 10px;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.default{
|
||||
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
|
||||
background-color: #E9F1FF !important;
|
||||
color: #2878FF !important;
|
||||
}
|
||||
|
||||
.expand {
|
||||
color: #2878FF !important;
|
||||
}
|
||||
|
||||
.is-current {
|
||||
&>.el-tree-node__content>.el-tree-node__expand-icon {
|
||||
color: #2878FF;
|
||||
}
|
||||
|
||||
&>.el-tree-node__content>.el-tree-node__expand-icon.is-leaf {
|
||||
color: #E9F1FF;
|
||||
}
|
||||
}
|
||||
.annot:hover{
|
||||
background:#E9F1FF;
|
||||
}
|
||||
.annot:active{
|
||||
background:#d5e5ff;
|
||||
}
|
||||
.el-dropdown-menu__item:hover {
|
||||
.signout {
|
||||
background-image: url(../images/infomenu_logout_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.msgDialog {
|
||||
background-image: url(../images/infomenu_message_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.caozuo {
|
||||
background-image: url(../images/infomenu_guide_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.newpwd {
|
||||
background-image: url(../images/infomenu_pass_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.newdata {
|
||||
background-image: url(../images/infomenu_user_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
}
|
||||
.el-menu--horizontal .el-menu .el-menu-item:hover{
|
||||
.menu_list{
|
||||
background-image: url(../images/konjian/menu-list-nl.png);
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 0 10px;
|
||||
margin-right: 10px;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
.is-checked{
|
||||
.el-checkbox__label {
|
||||
color: #09f;
|
||||
}
|
||||
}
|
||||
// .el-menu--horizontal .el-menu .el-menu-item:hover{
|
||||
// background: #E9F1FF!important;
|
||||
// .menu_title{
|
||||
// color: #2878FF;
|
||||
// }
|
||||
// }
|
||||
.sjx-box{
|
||||
background: white;
|
||||
}
|
||||
.foot-box {
|
||||
color: #0099ff;
|
||||
}
|
||||
.addPostil{
|
||||
&:hover{
|
||||
background: #E9F1FF!important;
|
||||
|
||||
}
|
||||
}
|
||||
.blueQ{
|
||||
background: #2878FF;
|
||||
}
|
||||
.warning_icon_green{
|
||||
background-image: url(../../assets/images/noticfy/notification_icon_attention.png);
|
||||
}
|
||||
.Sclear {
|
||||
color: #707070;
|
||||
&:hover{
|
||||
color: #2878FF;
|
||||
}
|
||||
}
|
||||
.openBaseInfo{
|
||||
background-image: url(../../assets/images/konjian/icon_spread_nl.png);
|
||||
}
|
||||
.closeBaseInfo{
|
||||
background-image: url(../../assets/images/konjian/icon_retract_nl.png);
|
||||
}
|
||||
.el-button--primary{
|
||||
border-radius: 4px !important;
|
||||
background: #2878FF;
|
||||
}
|
||||
.el-button--primary:hover{
|
||||
background: #5192FF;
|
||||
}
|
||||
.el-button--primary:focus{
|
||||
background: #5192FF;
|
||||
}
|
||||
.el-button--primary:active{
|
||||
background: #5192FF;
|
||||
}
|
||||
.el-pagination.is-background .el-pager li:not(.disabled).active{
|
||||
background:#2878FF ;
|
||||
}
|
||||
.el-button--text{
|
||||
color:#2878FF ;
|
||||
}
|
||||
.head_t{
|
||||
font-size: 16px;
|
||||
color: #212121;
|
||||
line-height: 28px;
|
||||
}
|
||||
.el-table--striped .el-table__body tr.el-table__row--striped td{
|
||||
|
||||
}
|
||||
.navbar{
|
||||
background-image: url(../../assets/images/nar/nav_bg.png);
|
||||
}
|
||||
|
||||
|
||||
.body_t{
|
||||
font-size: 14px;
|
||||
color: #212121;
|
||||
line-height: 28px;
|
||||
}
|
||||
.el-tree-node__content:hover{
|
||||
background: #E9F1FF;
|
||||
color: #2878FF;
|
||||
.el-tree-node__expand-icon{
|
||||
color: #2878FF!important;
|
||||
}
|
||||
.el-tree-node__expand-icon.is-leaf{
|
||||
color: #E9F1FF!important;
|
||||
}
|
||||
}
|
||||
.blue_line {
|
||||
background: #2878FF;
|
||||
}
|
||||
.bad_tag,.bad_tagS{
|
||||
background: #2878FF;
|
||||
}
|
||||
.el-message-box__btns{
|
||||
.el-button--primary{
|
||||
color: #fff !important;
|
||||
background: #2878ff !important;
|
||||
&:hover{
|
||||
background: #5192FF!important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.el-button--default:focus{
|
||||
background:#FFF;
|
||||
border: 1px solid #E5E5E5;
|
||||
}
|
||||
|
||||
.el-button--default{
|
||||
&:hover{
|
||||
border:1px solid #5192FF;
|
||||
color: #5192FF;
|
||||
background:rgba(40, 120, 255, 0.1);
|
||||
.peizhi{
|
||||
background-image: url(../images/konjian/setting-btn-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.assignR{
|
||||
background-image: url(../images/konjian/btn-icon-appoint-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.shoucan {
|
||||
background-image: url(../images/konjian/btn-icon-collect-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.shareShoucan {
|
||||
background-image: url(../images/konjian/icon-share-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
// .Yshoucan {
|
||||
// background-image: url(../images/konjian/btn-icon-collect-hover.png);
|
||||
// @include icon;
|
||||
// }
|
||||
.qinkon {
|
||||
background-image: url(../images/konjian/btn-icon-clear-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.export {
|
||||
background-image: url(../images/konjian/btn-icon-export-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.import {
|
||||
background-image: url(../images/konjian/btn-icon-download-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.newadd{
|
||||
background-image: url(../images/konjian/btn-icon-add-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.shenhe{
|
||||
background-image: url(../images/konjian/btn-icon-examine-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.paper{
|
||||
background-image: url(../images/konjian/btn-icon-submit-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.jieyue{
|
||||
background-image: url(../images/konjian/btn-icon-apply-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.suodin{
|
||||
background-image: url(../images/konjian/btn-icon-locking-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.fencun{
|
||||
background-image: url(../images/konjian/btn-icon-seal-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiefun{
|
||||
background-image: url(../images/konjian/btn-icon-unseal-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiesuo{
|
||||
background-image: url(../images/konjian/btn-icon-unlocking-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.suiying{
|
||||
background-image: url(../images/konjian/btn-icon-preview-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.tuihui{
|
||||
background-image: url(../images/konjian/btn-icon-return-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.conplete{
|
||||
background-image: url(../images/konjian/btn-icon-refresh-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
.qindan{
|
||||
background-image: url(../images/konjian/btn-icon-list-hover.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
.el-button--default{
|
||||
color: #212121;
|
||||
.qinkon {
|
||||
background-image: url(../images/konjian/btn-icon-clear-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.shoucan {
|
||||
background-image: url(../images/konjian/btn-icon-collect-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.shareShoucan {
|
||||
background-image: url(../images/konjian/icon-share-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.Yshoucan {
|
||||
background-image: url(../images/konjian/btn-icon-collected-blue.png);
|
||||
@include icon;
|
||||
}
|
||||
.export {
|
||||
background-image: url(../images/konjian/btn-icon-export-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.import {
|
||||
background-image: url(../images/konjian/btn-icon-download-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.peizhi {
|
||||
background-image: url(../images/konjian/setting-btn-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.assignR{
|
||||
background-image: url(../images/konjian/btn-icon-appoint-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.newadd{
|
||||
background-image: url(../images/konjian/btn-icon-add-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.shenhe{
|
||||
background-image: url(../images/konjian/btn-icon-examine-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.paper{
|
||||
background-image: url(../images/konjian/btn-icon-submit-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.jieyue{
|
||||
background-image: url(../images/konjian/btn-icon-apply-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.fencun{
|
||||
background-image: url(../images/konjian/btn-icon-seal-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiefun{
|
||||
background-image: url(../images/konjian/btn-icon-unseal-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.suodin{
|
||||
background-image: url(../images/konjian/btn-icon-locking-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiesuo{
|
||||
background-image: url(../images/konjian/btn-icon-unlocking-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.suiying{
|
||||
background-image: url(../images/konjian/btn-icon-preview-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.tuihui{
|
||||
background-image: url(../images/konjian/btn-icon-return-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.conplete{
|
||||
background-image: url(../images/konjian/btn-icon-refresh-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
.qindan{
|
||||
background-image: url(../images/konjian/btn-icon-list-nl.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
}
|
||||
.disabled_btn{
|
||||
&:hover{
|
||||
border:1px solid #ebeef5!important;
|
||||
color: #212121!important;
|
||||
background:#fff;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,181 @@
|
||||
.el-scrollbar__wrap {
|
||||
overflow-x: hidden !important;
|
||||
max-height: 100%; /*防止页面切换时,滚动条高度不变的问题(滚动条高度非滚动条滚动高度)*/
|
||||
}
|
||||
.el-menu {
|
||||
border-right: none !important;
|
||||
}
|
||||
.el-menu-item,
|
||||
.el-submenu__title {
|
||||
transition: border-color 0s, background-color 0s, color 0s !important;
|
||||
}
|
||||
.el-icon-arrow-down {
|
||||
font-size: 12px;
|
||||
}
|
||||
.submenu-theme-dark {
|
||||
.el-submenu .el-menu-item,
|
||||
.child-menu .el-submenu .el-submenu__title {
|
||||
background-color: #1a2636 !important;
|
||||
&:hover {
|
||||
background-color: rgba(0, 0, 0, 0.5) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
.el-menu-vertical {
|
||||
width: 210px;
|
||||
}
|
||||
.el-menu--collapse .el-menu-item span {
|
||||
height: 0;
|
||||
width: 0;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
display: inline-block;
|
||||
}
|
||||
.el-menu--collapse .el-submenu__title span {
|
||||
height: 0;
|
||||
width: 0;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
display: inline-block;
|
||||
}
|
||||
.el-menu--collapse .el-submenu__icon-arrow {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.el-menu--horizontal > .el-menu-item:not(.is-disabled):hover,
|
||||
.el-menu--horizontal > .el-menu-item:not(.is-disabled):focus,
|
||||
.el-menu--horizontal .el-submenu__title:hover,
|
||||
.el-submenu__title:focus {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
.el-menu--horizontal {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
.el-menu--horizontal .is-active .el-submenu__title i {
|
||||
color: #09f;
|
||||
}
|
||||
.el-menu--horizontal .el-menu-item,
|
||||
.el-menu--horizontal .el-submenu,
|
||||
.el-menu--horizontal .el-submenu .el-submenu__title {
|
||||
height: 49px !important;
|
||||
line-height: 49px !important;
|
||||
}
|
||||
.el-menu--horizontal .el-menu--popup .el-menu-item,
|
||||
.el-menu--horizontal .el-menu--popup .el-submenu,
|
||||
.el-menu--horizontal .el-menu--popup .el-submenu .el-submenu__title {
|
||||
height: 36px !important;
|
||||
line-height: 36px !important;
|
||||
}
|
||||
.el-pagination.is-background .btn-next,
|
||||
.el-pagination.is-background .btn-prev,
|
||||
.el-pagination.is-background .el-pager li {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
.el-pager li {
|
||||
font-weight: normal !important;
|
||||
}
|
||||
.el-pager li.active:hover {
|
||||
color: #fff !important;
|
||||
}
|
||||
.el-pager li:hover,
|
||||
.el-pagination button:hover {
|
||||
color: #09f !important;
|
||||
}
|
||||
.el-pagination button:disabled:hover {
|
||||
color: #c0c4cc !important;
|
||||
}
|
||||
.el-pagination__sizes .el-input .el-input__inner:hover {
|
||||
border-color: #c0c4cc !important;
|
||||
}
|
||||
.el-breadcrumb__inner a,
|
||||
.el-breadcrumb__separator {
|
||||
font-weight: normal !important;
|
||||
}
|
||||
.el-breadcrumb__inner .no-redirect {
|
||||
color: #97a8be !important;
|
||||
}
|
||||
.el-card__header {
|
||||
padding: 12px 15px !important;
|
||||
}
|
||||
.el-card__body {
|
||||
padding: 0 !important;
|
||||
}
|
||||
.el-card {
|
||||
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.03) !important;
|
||||
}
|
||||
.el-dialog__wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.el-dialog {
|
||||
margin: 0 auto !important;
|
||||
}
|
||||
.el-drawer__header {
|
||||
margin-bottom: 0 !important;
|
||||
padding: 14px 15px !important;
|
||||
border-bottom: 1px solid #ebeef5;
|
||||
color: #333333 !important;
|
||||
}
|
||||
.el-drawer__body {
|
||||
padding: 12px 15px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
.el-form--label-top .el-form-item__label {
|
||||
padding: 0 !important;
|
||||
}
|
||||
.el-form--label-top .el-form-item {
|
||||
margin-bottom: 5px !important;
|
||||
}
|
||||
.el-select-dropdown .el-scrollbar__wrap {
|
||||
overflow-x: scroll !important;
|
||||
}
|
||||
.el-dropdown-menu__item {
|
||||
font-size: 13px !important;
|
||||
}
|
||||
.el-divider {
|
||||
background-color: rgba(0, 0, 0, 0.06) !important;
|
||||
}
|
||||
.el-message {
|
||||
min-width: auto !important;
|
||||
box-sizing: border-box !important;
|
||||
border-width: 1px !important;
|
||||
border-style: solid !important;
|
||||
border-color: #ebeef5 !important;
|
||||
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
|
||||
background-color: #fff !important;
|
||||
border-radius: 3px !important;
|
||||
border: 1px solid #ebeef5 !important;
|
||||
.el-message__icon {
|
||||
font-size: 1.4em !important;
|
||||
}
|
||||
}
|
||||
.el-alert--warning.is-light {
|
||||
border: 1px solid rgba(230, 162, 60, 0.3) !important;
|
||||
}
|
||||
.el-alert--success.is-light {
|
||||
border: 1px solid rgba(103, 194, 58, 0.3) !important;
|
||||
}
|
||||
.el-alert--info.is-light {
|
||||
border: 1px solid rgba(144, 147, 153, 0.3) !important;
|
||||
}
|
||||
.el-alert--error.is-light {
|
||||
border: 1px solid rgba(245, 108, 108, 0.3) !important;
|
||||
}
|
||||
.el-table-column--selection {
|
||||
.el-checkbox {
|
||||
margin-right: unset !important;
|
||||
}
|
||||
}
|
||||
.el-table::before,
|
||||
.el-table--group::after,
|
||||
.el-table--border::after {
|
||||
z-index: 99 !important;
|
||||
}
|
||||
.el-menu-item .iconfont {
|
||||
margin-right: 5px;
|
||||
width: 24px;
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
}
|
@ -0,0 +1,570 @@
|
||||
$light:#F8FFF9; //浅色
|
||||
$dark:#06A774; //深色
|
||||
$hover:#01BC81; //悬浮色
|
||||
$active:#019768; //激活色
|
||||
$selectHover:#d7f3db; //下拉框hover颜色
|
||||
|
||||
|
||||
@mixin icon{
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
margin-right: 1px;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
|
||||
.green{
|
||||
.el-pager li:hover, .el-pagination button:hover{
|
||||
color: $hover !important;
|
||||
}
|
||||
.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content {
|
||||
background-color: $selectHover !important;
|
||||
color: $dark !important;
|
||||
}
|
||||
|
||||
.expand {
|
||||
color: $dark !important;
|
||||
}
|
||||
|
||||
.is-current {
|
||||
&>.el-tree-node__content>.el-tree-node__expand-icon {
|
||||
color: $dark;
|
||||
}
|
||||
|
||||
&>.el-tree-node__content>.el-tree-node__expand-icon.is-leaf {
|
||||
color: $selectHover;
|
||||
}
|
||||
}
|
||||
.annot:hover{
|
||||
background:$selectHover;
|
||||
}
|
||||
.annot:active{
|
||||
background:$selectHover;
|
||||
}
|
||||
.el-dropdown-menu__item{
|
||||
&:hover{
|
||||
background: $selectHover;
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
.el-checkbox__inner{
|
||||
&:hover{
|
||||
border-color: $dark;
|
||||
}
|
||||
}
|
||||
.el-pager li:hover{
|
||||
color:$dark!important;
|
||||
}
|
||||
.el-switch.is-checked .el-switch__core{
|
||||
border-color: $dark;
|
||||
}
|
||||
.el-range-editor.is-active, .el-range-editor.is-active:hover{
|
||||
border-color: $dark;
|
||||
}
|
||||
.addPostil{
|
||||
&:hover{
|
||||
background: $light!important;
|
||||
}
|
||||
}
|
||||
.el-menu--horizontal .el-menu .el-menu-item:hover{
|
||||
background: $selectHover;
|
||||
.menu_title{
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
.el-input__inner:focus{
|
||||
border-color: $dark;
|
||||
}
|
||||
.el-select .el-input.is-focus .el-input__inner{
|
||||
border-color: $dark;
|
||||
}
|
||||
.el-pager li:hover, .el-pagination button:hover{
|
||||
color:$dark;
|
||||
}
|
||||
.foot-box{
|
||||
color: $dark;
|
||||
}
|
||||
.sjx-box{
|
||||
background: $light;
|
||||
}
|
||||
.el-dialog__footer{
|
||||
background: $light;
|
||||
}
|
||||
.el-message-box__btns .el-button--primary{
|
||||
background: $dark;
|
||||
&:hover{
|
||||
background: $hover;
|
||||
}
|
||||
}
|
||||
.warning_icon_green{
|
||||
background-image: url(../../assets/images/noticfy/notification_icon_attention_green.png);
|
||||
}
|
||||
.blueQ{
|
||||
background: $dark;
|
||||
}
|
||||
.Sclear{
|
||||
color: #707070;
|
||||
&:hover{
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
.ass_li{
|
||||
background:$light ;
|
||||
}
|
||||
.el-button--default{
|
||||
&:hover,&:focus{
|
||||
.qinkon {
|
||||
background-image: url(../images/green/btn-icon-clear.png);
|
||||
@include icon;
|
||||
}
|
||||
.shoucan {
|
||||
background-image: url(../images/green/btn-icon-collect.png);
|
||||
@include icon;
|
||||
}
|
||||
.shareShoucan {
|
||||
background-image: url(../images/green/icon-share-green.png);
|
||||
@include icon;
|
||||
}
|
||||
.export {
|
||||
background-image: url(../images/green/btn-icon-export.png);
|
||||
@include icon;
|
||||
}
|
||||
.import {
|
||||
background-image: url(../images/green/btn-icon-download.png);
|
||||
@include icon;
|
||||
}
|
||||
.peizhi {
|
||||
background-image: url(../images/green/btn-icon-setting.png);
|
||||
@include icon;
|
||||
}
|
||||
.newadd{
|
||||
background-image: url(../images/green/btn-icon-add.png);
|
||||
@include icon;
|
||||
}
|
||||
.shenhe{
|
||||
background-image: url(../images/green/btn-icon-examine.png);
|
||||
@include icon;
|
||||
}
|
||||
.jieyue{
|
||||
background-image: url(../images/green/btn-icon-edit.png);
|
||||
@include icon;
|
||||
}
|
||||
.fencun{
|
||||
background-image: url(../images/green/btn-icon-seal.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiefun{
|
||||
background-image: url(../images/green/btn-icon-unseal.png);
|
||||
@include icon;
|
||||
}
|
||||
.suodin{
|
||||
background-image: url(../images/green/btn-icon-locking.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiesuo{
|
||||
background-image: url(../images/green/btn-icon-unlocking.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
.tuihui{
|
||||
background-image: url(../images/green/btn-icon-return.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
.qindan{
|
||||
background-image: url(../images/green/btn-icon-list.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
.el-button--default{
|
||||
border:1px solid $dark;
|
||||
color: $dark;
|
||||
.qinkon {
|
||||
background-image: url(../images/green/btn-icon-clear.png);
|
||||
|
||||
@include icon;
|
||||
}
|
||||
.Yshoucan {
|
||||
background-image: url(../images/green/btn-icon-collected.png);
|
||||
@include icon;
|
||||
}
|
||||
.shoucan {
|
||||
background-image: url(../images/green/btn-icon-collect.png);
|
||||
@include icon;
|
||||
}
|
||||
.shareShoucan {
|
||||
background-image: url(../images/green/icon-share-green.png);
|
||||
@include icon;
|
||||
}
|
||||
.export {
|
||||
background-image: url(../images/green/btn-icon-export.png);
|
||||
@include icon;
|
||||
}
|
||||
.import {
|
||||
background-image: url(../images/green/btn-icon-download.png);
|
||||
@include icon;
|
||||
}
|
||||
.peizhi {
|
||||
background-image: url(../images/green/btn-icon-setting.png);
|
||||
@include icon;
|
||||
}
|
||||
.newadd{
|
||||
background-image: url(../images/green/btn-icon-add.png);
|
||||
@include icon;
|
||||
}
|
||||
.shenhe{
|
||||
background-image: url(../images/green/btn-icon-examine.png);
|
||||
@include icon;
|
||||
}
|
||||
.jieyue{
|
||||
background-image: url(../images/green/btn-icon-edit.png);
|
||||
@include icon;
|
||||
}
|
||||
.fencun{
|
||||
background-image: url(../images/green/btn-icon-seal.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiefun{
|
||||
background-image: url(../images/green/btn-icon-unseal.png);
|
||||
@include icon;
|
||||
}
|
||||
.suodin{
|
||||
background-image: url(../images/green/btn-icon-locking.png);
|
||||
@include icon;
|
||||
}
|
||||
.jiesuo{
|
||||
background-image: url(../images/green/btn-icon-unlocking.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
.tuihui{
|
||||
background-image: url(../images/green/btn-icon-return.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
.qindan{
|
||||
background-image: url(../images/green/btn-icon-list.png);
|
||||
@include icon;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.openBaseInfo{
|
||||
background-image: url(../images/green/icon_spread_nl.png);
|
||||
}
|
||||
.closeBaseInfo{
|
||||
background-image: url(../images/green/icon_retract_nl.png);
|
||||
}
|
||||
.el-button--default:hover{
|
||||
background:rgba(6, 167, 116, 0.1);
|
||||
}
|
||||
.el-button--default:focus{
|
||||
background:#FFF;
|
||||
}
|
||||
.el-button--default:active{
|
||||
background:rgba(6, 167, 116, 0.24);
|
||||
}
|
||||
.el-card{
|
||||
background: $light;
|
||||
}
|
||||
|
||||
.el-button--primary{
|
||||
border-radius: 4px !important;
|
||||
background: $dark;
|
||||
border-color: $dark;
|
||||
}
|
||||
.el-button--primary:hover{
|
||||
background: $hover;
|
||||
}
|
||||
.el-button--primary:focus{
|
||||
background: $dark;
|
||||
}
|
||||
.el-button--primary:active{
|
||||
background: $dark;
|
||||
}
|
||||
.el-radio__input.is-checked+.el-radio__label{
|
||||
color: $dark;
|
||||
}
|
||||
.el-radio__input.is-checked .el-radio__inner{
|
||||
border-color: $dark;
|
||||
background: $dark
|
||||
}
|
||||
.el-dialog__header{
|
||||
background: $light;
|
||||
}
|
||||
.el-dialog__body{
|
||||
background: $light;
|
||||
}
|
||||
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected{
|
||||
color: $dark;
|
||||
}
|
||||
.el-select-dropdown__item.selected{
|
||||
color: $dark;
|
||||
}
|
||||
.el-select-dropdown__item.hover, .el-select-dropdown__item:hover{
|
||||
background: rgba(6, 167, 116, 0.1);
|
||||
color:$dark;
|
||||
}
|
||||
.el-pagination.is-background .el-pager li:not(.disabled).active{
|
||||
background: $dark;
|
||||
}
|
||||
.el-button--text{
|
||||
color:$dark ;
|
||||
}
|
||||
.el-checkbox__input.is-checked .el-checkbox__inner{
|
||||
background: $dark;
|
||||
border-color: $dark;
|
||||
}
|
||||
.el-checkbox__input.is-indeterminate .el-checkbox__inner{
|
||||
background: $dark;
|
||||
border-color: $dark;
|
||||
}
|
||||
.el-card__header{
|
||||
background-color: $light;
|
||||
}
|
||||
.el-table .ascending .sort-caret.ascending{
|
||||
border-bottom-color: $dark;
|
||||
}
|
||||
.el-table .descending .sort-caret.descending{
|
||||
border-top-color: $dark;
|
||||
}
|
||||
.navbar{
|
||||
background-image: url(../../assets/images/nar/nav_bg_green.png);
|
||||
}
|
||||
.el-dialog__header{
|
||||
background: $light;
|
||||
}
|
||||
.el-dialog__body{
|
||||
background: $light;
|
||||
}
|
||||
.el-tree{
|
||||
background: $light;
|
||||
}
|
||||
.el-transfer-panel{
|
||||
background: $light;
|
||||
}
|
||||
.el-transfer-panel__header{
|
||||
background: $light;
|
||||
}
|
||||
.el-transfer-panel__footer{
|
||||
background: $light;
|
||||
}
|
||||
|
||||
.bad_li{
|
||||
background: $light;
|
||||
}
|
||||
.head_t{
|
||||
font-size: 16px;
|
||||
color: #212121;
|
||||
line-height: 28px;
|
||||
}
|
||||
.el-table--striped .el-table__body tr.el-table__row--striped td{
|
||||
|
||||
}
|
||||
.body_t{
|
||||
font-size: 14px;
|
||||
color: #212121;
|
||||
line-height: 28px;
|
||||
}
|
||||
.el-table--striped .el-table__body tr.el-table__row--striped td{
|
||||
background: #F0FDF2;
|
||||
}
|
||||
.body_t{
|
||||
font-size: 14px;
|
||||
color: #212121;
|
||||
line-height: 28px;
|
||||
}
|
||||
.el-tree-node__content:hover{
|
||||
background: $selectHover;
|
||||
color: $dark;
|
||||
.el-tree-node__expand-icon{
|
||||
color: $dark!important;
|
||||
}
|
||||
.el-tree-node__expand-icon.is-leaf{
|
||||
color: $selectHover!important;
|
||||
}
|
||||
}
|
||||
.el-tree-node__content:visited{
|
||||
background: $selectHover;
|
||||
color: $dark;
|
||||
.el-tree-node__expand-icon{
|
||||
color: $dark!important;
|
||||
}
|
||||
.el-tree-node__expand-icon.is-leaf{
|
||||
color: $selectHover!important;
|
||||
}
|
||||
}
|
||||
.el-radio-button__orig-radio:checked+.el-radio-button__inner{
|
||||
background: $dark;
|
||||
}
|
||||
.el-switch.is-checked .el-switch__core{
|
||||
background: $dark;
|
||||
}
|
||||
.el-tabs__item.is-active{
|
||||
color: $dark;
|
||||
}
|
||||
.el-tabs__item:hover{
|
||||
color: $dark;
|
||||
}
|
||||
.el-tabs__active-bar{
|
||||
background-color:$dark;
|
||||
}
|
||||
.el-table th{
|
||||
background: #D7F3DB;
|
||||
}
|
||||
.head:nth-child(2n-1){
|
||||
background: $dark;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
.fileToRead{
|
||||
background: $dark;
|
||||
color:#FFF;
|
||||
padding-left: .5vw;
|
||||
padding-right: .5vw;
|
||||
// margin: 0 0.1vw 0 0.1vw;
|
||||
}
|
||||
.fileToRead:hover{
|
||||
background: $hover;
|
||||
}
|
||||
.fileToRead:active{
|
||||
background: $active;
|
||||
}
|
||||
|
||||
.dowm{
|
||||
background: #4B8CFA;
|
||||
color:#FFF;
|
||||
padding-left: .5vw;
|
||||
padding-right: .5vw;
|
||||
}
|
||||
.dowm:hover{
|
||||
background: #619CFF;
|
||||
}
|
||||
.dowm:active{
|
||||
background: #2073FF;
|
||||
}
|
||||
|
||||
.spike{
|
||||
background: #FF8B58;
|
||||
color:#FFF;
|
||||
padding-left: .5vw;
|
||||
padding-right: .5vw;
|
||||
}
|
||||
.spike:hover{
|
||||
background:#FCA179;
|
||||
}
|
||||
.spike:active{
|
||||
background: #FF783D;
|
||||
}
|
||||
|
||||
.orange{
|
||||
background: #FFBB44;
|
||||
color:#FFF;
|
||||
padding-left: .5vw;
|
||||
padding-right: .5vw;
|
||||
}
|
||||
.orange:hover{
|
||||
background:#FFCB6F;
|
||||
}
|
||||
.orange:active{
|
||||
background: #FFAC1A;
|
||||
}
|
||||
.blue_line {
|
||||
background: $dark;
|
||||
}
|
||||
.bad_tag,.bad_tagS{
|
||||
background: $dark;
|
||||
}
|
||||
.light-blue{
|
||||
background: #00B2DE;
|
||||
color:#FFF;
|
||||
padding-left: .5vw;
|
||||
padding-right: .5vw;
|
||||
}
|
||||
.light-blue:hover{
|
||||
background:#37CFF4;
|
||||
}
|
||||
.light-blue:active{
|
||||
background: #02A4CC;
|
||||
}
|
||||
|
||||
._red{
|
||||
background: #FF5151;
|
||||
color:#FFF;
|
||||
padding-left: .5vw;
|
||||
padding-right: .5vw;
|
||||
}
|
||||
._red:hover{
|
||||
background:#FE7676;
|
||||
}
|
||||
._red:active{
|
||||
background: #FF3535;
|
||||
}
|
||||
.is-checked{
|
||||
.el-checkbox__label{
|
||||
color: $dark;
|
||||
}
|
||||
}
|
||||
.ass_li{
|
||||
background: $light;
|
||||
}
|
||||
.el-menu--horizontal .el-menu .el-menu-item:hover{
|
||||
.menu_list{
|
||||
background-image: url(../images/green/menu-list-nl.png);
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 0 10px;
|
||||
margin-right: 10px;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
@mixin iconMenu {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
padding: 0 10px;
|
||||
margin-right: 10px;
|
||||
overflow: hidden;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.el-dropdown-menu__item:hover {
|
||||
.signout {
|
||||
background-image: url(../images/green/infomenu_logout_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.msgDialog {
|
||||
background-image: url(../images/green/infomenu_message_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.caozuo {
|
||||
background-image: url(../images/green/infomenu_guide_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.newpwd {
|
||||
background-image: url(../images/green/infomenu_pass_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
|
||||
.newdata {
|
||||
background-image: url(../images/green/infomenu_user_icon_hl.png);
|
||||
@include iconMenu;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,42 @@
|
||||
.submenu-theme-dark,
|
||||
.submenu-theme-light {
|
||||
width: auto;
|
||||
height: 100%;
|
||||
background-color: #29384d;
|
||||
}
|
||||
.submenu-theme-light {
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
/* classic
|
||||
------------------------------*/
|
||||
.classic-top-dark {
|
||||
background-color: #29384d !important;
|
||||
.navbar {
|
||||
background-color: transparent !important;
|
||||
.navbar-right {
|
||||
.icon {
|
||||
color: #e6e6e6 !important;
|
||||
&:hover {
|
||||
background: rgba(0, 0, 0, 0.1) !important;
|
||||
}
|
||||
}
|
||||
.el-dropdown {
|
||||
color: #e6e6e6 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.classic-top-dark {
|
||||
.navbar {
|
||||
border-bottom: none !important;
|
||||
.navbar-left {
|
||||
.logo {
|
||||
border-bottom: 1px solid #394655 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.classic-top-light {
|
||||
background-color: #ffffff;
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
/* 页面切换动画 */
|
||||
.fade-transform-enter-active,
|
||||
.fade-transform-leave-active {
|
||||
will-change: transform;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
.fade-transform-enter {
|
||||
opacity: 0;
|
||||
transform: translateX(-30px);
|
||||
}
|
||||
.fade-transform-leave-active {
|
||||
opacity: 0;
|
||||
transform: translateX(30px);
|
||||
}
|
||||
|
||||
/* Breadcrumb 面包屑过渡动画 */
|
||||
.breadcrumb-enter-active,
|
||||
.breadcrumb-leave-active {
|
||||
transition: all 0.5s;
|
||||
}
|
||||
.breadcrumb-enter,
|
||||
.breadcrumb-leave-active {
|
||||
opacity: 0;
|
||||
transform: translateX(20px);
|
||||
}
|
||||
.breadcrumb-move {
|
||||
transition: all 0.5s;
|
||||
}
|
||||
.breadcrumb-leave-active {
|
||||
position: absolute;
|
||||
}
|
After Width: | Height: | Size: 178 KiB |
After Width: | Height: | Size: 205 B |
After Width: | Height: | Size: 209 B |
After Width: | Height: | Size: 221 B |
After Width: | Height: | Size: 214 B |
After Width: | Height: | Size: 367 B |
After Width: | Height: | Size: 358 B |
After Width: | Height: | Size: 432 B |
After Width: | Height: | Size: 404 B |
After Width: | Height: | Size: 493 B |
After Width: | Height: | Size: 433 B |
After Width: | Height: | Size: 144 B |
After Width: | Height: | Size: 1004 B |
After Width: | Height: | Size: 989 B |
After Width: | Height: | Size: 871 B |
After Width: | Height: | Size: 717 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 531 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 712 B |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 479 B |
After Width: | Height: | Size: 246 B |
After Width: | Height: | Size: 247 B |
After Width: | Height: | Size: 407 B |
After Width: | Height: | Size: 379 B |
After Width: | Height: | Size: 586 B |
After Width: | Height: | Size: 376 B |
After Width: | Height: | Size: 598 B |
After Width: | Height: | Size: 317 B |
After Width: | Height: | Size: 541 B |
After Width: | Height: | Size: 367 B |
After Width: | Height: | Size: 694 B |
After Width: | Height: | Size: 320 B |
After Width: | Height: | Size: 637 B |
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 615 B |
After Width: | Height: | Size: 405 B |
After Width: | Height: | Size: 695 B |
After Width: | Height: | Size: 497 B |
After Width: | Height: | Size: 907 B |
After Width: | Height: | Size: 642 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 295 B |
After Width: | Height: | Size: 314 B |
After Width: | Height: | Size: 159 B |
After Width: | Height: | Size: 244 B |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 19 KiB |