-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (100 loc) · 4.1 KB
/
index.html
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<!-- Load required Bootstrap and BootstrapVue CSS -->
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap/dist/css/bootstrap.min.css" />
<link type="text/css" rel="stylesheet" href="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.min.css" />
<link type="text/css" rel="stylesheet" href="./style.css" />
<!-- Load polyfills to support older browsers -->
<script src="//polyfill.io/v3/polyfill.min.js?features=es2015%2CIntersectionObserver" crossorigin="anonymous">
</script>
<!-- Load Vue followed by BootstrapVue and Axios -->
<script src="//unpkg.com/vue@latest/dist/vue.min.js"></script>
<script src="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- Load the following for BootstrapVueIcons support -->
<script src="//unpkg.com/bootstrap-vue@latest/dist/bootstrap-vue-icons.min.js"></script>
</head>
<body>
<div id='test'>
</div>
<div id="company-table">
<template>
<b-container fluid>
<!-- User Interface controls -->
<b-row>
<b-col lg="6" class="my-1">
<b-form-group label="Filter" label-cols-sm="3" label-align-sm="right" label-size="sm"
label-for="filterInput" class="mb-0">
<b-input-group size="sm">
<b-form-input v-model="filter" type="search" id="filterInput" placeholder="Suchbegriff eingeben">
</b-form-input>
<b-input-group-append>
<b-button :disabled="!filter" @click="filter = ''">Clear</b-button>
</b-input-group-append>
</b-input-group>
</b-form-group>
</b-col>
</b-row>
<!-- Main table element -->
<b-table show-empty hover small sticky-header="35vh" :items="items" :filter="filter"
@row-clicked="companyRowClickHandler">
</b-table>
</b-container>
</template>
</div>
<div id="kunden-table">
<template>
<b-container fluid>
<!-- User Interface controls -->
<b-row>
<b-col lg="6" class="my-1">
<b-form-group label="Filter" label-cols-sm="3" label-align-sm="right" label-size="sm"
label-for="filterInput" class="mb-0">
<b-input-group size="sm">
<b-form-input v-model="filter" type="search" id="filterInput" placeholder="Suchbegriff eingeben">
</b-form-input>
<b-input-group-append>
<b-button :disabled="!filter" @click="filter = ''">Clear</b-button>
</b-input-group-append>
</b-input-group>
</b-form-group>
</b-col>
</b-row>
<!-- Main table element -->
<b-table show-empty small sticky-header="35vh" :items="items" :fields="fields" :filter="filter">
</b-table>
</b-container>
</template>
</div>
<div id="licence-table">
<template>
<b-container fluid>
<!-- User Interface controls -->
<b-row>
<b-col lg="6" class="my-1">
<b-form-group label="Filter" label-cols-sm="3" label-align-sm="right" label-size="sm"
label-for="filterInput" class="mb-0">
<b-input-group size="sm">
<b-form-input v-model="filter" type="search" id="filterInput" placeholder="Suchbegriff eingeben">
</b-form-input>
<b-input-group-append>
<b-button :disabled="!filter" @click="filter = ''">Clear</b-button>
</b-input-group-append>
</b-input-group>
</b-form-group>
</b-col>
</b-row>
<!-- Main table element -->
<b-table show-empty small sticky-header="45vh" :items="items" :fields="fields" :filter="filter">
</b-table>
</b-container>
</template>
</div>
<script src="test1.js"></script>
</body>
</html>