登录、home、工单管理

This commit is contained in:
2023-04-07 17:41:38 +08:00
parent c47cc6a357
commit 6917835ce2
15 changed files with 521 additions and 241 deletions

View File

@@ -11,11 +11,6 @@
/***/
[class*=" el-icon-"], [class^=el-icon-]
color #c0c4cc
.el-date-editor--daterange.el-input__inner
width 2.45rem
.el-input__inner
height .3rem
line-height .3rem
.el-date-range-picker__header div
color #606266
.el-date-table td span
@@ -47,11 +42,15 @@
-webkit-font-smoothing antialiased
-moz-osx-font-smoothing grayscale
.close_icon
width .3rem
height .3rem
position absolute
right .05rem
top .08rem
right 0
top .05rem
color #C0C4CC
font-size .14rem
font-size .2rem
line-height .3rem
text-align center
.select_icon
width .2rem
height .2rem

39
src/style/mixin.styl Normal file
View File

@@ -0,0 +1,39 @@
$red = #e74f1a
$green = #6CBE8B
$yellow = #E9B451
$blue = #6798ef
$gray = #c9c9c9
$fc1 = #323232
//
_wh(w, h)
width: w
height: h
//
_font(size,height,color=$fc1,weight=normal,align=left)
font-size: size
line-height: height
color: color
font-weight: weight
text-align: align
//flex
_fj(x=space-between,y=center)
display: flex
justify-content: x
align-items: y
//
_bis(url,w,h=auto,x=center,y=center)
background-position: x y
background-size: w h
background-image: url(url)
background-repeat: no-repeat
//
_ct()
position: absolute
top: 50%
transform: translateY(-50%)

View File

@@ -17,7 +17,6 @@ time, mark, audio, video, input, button {
outline: none;
font-size: 0.16rem;
line-height: inherit;
color: #ffffff;
font-weight: normal;
}