summaryrefslogtreecommitdiff
path: root/src/views/Motherboard/Specification/MotherboardSpecificationPage.vue
blob: 03fc42e0103551d84d30e5d71e16ebc446534224 (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>
  <b-container
    :style="{ display: 'flex', 'flex-direction': 'column' }"
    fluid="xxl pt-0 m-0"
  >
    <page-title />
    <page-section class="bootstrap-table__section">
      <span class="bold-16px">{{ $t('global.table.info') }}</span>
      <b-table
        responsive="md"
        show-empty
        class="bootstrap-rounded-table"
        :items="items"
        :fields="fields"
        :empty-text="$t('global.table.emptyMessage')"
      >
      </b-table>
      <span class="bold-16px">{{ $t('appNavigation.motherboardParam') }}</span>
      <popover
        id="popover-reactive-1"
        description="SystemDescription.onBootRom"
        popup="SystemDescription.onBootRom_popup"
        button="global.action.refresh"
      />
      <popover
        id="popover-reactive-2"
        description="SystemDescription.offBootRom"
        popup="SystemDescription.offBootRom_popup"
        button="global.action.refresh"
      />
    </page-section>
  </b-container>
</template>

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

import Popover from '@/components/Global/Popover';

export default {
  components: { PageTitle, PageSection, Popover },
  data() {
    return {
      fields: [
        {
          key: 'parametr',
          label: 'Параметр',
          formatter: this.dataFormatter,
          thClass: 'semi-bold-12px__caps bootstrap-rounded-table__head_bg',
          class: 'bootstrap-rounded-table__column-first',
          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',
        },
      ],
      items: [
        {
          parametr: 'Модель',
          value: 'R2132',
        },
        {
          parametr: 'Производитель',
          value: 'Asus',
        },
        {
          parametr: 'Версия',
          value: '4.2',
        },
        {
          parametr: 'Серийный номер',
          value: '231232132133',
        },
        {
          parametr: 'Версия BIOS',
          value: '2',
        },
      ],
    };
  },
};
</script>
<style lang="scss" scoped>
.bootstrap-rounded-table {
  margin: 16px 0;
}
</style>