NEZ-2032 fix : alert rule 时间计划详情提示框 样式错误

This commit is contained in:
likexuan
2022-07-15 11:53:02 +08:00
parent 6d44b127a6
commit 740440dcae
2 changed files with 13 additions and 10 deletions

View File

@@ -34,7 +34,7 @@
margin-right: 12px; margin-right: 12px;
} }
.schedEnableTitle .week-item { .schedEnableTitle .week-item {
width: 32px; width: 35px;
height: 22px; height: 22px;
line-height: 22px; line-height: 22px;
opacity: 0.9; opacity: 0.9;
@@ -50,3 +50,6 @@
margin-bottom: 6px; margin-bottom: 6px;
text-align: center; text-align: center;
} }
.schedEnableTitle .week-item:nth-of-type(4){
margin-right: 0px !important;
}

View File

@@ -263,26 +263,26 @@ export default {
], ],
weekList: [ weekList: [
{ {
value: 1,
label: this.$t('week.Sun')
}, {
value: 2, value: 2,
label: this.$t('week.Mon') label: this.$t('week.MonAbbreviation')
}, { }, {
value: 3, value: 3,
label: this.$t('week.Tue') label: this.$t('week.TueAbbreviation')
}, { }, {
value: 4, value: 4,
label: this.$t('week.Wed') label: this.$t('week.WedAbbreviation')
}, { }, {
value: 5, value: 5,
label: this.$t('week.Thu') label: this.$t('week.ThuAbbreviation')
}, { }, {
value: 6, value: 6,
label: this.$t('week.Fri') label: this.$t('week.FriAbbreviation')
}, { }, {
value: 7, value: 7,
label: this.$t('week.Sat') label: this.$t('week.SatAbbreviation')
}, {
value: 1,
label: this.$t('week.SunAbbreviation')
} }
] ]
} }