|
@@ -35,7 +35,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="item" v-if="showMatch">
|
|
|
+ <div class="item no-center" v-if="showMatch">
|
|
|
<div class="item-label">匹配模式:</div>
|
|
|
<div class="item-value">
|
|
|
<el-radio-group v-model="cur.matchway" @change="chooseMatchWay($event)">
|
|
@@ -177,7 +177,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- mounted () {},
|
|
|
methods: {
|
|
|
// 关键词推荐数量查询
|
|
|
keywordsInput () {
|
|
@@ -371,6 +370,9 @@ export default {
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
margin-bottom: 10px;
|
|
|
+ &.no-center{
|
|
|
+ align-items: unset;
|
|
|
+ }
|
|
|
}
|
|
|
.item-label{
|
|
|
margin-right: 8px;
|
|
@@ -381,6 +383,11 @@ export default {
|
|
|
line-height: 40px;
|
|
|
text-align: right;
|
|
|
}
|
|
|
+ .no-center{
|
|
|
+ .item-label{
|
|
|
+ line-height: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
.radio-item{
|
|
|
margin-bottom: 16px;
|
|
|
}
|