|
@@ -13,26 +13,26 @@
|
|
|
<div class="ac_h_bottom">
|
|
<div class="ac_h_bottom">
|
|
|
<div class="ac_h_b_selectList">
|
|
<div class="ac_h_b_selectList">
|
|
|
<div>
|
|
<div>
|
|
|
- <el-select v-model="selectJuri" :placeholder="lang.ssSelectScope" @change="changeSelectType"
|
|
|
|
|
|
|
+ <el-select class="tagS" v-model="selectJuri" :placeholder="lang.ssSelectScope" @change="changeSelectType"
|
|
|
style="width: 120px;margin-right: 10px;">
|
|
style="width: 120px;margin-right: 10px;">
|
|
|
- <el-option v-for="item in selectList" :key="item.index" :label="item.label"
|
|
|
|
|
|
|
+ <el-option class="tagOption" v-for="item in selectList" :key="item.index" :label="item.label"
|
|
|
:value="item.index"></el-option>
|
|
:value="item.index"></el-option>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
- <el-select v-model="selectLabel" :placeholder="lang.ssSelectType" @change="changeSelectType"
|
|
|
|
|
|
|
+ <el-select class="tagS" v-model="selectLabel" :placeholder="lang.ssSelectType" @change="changeSelectType"
|
|
|
style="width: 110px;margin-right: 10px;">
|
|
style="width: 110px;margin-right: 10px;">
|
|
|
- <el-option v-for="item in labelSelect" :key="item.value" :label="item.label"
|
|
|
|
|
|
|
+ <el-option class="tagOption" v-for="item in labelSelect" :key="item.value" :label="item.label"
|
|
|
:value="item.value"></el-option>
|
|
:value="item.value"></el-option>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
|
|
|
|
|
- <el-select v-model="statusType" :placeholder="lang.ssSelectStatus" @change="changeSelectType"
|
|
|
|
|
|
|
+ <el-select class="tagS" v-model="statusType" :placeholder="lang.ssSelectStatus" @change="changeSelectType"
|
|
|
style="width: 110px;margin-right: 10px;">
|
|
style="width: 110px;margin-right: 10px;">
|
|
|
- <el-option v-for="item in statusList" :key="item.value" :label="item.label"
|
|
|
|
|
|
|
+ <el-option class="tagOption" v-for="item in statusList" :key="item.value" :label="item.label"
|
|
|
:value="item.value"></el-option>
|
|
:value="item.value"></el-option>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
<div>
|
|
|
- <el-input v-model="searchText" style="width: 250px;margin-right: 10px;"
|
|
|
|
|
|
|
+ <el-input class="tagS" v-model="searchText" style="width: 250px;margin-right: 10px;"
|
|
|
:placeholder="lang.ssEnterAppName" @keyup.enter.native="getData">
|
|
:placeholder="lang.ssEnterAppName" @keyup.enter.native="getData">
|
|
|
<i slot="suffix" class="searchInputIcon el-icon-search" @click="getData"></i>
|
|
<i slot="suffix" class="searchInputIcon el-icon-search" @click="getData"></i>
|
|
|
</el-input>
|
|
</el-input>
|
|
@@ -883,4 +883,8 @@ export default {
|
|
|
.checkActive {
|
|
.checkActive {
|
|
|
border: 2px solid #FF9400
|
|
border: 2px solid #FF9400
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+.tagS >>>.el-input__inner:focus {
|
|
|
|
|
+ border-color: #ef9e28;
|
|
|
|
|
+}
|
|
|
</style>
|
|
</style>
|