optimize styles

3.x
smallchill 3 years ago
parent ac400353d2
commit aacc853459
  1. 14
      index.html
  2. 10
      public/css/loading.css
  3. 2
      src/option/system/dict.js
  4. 2
      src/option/system/dictbiz.js
  5. 6
      src/page/index/top/top-theme.vue
  6. 6
      src/styles/theme/index.scss
  7. 4
      src/styles/theme/lte.scss
  8. 10
      src/views/authority/apiscope.vue
  9. 10
      src/views/authority/datascope.vue
  10. 4
      src/views/flow/manager.vue
  11. 4
      src/views/monitor/log/api.vue
  12. 4
      src/views/monitor/log/error.vue
  13. 2
      src/views/monitor/log/usual.vue
  14. 2
      src/views/resource/oss.vue
  15. 2
      src/views/resource/sms.vue
  16. 5
      src/views/system/topmenu.vue
  17. 2
      src/views/wel/index.vue
  18. 4
      src/views/work/claim.vue
  19. 4
      src/views/work/done.vue
  20. 6
      src/views/work/send.vue
  21. 4
      src/views/work/start.vue
  22. 4
      src/views/work/todo.vue

@ -2,9 +2,15 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="icon" href="/favicon.ico" /> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<link rel="icon" href="./public/favicon.png" />
<link rel="stylesheet" href="./public/iconfont/index.css"> <link rel="stylesheet" href="./public/iconfont/index.css">
<link rel="stylesheet" href="./public/iconfont/avue/iconfont.css"> <link rel="stylesheet" href="./public/iconfont/avue/iconfont.css">
<link rel="stylesheet" href="./public/iconfont/saber/iconfont.css"> <link rel="stylesheet" href="./public/iconfont/saber/iconfont.css">
@ -24,7 +30,7 @@
</span> </span>
</div> </div>
<div class="loading-title"> <div class="loading-title">
Saber 系统加载中
</div> </div>
</div> </div>
</div> </div>

@ -31,7 +31,7 @@
display: flex; display: flex;
font-weight: bold; font-weight: bold;
margin-top: 30px; margin-top: 30px;
font-size: 36px; font-size: 18px;
color: rgba(0, 0, 0, .85); color: rgba(0, 0, 0, .85);
justify-content: center; justify-content: center;
align-items: center align-items: center
@ -41,10 +41,10 @@
.dot { .dot {
position: relative; position: relative;
display: inline-block; display: inline-block;
width: 48px; width: 40px;
height: 48px; height: 40px;
margin-top: 30px; margin-top: 30px;
font-size: 32px; font-size: 28px;
transform: rotate(45deg); transform: rotate(45deg);
box-sizing: border-box; box-sizing: border-box;
animation: antRotate 1.2s infinite linear animation: antRotate 1.2s infinite linear
@ -113,4 +113,4 @@
to { to {
opacity: 1 opacity: 1
} }
} }

