fix: 文件名大小写错误
parent
1dee63af1b
commit
4b5cd29bfe
|
|
@ -89,24 +89,24 @@ onLoad((options) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-bg {
|
.header-bg {
|
||||||
width: calc(100% - 80rpx);
|
|
||||||
height: 244rpx;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 40rpx;
|
left: 40rpx;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
width: calc(100% - 80rpx);
|
||||||
|
height: 244rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type-tag {
|
.type-tag {
|
||||||
font-size: 24rpx;
|
|
||||||
min-width: 40rpx;
|
min-width: 40rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.position-tag {
|
.position-tag {
|
||||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
|
||||||
font-size: 26rpx;
|
font-size: 26rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-row {
|
.table-row {
|
||||||
|
|
@ -121,8 +121,8 @@ onLoad((options) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.border-class {
|
.border-class {
|
||||||
border-radius: 20rpx 20rpx 0 0;
|
|
||||||
padding-bottom: 42rpx;
|
padding-bottom: 42rpx;
|
||||||
margin-bottom: -14rpx;
|
margin-bottom: -14rpx;
|
||||||
|
border-radius: 20rpx 20rpx 0 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -96,24 +96,24 @@ onLoad((options) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-bg {
|
.header-bg {
|
||||||
width: calc(100% - 80rpx);
|
|
||||||
height: 244rpx;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 40rpx;
|
left: 40rpx;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
width: calc(100% - 80rpx);
|
||||||
|
height: 244rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type-tag {
|
.type-tag {
|
||||||
font-size: 24rpx;
|
|
||||||
min-width: 40rpx;
|
min-width: 40rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.position-tag {
|
.position-tag {
|
||||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
|
||||||
font-size: 26rpx;
|
font-size: 26rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-row {
|
.table-row {
|
||||||
|
|
|
||||||
|
|
@ -80,24 +80,24 @@ onLoad((options) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-bg {
|
.header-bg {
|
||||||
width: calc(100% - 80rpx);
|
|
||||||
height: 244rpx;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 40rpx;
|
left: 40rpx;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
width: calc(100% - 80rpx);
|
||||||
|
height: 244rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.type-tag {
|
.type-tag {
|
||||||
font-size: 24rpx;
|
|
||||||
min-width: 40rpx;
|
min-width: 40rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.position-tag {
|
.position-tag {
|
||||||
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
|
||||||
font-size: 26rpx;
|
font-size: 26rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-row {
|
.table-row {
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,7 @@ const studyRecord = ref({
|
||||||
})
|
})
|
||||||
|
|
||||||
const calcLevel = (val: string) => {
|
const calcLevel = (val: string) => {
|
||||||
let _s = JSON.parse(val)
|
const _s = JSON.parse(val)
|
||||||
if (_s[0].Total >= 161) {
|
if (_s[0].Total >= 161) {
|
||||||
return 4
|
return 4
|
||||||
} else if (_s[0].Total >= 137) {
|
} else if (_s[0].Total >= 137) {
|
||||||
|
|
@ -148,8 +148,8 @@ onLoad((options) => {
|
||||||
.custom-border {
|
.custom-border {
|
||||||
width: 162rpx;
|
width: 162rpx;
|
||||||
height: 162rpx;
|
height: 162rpx;
|
||||||
border-radius: 50%;
|
|
||||||
border: 6rpx dashed;
|
border: 6rpx dashed;
|
||||||
border-color: #05d69c transparent transparent transparent;
|
border-color: #05d69c transparent transparent transparent;
|
||||||
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -98,8 +98,8 @@ onLoad((options) => {
|
||||||
.custom-border {
|
.custom-border {
|
||||||
width: 162rpx;
|
width: 162rpx;
|
||||||
height: 162rpx;
|
height: 162rpx;
|
||||||
border-radius: 50%;
|
|
||||||
border: 6rpx dashed;
|
border: 6rpx dashed;
|
||||||
border-color: #05d69c transparent transparent transparent;
|
border-color: #05d69c transparent transparent transparent;
|
||||||
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue