|
|
@@ -31,8 +31,11 @@
|
|
|
<h5>{{ l.CreatedAt | filterTime }}</h5>
|
|
|
<span>剩余课时 {{ l.AfterNormalhour + l.AfterGifthour }}</span>
|
|
|
</div>
|
|
|
- <div class="md">
|
|
|
+ <div class="md" style="position:relative; left:10%;">
|
|
|
<em>
|
|
|
+ <span class="shop" v-if="l.ShopName.search('英泓小飞龙') != -1">{{ l.ShopName.match(/英泓小飞龙(\S*)/)[1] }}</span>
|
|
|
+ <span class="shop" v-else-if="l.ShopName.search('小飞龙') != -1">{{ l.ShopName.match(/小飞龙(\S*)/)[1] }}</span>
|
|
|
+ <span class="shop" v-else>{{ l.ShopName }}</span>
|
|
|
<span class="lessons" :style="{ background: l.ClassColor }">
|
|
|
{{ l.ClassName }}
|
|
|
</span>
|
|
|
@@ -462,11 +465,15 @@ export default {
|
|
|
}
|
|
|
|
|
|
.list .md {
|
|
|
- max-width: 200px;
|
|
|
- /*width: 220px;*/
|
|
|
+ max-width: 150px;
|
|
|
+ min-width: 115px;
|
|
|
+ width: 130px;
|
|
|
float: left;
|
|
|
- margin-left: 10%;
|
|
|
- padding-top: 14px;
|
|
|
+ /*padding-top: 14px;*/
|
|
|
+}
|
|
|
+
|
|
|
+.list .md .shop{
|
|
|
+ padding-left: 10px;
|
|
|
}
|
|
|
|
|
|
.list .rt {
|
|
|
@@ -481,6 +488,7 @@ export default {
|
|
|
.md em {
|
|
|
float: left;
|
|
|
font-family: "PingFang SC";
|
|
|
+ margin: 0 auto;
|
|
|
font-weight: normal;
|
|
|
font-size: 18px;
|
|
|
text-align: left;
|
|
|
@@ -494,7 +502,7 @@ export default {
|
|
|
font-size: 14px;
|
|
|
text-align: left;
|
|
|
/*color: #37cb00;*/
|
|
|
- line-height: 30px;
|
|
|
+ line-height: 20px;
|
|
|
}
|
|
|
|
|
|
span.green {
|
|
|
@@ -577,7 +585,7 @@ span.red {
|
|
|
}
|
|
|
|
|
|
.lessons {
|
|
|
- width: 100%;
|
|
|
+ /*width: 100%;*/
|
|
|
overflow: hidden;
|
|
|
padding: 1px 11px;
|
|
|
border-radius: 250px;
|
|
|
@@ -614,7 +622,7 @@ span.red {
|
|
|
}
|
|
|
|
|
|
.md em {
|
|
|
- margin-right: 3px;
|
|
|
+ /*margin-right: 3px;*/
|
|
|
}
|
|
|
}
|
|
|
|