Authored by 沈志敏

fix bug

... ... @@ -3,7 +3,7 @@
<div class="filter" :class="{ 'filter-open': isVisible}">
<div class="filter-actions">
<button class="button-ghost filter-action" @click="clearVals">清空</button>
<button class="button button-small filter-action" @click="okAction">确定</button>
<button class="button button-small button-ok filter-action" @click="okAction">确定</button>
</div>
<div class="filter-params">
<ul class="filter-cates">
... ... @@ -196,7 +196,7 @@
.filter-actions,
.filter-cate {
border-bottom: 1px solid $grey;
border-bottom: 1px solid #eee;
}
.filter-cates {
... ... @@ -206,7 +206,7 @@
}
.filter-cate .icon-right {
margin-left: 24px;
margin-left: 20px;
}
.filter-cate,
... ... @@ -228,6 +228,7 @@
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font-family: "BrownStd-Bold", "黑体", Helvetica, Roboto, "Heiti SC", "\9ED1\4F53", Arial;
}
.filter-cate-val,
... ... @@ -239,4 +240,8 @@
position: absolute;
}
.button-ok {
min-width: 138px !important;
}
</style>
... ...
... ... @@ -38,6 +38,10 @@
<style>
@import "../../../../scss/common/_color.css";
.blk-header {
padding-left: 26px;
}
.filter-sub {
position: fixed;
top: 0;
... ... @@ -65,7 +69,7 @@
.index {
margin-left: $w;
margin-right: $w;
border-bottom: 1px solid $division;
border-bottom: 1px solid #eee;
}
.index {
font-size: 32px;
... ...
... ... @@ -69,6 +69,8 @@
}
.card-large {
background-color: #fff;
.card {
float: left;
width: 374px;
... ... @@ -95,13 +97,14 @@
min-height: 180px;
margin-left: 30px;
margin-right: 30px;
padding-top: 25px;
padding-top: 26px;
text-align: center;
font-size: 24px;
font-size: 0;
}
.card-label {
margin: 0 0 10px;
margin: 0 0 14px;
font-size: 24px;
line-height: 1.4;
height: 67.1999999999px;
... ... @@ -111,7 +114,8 @@
.good-price {
color: #b0b0b0;
margin-right: 10px;
margin-right: 14px;
font-size: 24px;
&:last-of-type {
margin-right: 0;
}
... ...
... ... @@ -9,7 +9,6 @@
</ul>
</template>
<script>
const $ = require('jquery');
const bus = require('common/vue-bus');
const simple = require('./order/simple.vue');
const updown = require('./order/updown.vue');
... ... @@ -52,6 +51,7 @@ module.exports = {
padding: 25px 0;
color: $grey;
background-color: #fff;
border-bottom: 1px solid #eee;
}
.order-item {
... ...