|
@@ -19,11 +19,7 @@ export default {
|
|
|
isRouterAlive: true,
|
|
|
};
|
|
|
},
|
|
|
- created() {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- },
|
|
|
+ created() {},
|
|
|
methods: {
|
|
|
reloads() {
|
|
|
this.isRouterAlive = false;
|
|
@@ -72,8 +68,8 @@ body {
|
|
|
$--color-primary: teal;
|
|
|
.el-table {
|
|
|
width: 99% !important;
|
|
|
- border-left: 1px solid #EBEEF5;
|
|
|
- border-right: 1px solid #EBEEF5;
|
|
|
+ border-left: 1px solid #ebeef5;
|
|
|
+ border-right: 1px solid #ebeef5;
|
|
|
}
|
|
|
.el-tabs__content {
|
|
|
overflow: auto;
|
|
@@ -91,8 +87,8 @@ input::-webkit-inner-spin-button {
|
|
|
input[type="number"] {
|
|
|
-moz-appearance: textfield;
|
|
|
}
|
|
|
-.el-input__inner{
|
|
|
- line-height: 1px!important;
|
|
|
+.el-input__inner {
|
|
|
+ line-height: 1px !important;
|
|
|
}
|
|
|
.el-dialog {
|
|
|
margin-bottom: 10vh;
|
|
@@ -100,7 +96,7 @@ input[type="number"] {
|
|
|
background: #363d55;
|
|
|
padding: 15px 20px 15px;
|
|
|
.el-dialog__title {
|
|
|
- color: #fff
|
|
|
+ color: #fff;
|
|
|
}
|
|
|
.el-dialog__headerbtn .el-dialog__close {
|
|
|
color: #fff;
|
|
@@ -357,36 +353,38 @@ input[type="number"] {
|
|
|
}
|
|
|
|
|
|
.horizontal-scrollbar {
|
|
|
- .el-scrollbar__wrap {
|
|
|
- overflow-x: hidden;
|
|
|
- .el-scrollbar__view{
|
|
|
- white-space: nowrap;
|
|
|
- }
|
|
|
+ .el-scrollbar__wrap {
|
|
|
+ overflow-x: hidden;
|
|
|
+ .el-scrollbar__view {
|
|
|
+ white-space: nowrap;
|
|
|
}
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="less">
|
|
|
.main-dot {
|
|
|
position: relative;
|
|
|
- &::after{
|
|
|
- content: '';
|
|
|
+ &::after {
|
|
|
+ content: "";
|
|
|
display: block;
|
|
|
position: absolute;
|
|
|
height: 8px;
|
|
|
width: 8px;
|
|
|
- background-color: #F56C6C;
|
|
|
+ background-color: #f56c6c;
|
|
|
border-radius: 50%;
|
|
|
right: 5px;
|
|
|
top: 5px;
|
|
|
}
|
|
|
}
|
|
|
- .el-select__tags {
|
|
|
- overflow: hidden;
|
|
|
- flex-wrap: nowrap;
|
|
|
- }
|
|
|
- .el-tag.el-tag--info.el-tag--small.el-tag--light{
|
|
|
- max-width: 80px;
|
|
|
+.el-select__tags {
|
|
|
+ overflow: hidden;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+}
|
|
|
+.el-select__tags {
|
|
|
+ .el-tag.el-tag--info.el-tag--small.el-tag--light {
|
|
|
+ max-width: 85px;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
}
|
|
|
+}
|
|
|
</style>
|