视图中心-日志视图的下拉列表样式调整,查询按钮背景颜色统一 #1
Showing
4 changed files
with
12 additions
and
5 deletions
@@ -61,7 +61,13 @@ | @@ -61,7 +61,13 @@ | ||
61 | margin-bottom: 3px !important; | 61 | margin-bottom: 3px !important; |
62 | /*width: 250px !important;*/ | 62 | /*width: 250px !important;*/ |
63 | } | 63 | } |
64 | - | 64 | +/*lsq esData下的搜索条件栏样式调整 2022-06-27*/ |
65 | +.container .cm-card .search .condition.esData-conditon div { | ||
66 | + margin-bottom: 0px !important; | ||
67 | +} | ||
68 | +.container .cm-card .search .condition.esData-conditon{ | ||
69 | + margin-bottom: 3px; | ||
70 | +} | ||
65 | .container .cm-card .search .btns { | 71 | .container .cm-card .search .btns { |
66 | width: 200px; | 72 | width: 200px; |
67 | display: flex; | 73 | display: flex; |
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/inputbiztypetree/index.html
1 | <div> | 1 | <div> |
2 | - <el-select :collapse-tags="true" :filter-method="selectFilterMethod" :filterable="isFilter" | 2 | + <el-select :size="$global.elementConfig.size.input" :collapse-tags="true" :filter-method="selectFilterMethod" :filterable="isFilter" |
3 | :size="size" @change="selectChangeMethod" @visible-change="selectClose" clearable placeholder="所属系统" | 3 | :size="size" @change="selectChangeMethod" @visible-change="selectClose" clearable placeholder="所属系统" |
4 | style="min-width: 120px;" v-model="modelValueLabel"> | 4 | style="min-width: 120px;" v-model="modelValueLabel"> |
5 | <el-option :value="modelValue" style="height: auto;padding: 0;"> | 5 | <el-option :value="modelValue" style="height: auto;padding: 0;"> |
hg-monitor-web-base/src/main/resources/static/vue3/src/components/common/inputrestypetree/index.html
1 | <div> | 1 | <div> |
2 | - <el-select :collapse-tags="true" :filter-method="selectFilterMethod" :filterable="isFilter" | 2 | + <el-select :size="$global.elementConfig.size.input" :collapse-tags="true" :filter-method="selectFilterMethod" :filterable="isFilter" |
3 | :size="size" @change="selectChangeMethod" @visible-change="selectClose" clearable placeholder="资源类型" | 3 | :size="size" @change="selectChangeMethod" @visible-change="selectClose" clearable placeholder="资源类型" |
4 | style="min-width: 120px;" v-model="modelValueLabel"> | 4 | style="min-width: 120px;" v-model="modelValueLabel"> |
5 | <el-option :value="modelValue" style="height: auto;padding: 0;"> | 5 | <el-option :value="modelValue" style="height: auto;padding: 0;"> |
@@ -2,7 +2,7 @@ | @@ -2,7 +2,7 @@ | ||
2 | <div :style="{'min-height':height+'px','max-height':height+'px','height':'100%','padding-top':'3px'}" | 2 | <div :style="{'min-height':height+'px','max-height':height+'px','height':'100%','padding-top':'3px'}" |
3 | class="cm-card"> | 3 | class="cm-card"> |
4 | <div class="search"> | 4 | <div class="search"> |
5 | - <div class="condition"> | 5 | + <div class="condition esData-conditon"> |
6 | <el-form-item> | 6 | <el-form-item> |
7 | <el-input :size="$global.elementConfig.size.input" placeholder="=资源名称、日志内容=" | 7 | <el-input :size="$global.elementConfig.size.input" placeholder="=资源名称、日志内容=" |
8 | v-model="search.keyword"></el-input> | 8 | v-model="search.keyword"></el-input> |
@@ -26,6 +26,7 @@ | @@ -26,6 +26,7 @@ | ||
26 | 26 | ||
27 | <el-form-item> | 27 | <el-form-item> |
28 | <el-date-picker | 28 | <el-date-picker |
29 | + :size="$global.elementConfig.size.input" | ||
29 | end-placeholder="结束时间" | 30 | end-placeholder="结束时间" |
30 | format="YYYY-MM-DD HH:mm:ss" | 31 | format="YYYY-MM-DD HH:mm:ss" |
31 | range-separator="-" | 32 | range-separator="-" |
@@ -36,7 +37,7 @@ | @@ -36,7 +37,7 @@ | ||
36 | /> | 37 | /> |
37 | </el-form-item> | 38 | </el-form-item> |
38 | <el-form-item> | 39 | <el-form-item> |
39 | - <el-button :size="$global.elementConfig.size.button" @click="getDataList">查询</el-button> | 40 | + <el-button :size="$global.elementConfig.size.button" type="primary" @click="getDataList">查询</el-button> |
40 | </el-form-item> | 41 | </el-form-item> |
41 | </div> | 42 | </div> |
42 | </div> | 43 | </div> |
-
Please register or login to post a comment