diff --git a/src/assets/css/components/views/charts/NetworkOverviewLine.scss b/src/assets/css/components/views/charts/NetworkOverviewLine.scss index 72a96401..850ea250 100644 --- a/src/assets/css/components/views/charts/NetworkOverviewLine.scss +++ b/src/assets/css/components/views/charts/NetworkOverviewLine.scss @@ -23,16 +23,18 @@ .line-select__operation { height: 24px; margin-left: 3px; - background: #FFFFFF; box-shadow: 0 2px 4px 0 rgba(51,51,51,0.10); border-radius: 2px; .option__select { + pointer-events:none; .el-input__inner { width: 80px; height: 24px; - text-align: left; + padding-left: 4px; line-height: 24px; + font-size: 12px; color: #2C72C6; + font-weight: 400; } .el-input__suffix { display: flex; diff --git a/src/views/charts2/charts/NetworkOverviewLine.vue b/src/views/charts2/charts/NetworkOverviewLine.vue index 30bae4a0..8dc25e4c 100644 --- a/src/views/charts2/charts/NetworkOverviewLine.vue +++ b/src/views/charts2/charts/NetworkOverviewLine.vue @@ -7,12 +7,12 @@
- +
@@ -21,12 +21,12 @@
- +
@@ -50,10 +50,10 @@ export default { }, data () { return { - options: [ + options1: [ { - value: 'Option1', - label: 'Option1' + value: 'Bits', + label: 'Bits' }, { value: 'Option2', @@ -63,15 +63,23 @@ export default { value: 'Option3', label: 'Option3' }, + ], + value1: '', + options2: [ { - value: 'Option4', - label: 'Option4' + value: 'Average', + label: 'Average' }, { - value: 'Option5', - label: 'Option5' - } + value: 'Option2', + label: 'Option2' + }, + { + value: 'Option3', + label: 'Option3' + }, ], + value2: '', mpackets: [42, 1, 2, 1, 12], unitConvert }