summaryrefslogtreecommitdiff
path: root/src/views/BMC/Configuration/BMCConfigurationTable.vue
blob: a550743e90c88f1d04c92a06526f34c60ddfa38d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<template>
  <page-section class="bootstrap-table__section">
    <b-table
      responsive="md"
      show-empty
      class="bootstrap-rounded-table"
      :items="systems"
      :fields="fields"
      :empty-text="$t('global.table.emptyMessage')"
    >
      <template #cell(value)="data">
        <b-row v-if="data.index === 2">
          <b-col>
            <span v-if="isAddersСolon">
              {{ '487566942332' }}
            </span>
            <span v-else>
              {{ data.value }}
            </span>
          </b-col>
          <b-col class="macAddresCol">
            <b-form-checkbox v-model="isAddersСolon"> </b-form-checkbox>
            <span> {{ 'XXXX формат' }} </span>
          </b-col>
        </b-row>
        <span v-else>{{ data.value }}</span>
      </template>
    </b-table>
  </page-section>
</template>

<script>
import BVToastMixin from '@/components/Mixins/BVToastMixin';
import PageSection from '@/components/Global/PageSection';

import TableRowExpandMixin, {
  expandRowLabel,
} from '@/components/Mixins/TableRowExpandMixin';

export default {
  components: { PageSection },
  mixins: [BVToastMixin, TableRowExpandMixin],
  data() {
    return {
      isBusy: true,
      isAddersСolon: false,
      fields: [
        {
          key: 'param',
          label: 'Параметр',
          formatter: this.dataFormatter,
          thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
          class: `bootstrap-rounded-table__column-first
            bootstrap-rounded-table__column-first___bmc_conf`,
          tdClass: 'regular-12px bootstrap-rounded-table__td',
        },
        {
          key: 'value',
          label: 'Значение',
          formatter: this.dataFormatter,
          thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
          class: 'bootstrap-rounded-table__column-last',
          tdClass: 'regular-12px bootstrap-rounded-table__td',
        },
      ],
      expandRowLabel: expandRowLabel,
      systems: [
        {
          param: 'Время BMC',
          value: '14:20',
        },
        { param: 'Версия прошивки', value: '1.214.248 beta' },
        { param: 'MAC - адреса', value: '48:75:66:94:23:32' },
        { param: 'IP - адреса', value: '192.168.48.1' },
        { param: 'Имя ВМС', value: 'ВМС-007' },
      ],
    };
  },
};
</script>
<style lang="scss">
.bootstrap-rounded-table__column-first___bmc_conf {
  width: 50%;
}

.macAddresCol {
  height: 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}
</style>