@ -152,7 +152,7 @@ export const optionChild = {
{ {
label: "字典键值", label: "字典键值",
prop: "dictKey", prop: "dictKey",
width: 80, width: 85,
rules: [ rules: [
{ {
required: true, required: true,

@ -153,7 +153,7 @@ export const optionChild = {
{ {
label: "字典键值", label: "字典键值",
prop: "dictKey", prop: "dictKey",
width: 80, width: 85,
rules: [ rules: [
{ {
required: true, required: true,

@ -54,7 +54,7 @@ export default {
value: "theme-star" value: "theme-star"
}, },
{ {
name: "vip尊贵主题", name: "vip主题",
value: "theme-vip" value: "theme-vip"
}, },
{ {
@ -74,8 +74,8 @@ export default {
value: "theme-d2" value: "theme-d2"
}, },
{ {
name: "renren主题", name: "lte主题",
value: "theme-renren" value: "theme-lte"
}, { }, {
name: "beautiful主题", name: "beautiful主题",
value: "theme-beautiful" value: "theme-beautiful"

@ -22,11 +22,11 @@
//dark //dark
@import './dark.scss'; @import './dark.scss';
//renren //lte
@import './renren.scss'; @import 'lte';
//cool //cool
@import './cool.scss'; @import './cool.scss';
//beautiful //beautiful
@import './beautiful.scss' @import './beautiful.scss';

@ -1,4 +1,4 @@
.theme-renren { .theme-lte {
.avue-logo{ .avue-logo{
background-color: #409EFF; background-color: #409EFF;
.avue-logo_title{ .avue-logo_title{
@ -33,4 +33,4 @@
} }
} }
} }
} }

@ -27,6 +27,11 @@
@click.stop="handleDataScope(row)">权限配置 @click.stop="handleDataScope(row)">权限配置
</el-button> </el-button>
</template> </template>
<template #name="{row}">
<i :class="row.source"
style="margin-right:5px" />
<span>{{row.name}}</span>
</template>
<template #source="{row}"> <template #source="{row}">
<div style="text-align:center"> <div style="text-align:center">
<i :class="row.source" /> <i :class="row.source" />
@ -131,6 +136,7 @@ export default {
{ {
label: "菜单名称", label: "菜单名称",
prop: "name", prop: "name",
width: 300,
search: true, search: true,
rules: [ rules: [
{ {
@ -173,7 +179,7 @@ export default {
prop: "source", prop: "source",
type: "icon", type: "icon",
slot: true, slot: true,
width: 80, width: 85,
iconList: iconList, iconList: iconList,
rules: [ rules: [
{ {
@ -260,7 +266,7 @@ export default {
label: "菜单排序", label: "菜单排序",
prop: "sort", prop: "sort",
type: "number", type: "number",
width: 80, width: 85,
rules: [ rules: [
{ {
required: true, required: true,

@ -28,6 +28,11 @@
@click.stop="handleDataScope(row)">权限配置 @click.stop="handleDataScope(row)">权限配置
</el-button> </el-button>
</template> </template>
<template #name="{row}">
<i :class="row.source"
style="margin-right:5px" />
<span>{{row.name}}</span>
</template>
<template #source="{row}"> <template #source="{row}">
<div style="text-align:center"> <div style="text-align:center">
<i :class="row.source" /> <i :class="row.source" />
@ -135,6 +140,7 @@ export default {
{ {
label: "菜单名称", label: "菜单名称",
prop: "name", prop: "name",
width: 300,
search: true, search: true,
rules: [ rules: [
{ {
@ -177,7 +183,7 @@ export default {
prop: "source", prop: "source",
type: "icon", type: "icon",
slot: true, slot: true,
width: 80, width: 85,
iconList: iconList, iconList: iconList,
rules: [ rules: [
{ {
@ -264,7 +270,7 @@ export default {
label: "菜单排序", label: "菜单排序",
prop: "sort", prop: "sort",
type: "number", type: "number",
width: 80, width: 85,
rules: [ rules: [
{ {
required: true, required: true,

@ -164,13 +164,13 @@ export default {
slot: true, slot: true,
prop: "category", prop: "category",
search: true, search: true,
width: 100, width: 85,
}, },
{ {
label: '流程版本', label: '流程版本',
prop: 'version', prop: 'version',
slot: true, slot: true,
width: 80, width: 85,
}, },
{ {
label: '状态', label: '状态',

@ -68,7 +68,7 @@ export default {
{ {
label: "软件环境", label: "软件环境",
prop: "env", prop: "env",
width: '80', width: '85',
}, },
{ {
label: "日志名", label: "日志名",
@ -77,7 +77,7 @@ export default {
{ {
label: "请求方法", label: "请求方法",
prop: "method", prop: "method",
width: '80' width: '85'
}, },
{ {
label: "请求接口", label: "请求接口",

@ -69,12 +69,12 @@ export default {
{ {
label: "软件环境", label: "软件环境",
prop: "env", prop: "env",
width: '80' width: '85'
}, },
{ {
label: "请求方法", label: "请求方法",
prop: "method", prop: "method",
width: '80' width: '85'
}, },
{ {
label: "请求接口", label: "请求接口",

@ -66,7 +66,7 @@ export default {
{ {
label: "软件环境", label: "软件环境",
prop: "env", prop: "env",
width: '80' width: '100'
}, },
{ {
label: "日志级别", label: "日志级别",

@ -189,7 +189,7 @@ export default {
label: "是否启用", label: "是否启用",
prop: "status", prop: "status",
span: 24, span: 24,
width: 80, width: 85,
align: "center", align: "center",
slot: true, slot: true,
addDisplay: false, addDisplay: false,

@ -183,7 +183,7 @@ export default {
label: "是否启用", label: "是否启用",
prop: "status", prop: "status",
span: 24, span: 24,
width: 80, width: 85,
align: "center", align: "center",
slot: true, slot: true,
addDisplay: false, addDisplay: false,

@ -31,6 +31,11 @@
plain>菜单配置 plain>菜单配置
</el-button> </el-button>
</template> </template>
<template #name="{row}">
<i :class="row.source"
style="margin-right:5px" />
<span>{{row.name}}</span>
</template>
<template #source="{row}"> <template #source="{row}">
<div style="text-align:center"> <div style="text-align:center">
<i :class="row.source"></i> <i :class="row.source"></i>

@ -8,7 +8,7 @@
<el-col :span="24"> <el-col :span="24">
<basic-container> <basic-container>
<p style="text-align: center"> <p style="text-align: center">
<img src="https://img.shields.io/badge/Release-V3.0.1-green.svg" <img src="https://img.shields.io/badge/Release-V3.1.0-green.svg"
alt="Downloads" /> alt="Downloads" />
<img src="https://img.shields.io/badge/JDK-1.8+-green.svg" <img src="https://img.shields.io/badge/JDK-1.8+-green.svg"
alt="Build Status" /> alt="Build Status" />

@ -92,7 +92,7 @@ export default {
prop: "category", prop: "category",
search: true, search: true,
hide: true, hide: true,
width: 100, width: 85,
}, },
{ {
label: '流程名称', label: '流程名称',
@ -107,7 +107,7 @@ export default {
label: '流程版本', label: '流程版本',
prop: 'processDefinitionVersion', prop: 'processDefinitionVersion',
slot: true, slot: true,
width: 80, width: 85,
}, },
{ {
label: '申请时间', label: '申请时间',

@ -87,7 +87,7 @@ export default {
prop: "category", prop: "category",
search: true, search: true,
hide: true, hide: true,
width: 100, width: 85,
}, },
{ {
label: '流程名称', label: '流程名称',
@ -102,7 +102,7 @@ export default {
label: '流程版本', label: '流程版本',
prop: 'processDefinitionVersion', prop: 'processDefinitionVersion',
slot: true, slot: true,
width: 80, width: 85,
}, },
{ {
label: '申请时间', label: '申请时间',

@ -90,7 +90,7 @@ export default {
prop: "category", prop: "category",
search: true, search: true,
hide: true, hide: true,
width: 100, width: 85,
}, },
{ {
label: '流程名称', label: '流程名称',
@ -105,13 +105,13 @@ export default {
label: '流程版本', label: '流程版本',
prop: 'processDefinitionVersion', prop: 'processDefinitionVersion',
slot: true, slot: true,
width: 80, width: 85,
}, },
{ {
label: '流程进度', label: '流程进度',
prop: 'processIsFinished', prop: 'processIsFinished',
slot: true, slot: true,
width: 80, width: 85,
}, },
{ {
label: '申请时间', label: '申请时间',

@ -108,7 +108,7 @@ export default {
slot: true, slot: true,
prop: "category", prop: "category",
search: true, search: true,
width: 100, width: 85,
}, },
{ {
label: '流程标识', label: '流程标识',
@ -123,7 +123,7 @@ export default {
label: '流程版本', label: '流程版本',
prop: 'version', prop: 'version',
slot: true, slot: true,
width: 80, width: 85,
}, },
{ {
label: '状态', label: '状态',

@ -92,7 +92,7 @@ export default {
prop: "category", prop: "category",
search: true, search: true,
hide: true, hide: true,
width: 100, width: 85,
}, },
{ {
label: '流程名称', label: '流程名称',
@ -107,7 +107,7 @@ export default {
label: '流程版本', label: '流程版本',
prop: 'processDefinitionVersion', prop: 'processDefinitionVersion',
slot: true, slot: true,
width: 80, width: 85,
}, },
{ {
label: '申请时间', label: '申请时间',

Loading…
Cancel
Save