@worksafevictoria/wcl7.5 1.12.0 → 1.13.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/Containers/Carousel/index.vue +18 -28
- package/src/components/Containers/HomepageHeaderNew/index.stories.js +5 -0
- package/src/components/Containers/HomepageHeaderNew/index.vue +6 -7
- package/src/components/Global/AppHeaderNew/index.vue +28 -19
- package/src/components/Global/AppHeaderNew/mobile.scss +50 -12
- package/src/components/Global/AppHeaderNew/styles.scss +20 -32
- package/src/components/Paragraphs/Directory/Asbestos/Records/SingleRecord/index.stories.js +7 -7
- package/src/components/Paragraphs/Directory/Asbestos/Records/SingleRecord/index.vue +21 -23
- package/src/components/Paragraphs/Directory/Asbestos/Records/index.vue +41 -40
- package/src/components/SubComponents/ResourceGroup/index.vue +183 -151
- package/src/index.js +1 -1
- package/src/mock/asbestos-removalists.js +224 -196
package/package.json
CHANGED
|
@@ -1,26 +1,29 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
|
-
<
|
|
3
|
+
<BCarousel
|
|
4
4
|
id="carousel-1"
|
|
5
5
|
:class="{carouselPara: isParagraph}"
|
|
6
6
|
v-model="slide"
|
|
7
7
|
interval="0"
|
|
8
8
|
controls
|
|
9
9
|
indicators
|
|
10
|
+
label-indicators="Select a slide to display"
|
|
10
11
|
keyboard
|
|
11
12
|
:fade="true"
|
|
12
13
|
background="#ababab"
|
|
14
|
+
img-width="100%"
|
|
15
|
+
img-height="auto"
|
|
13
16
|
>
|
|
14
|
-
<
|
|
17
|
+
<BCarouselSlide
|
|
15
18
|
v-for="item in filteredCarouselItems"
|
|
16
19
|
:key="item.id"
|
|
17
20
|
:img-src="getImageURL(item.imageURL)"
|
|
18
21
|
:img-alt="item.imageAlt"
|
|
19
22
|
@click.prevent="handleClick(item.linkURL)"
|
|
20
23
|
>
|
|
21
|
-
|
|
22
|
-
</
|
|
23
|
-
</
|
|
24
|
+
<h4>{{ item.title }}</h4>
|
|
25
|
+
</BCarouselSlide>
|
|
26
|
+
</BCarousel>
|
|
24
27
|
</div>
|
|
25
28
|
</template>
|
|
26
29
|
|
|
@@ -113,29 +116,19 @@ methods: {
|
|
|
113
116
|
<style>
|
|
114
117
|
.carousel {
|
|
115
118
|
position: relative;
|
|
116
|
-
|
|
117
|
-
max-width: 540px;
|
|
119
|
+
margin-bottom: 10px;
|
|
118
120
|
}
|
|
119
|
-
|
|
120
|
-
.carousel
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
.carousel-indicators {
|
|
125
|
-
padding-bottom: 3rem;
|
|
126
|
-
float: right;
|
|
127
|
-
right: 2% !important;
|
|
128
|
-
width: 20%;
|
|
129
|
-
justify-content: end;
|
|
130
|
-
margin-left: 80%;
|
|
131
|
-
margin-right: 0;
|
|
121
|
+
/* Introduced changes to make image responsive */
|
|
122
|
+
.carousel img {
|
|
123
|
+
object-fit: cover;
|
|
124
|
+
max-height: 420px;
|
|
125
|
+
width: 100%;
|
|
132
126
|
}
|
|
133
127
|
|
|
134
128
|
.carousel-indicators button {
|
|
135
129
|
width: 10px !important;
|
|
136
130
|
height: 10px !important;
|
|
137
131
|
border-radius: 50% !important;
|
|
138
|
-
background-color: black !important;
|
|
139
132
|
}
|
|
140
133
|
|
|
141
134
|
.carousel-indicators button:focus,
|
|
@@ -145,12 +138,9 @@ methods: {
|
|
|
145
138
|
}
|
|
146
139
|
|
|
147
140
|
.carousel-caption {
|
|
148
|
-
color:
|
|
149
|
-
top: 100%;
|
|
150
|
-
left: 0;
|
|
151
|
-
right: 20%;
|
|
152
|
-
text-align: left;
|
|
141
|
+
color: white;
|
|
153
142
|
text-decoration: underline;
|
|
143
|
+
background-color: black;
|
|
154
144
|
}
|
|
155
145
|
|
|
156
146
|
.carousel-control-next,
|
|
@@ -176,8 +166,8 @@ methods: {
|
|
|
176
166
|
.carouselPara {
|
|
177
167
|
margin-left: auto;
|
|
178
168
|
margin-right: auto;
|
|
179
|
-
|
|
180
|
-
|
|
169
|
+
height: 50%;
|
|
170
|
+
width:50%;
|
|
181
171
|
}
|
|
182
172
|
|
|
183
173
|
</style>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import HomepageHeader from './index.vue'
|
|
2
2
|
import { mockCarouselItems } from '../../../mock/carousel-items'
|
|
3
3
|
|
|
4
|
+
// Introduced an additional headerLink
|
|
4
5
|
|
|
5
6
|
const headerLinks = [
|
|
6
7
|
{
|
|
@@ -22,6 +23,10 @@ const headerLinks = [
|
|
|
22
23
|
{
|
|
23
24
|
text: 'Pay or renew your insurance',
|
|
24
25
|
path: '/pay-or-renew-your-workcover-insurance-premium'
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
text: 'Contact Worksafe',
|
|
29
|
+
path: '/contact-worksafe'
|
|
25
30
|
}
|
|
26
31
|
]
|
|
27
32
|
|
|
@@ -14,10 +14,9 @@
|
|
|
14
14
|
<div class="homepage-header__content-wrapper">
|
|
15
15
|
<container class="homepage-header__content-wrapper__content">
|
|
16
16
|
<row>
|
|
17
|
+
<!-- changes made to bootstrap grid breakpoints -->
|
|
17
18
|
<column
|
|
18
|
-
class="homepage-header__content-wrapper__content-col col-12 col-md-7 homepage-header__content-wrapper__content-col--split wcl-rich-text--ltr"
|
|
19
|
-
:xs="7"
|
|
20
|
-
:md="7"
|
|
19
|
+
class="homepage-header__content-wrapper__content-col col-12 col-md-7 col-lg-8 homepage-header__content-wrapper__content-col--split wcl-rich-text--ltr"
|
|
21
20
|
>
|
|
22
21
|
<carousel-component
|
|
23
22
|
:carousel-items="slideList"
|
|
@@ -25,10 +24,8 @@
|
|
|
25
24
|
:is-paragraph="false"
|
|
26
25
|
/>
|
|
27
26
|
</column>
|
|
28
|
-
<column
|
|
29
|
-
|
|
30
|
-
:offset-md="1"
|
|
31
|
-
class="homepage-header__side col-md-4 offset-md-1"
|
|
27
|
+
<column
|
|
28
|
+
class="homepage-header__side col-12 col-md-5 col-lg-4"
|
|
32
29
|
>
|
|
33
30
|
<div>
|
|
34
31
|
<cta-button
|
|
@@ -220,4 +217,6 @@ export default {
|
|
|
220
217
|
}
|
|
221
218
|
}
|
|
222
219
|
}
|
|
220
|
+
|
|
221
|
+
|
|
223
222
|
</style>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
:class="'app-header' + (screen === 'mobile' ? ' ' + 'isMobile' : '')"
|
|
6
6
|
>
|
|
7
7
|
<!-- Top menu -->
|
|
8
|
-
<div class="logo">
|
|
8
|
+
<div :class="screen === 'mobile' ? 'logoMobile' : 'logo'">
|
|
9
9
|
<!-- Mobile Menu -->
|
|
10
10
|
<div v-if="screen === 'mobile'" class="app-header__mobile-menu-container">
|
|
11
11
|
<a class="dark" role="button" @click.prevent="showMobileMenu">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<!-- Logo -->
|
|
16
16
|
<nuxt-link class="dark" to="/">
|
|
17
17
|
<img
|
|
18
|
-
:class="screen === 'mobile' ? '
|
|
18
|
+
:class="screen === 'mobile' ? 'logoImgMobile' : 'logoImg'"
|
|
19
19
|
:alt="
|
|
20
20
|
isWorkWell
|
|
21
21
|
? 'Work Well Victoria - Logo'
|
|
@@ -26,36 +26,38 @@
|
|
|
26
26
|
</nuxt-link>
|
|
27
27
|
<span :class="screen === 'mobile' ? 'logo__nav_mobile' : 'logo__nav'">
|
|
28
28
|
<!-- Roles added for accessibility -->
|
|
29
|
-
<table role="presentation" >
|
|
29
|
+
<table role="presentation" style="margin-right: 0;">
|
|
30
30
|
<tbody role="presentation">
|
|
31
31
|
<tr role="presentation">
|
|
32
|
-
<td :class="screen === 'mobile' ? 'td_mobile' : ''">
|
|
32
|
+
<td :class="screen === 'mobile' ? 'td_mobile mobile-link' : ''">
|
|
33
33
|
<!-- Language link -->
|
|
34
|
+
|
|
34
35
|
<nuxt-link
|
|
35
|
-
:class="screen === 'mobile' ? 'mobile-link' : ''"
|
|
36
36
|
to="/languages"
|
|
37
37
|
@click.native="fireAnalytics('Choose your language', '/languages')"
|
|
38
38
|
title="Language"
|
|
39
39
|
>
|
|
40
40
|
<span v-if="screen !== 'mobile'">Choose your language </span>
|
|
41
|
-
<img alt="Language Icon" width="15px" height="15px" :src=LanguageIcon />
|
|
41
|
+
<img :class="screen === 'mobile' ? 'imgMobile' : ''" alt="Language Icon" width="15px" height="15px" :src=LanguageIcon />
|
|
42
42
|
</nuxt-link>
|
|
43
|
+
|
|
43
44
|
</td>
|
|
44
|
-
<td :class="screen === 'mobile' ? 'td_mobile' : ''">
|
|
45
|
+
<td :class="screen === 'mobile' ? 'td_mobile mobile-link' : ''">
|
|
45
46
|
<!-- Contrast link -->
|
|
46
|
-
<a href="javascript:void(0)"
|
|
47
|
-
<span v-if="screen !== 'mobile'">Adjust contrast</span> <img alt="Contrast Icon" width="15px" height="15px" :src=ContrastIcon />
|
|
47
|
+
<a href="javascript:void(0)" @click="show = !show" @keyup.esc="show = !show" title="Contrast" ref="selectContrast">
|
|
48
|
+
<span v-if="screen !== 'mobile'">Adjust contrast</span> <img :class="screen === 'mobile' ? 'imgMobile' : ''" alt="Contrast Icon" width="15px" height="15px" :src=ContrastIcon />
|
|
48
49
|
</a>
|
|
49
50
|
<div
|
|
50
51
|
ref="contrastChoices"
|
|
51
|
-
class="flex-
|
|
52
|
+
:class="screen === 'mobile' ? 'flex-container_contrast_mobile' : 'flex-container_contrast'"
|
|
52
53
|
v-if="show"
|
|
53
54
|
>
|
|
54
|
-
<div class="flex-
|
|
55
|
-
<div v-for="list in lists" :key="list.value">
|
|
56
|
-
|
|
55
|
+
<div class="flex-item_contrast contrast_slide--box-list">
|
|
56
|
+
<div v-for="list in lists" :key="list.value" >
|
|
57
|
+
<label :for="list.id" :class="{'last-radio': list.label==='Greyscale'}">
|
|
57
58
|
<input
|
|
58
59
|
type="radio"
|
|
60
|
+
:id="list.id"
|
|
59
61
|
:name="list.name"
|
|
60
62
|
:value="list.value"
|
|
61
63
|
:checked="list.value === selectedValue"
|
|
@@ -74,7 +76,7 @@
|
|
|
74
76
|
class="cta-button cta-button--text-only cta-button--slim"
|
|
75
77
|
to="/search"
|
|
76
78
|
title="Search"
|
|
77
|
-
><span v-if="screen !== 'mobile'">Search </span
|
|
79
|
+
><span v-if="screen !== 'mobile'">Search </span><img alt="Search Icon" style="margin-top: 2px;" width="15px" height="15px" :src=NavSearchIcon />
|
|
78
80
|
</nuxt-link>
|
|
79
81
|
</td>
|
|
80
82
|
<td :class="screen === 'mobile' ? 'td_mobile-last' : ''">
|
|
@@ -411,18 +413,25 @@ export default {
|
|
|
411
413
|
NavSearchIcon,
|
|
412
414
|
lists: [
|
|
413
415
|
{
|
|
416
|
+
id: 'contrast1',
|
|
414
417
|
name: 'contrast',
|
|
415
418
|
value: 'default',
|
|
416
|
-
label: 'Light contrast (default)'
|
|
419
|
+
label: 'Light contrast (default)',
|
|
420
|
+
labelmobile: 'Light'
|
|
417
421
|
},
|
|
418
422
|
{
|
|
423
|
+
id: 'contrast2',
|
|
419
424
|
name: 'contrast',
|
|
420
425
|
value: 'high_contrast',
|
|
421
|
-
label: 'Increased contrast'
|
|
426
|
+
label: 'Increased contrast',
|
|
427
|
+
labelmobile: 'Increased'
|
|
422
428
|
},
|
|
423
|
-
{
|
|
424
|
-
|
|
425
|
-
|
|
429
|
+
{
|
|
430
|
+
id: 'contrast3',
|
|
431
|
+
name: 'contrast',
|
|
432
|
+
value: 'grayscale',
|
|
433
|
+
label: 'Greyscale',
|
|
434
|
+
labelmobile: 'Greyscale'
|
|
426
435
|
}
|
|
427
436
|
],
|
|
428
437
|
selectedValue: null
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
.app-header {
|
|
4
4
|
&.isMobile {
|
|
5
5
|
padding: 0;
|
|
6
|
+
width: 100vw;
|
|
6
7
|
|
|
7
8
|
.app-header {
|
|
8
9
|
&__wrap {
|
|
@@ -20,6 +21,8 @@
|
|
|
20
21
|
|
|
21
22
|
ul {
|
|
22
23
|
float: none;
|
|
24
|
+
padding-left: 15px;
|
|
25
|
+
padding-right: 10px;
|
|
23
26
|
|
|
24
27
|
li {
|
|
25
28
|
height: 62px;
|
|
@@ -71,6 +74,8 @@
|
|
|
71
74
|
display: table-cell;
|
|
72
75
|
vertical-align: middle;
|
|
73
76
|
text-align: left;
|
|
77
|
+
margin-left: 0px;
|
|
78
|
+
margin-right: 10px;
|
|
74
79
|
|
|
75
80
|
svg {
|
|
76
81
|
filter: invert(100%) sepia(5%) saturate(49%) hue-rotate(165deg)
|
|
@@ -177,6 +182,7 @@
|
|
|
177
182
|
margin-bottom: 5px;
|
|
178
183
|
padding: 0;
|
|
179
184
|
top: 0;
|
|
185
|
+
margin-left: 10px;
|
|
180
186
|
|
|
181
187
|
span {
|
|
182
188
|
color: $app-header-active;
|
|
@@ -267,38 +273,70 @@
|
|
|
267
273
|
top: 10px !important;
|
|
268
274
|
}
|
|
269
275
|
|
|
270
|
-
.
|
|
276
|
+
.logoMobile {
|
|
277
|
+
height: 85px;
|
|
278
|
+
padding: 15px 0%;
|
|
279
|
+
display: flex;
|
|
280
|
+
align-items: center;
|
|
281
|
+
margin-right: 0px;
|
|
282
|
+
margin-left: 10px;
|
|
283
|
+
background-color: white;
|
|
284
|
+
width: 100%;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.logoImgMobile {
|
|
271
288
|
height: 40px;
|
|
272
289
|
width: auto;
|
|
273
290
|
}
|
|
274
291
|
|
|
275
|
-
.
|
|
276
|
-
display:
|
|
277
|
-
margin-left:
|
|
278
|
-
margin-right:
|
|
279
|
-
width:
|
|
292
|
+
.logo__nav_mobile {
|
|
293
|
+
display:flex;
|
|
294
|
+
margin-left: 15px;
|
|
295
|
+
margin-right: 25px;
|
|
296
|
+
width: 60% !important;
|
|
280
297
|
overflow-y:auto;
|
|
298
|
+
justify-content: flex-end;
|
|
299
|
+
|
|
300
|
+
table {
|
|
301
|
+
border-collapse: separate;
|
|
302
|
+
border-spacing: 5px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.imgMobile {
|
|
308
|
+
display: block;
|
|
309
|
+
margin-left: auto;
|
|
310
|
+
margin-right: auto;
|
|
281
311
|
}
|
|
282
312
|
|
|
283
313
|
.td_mobile {
|
|
284
|
-
padding: 0px 5px !important;
|
|
285
314
|
height: 35px;
|
|
286
315
|
width: 35px;
|
|
287
316
|
}
|
|
288
317
|
|
|
289
318
|
.td_mobile-last {
|
|
290
|
-
padding: 0px
|
|
319
|
+
padding: 0px !important;
|
|
291
320
|
}
|
|
292
321
|
|
|
293
322
|
.mobile-link {
|
|
294
|
-
|
|
295
|
-
|
|
323
|
+
width: 40px !important;
|
|
324
|
+
height: 40px !important;
|
|
296
325
|
background-color: #f2f2f2;
|
|
297
326
|
border: 1px solid #f2f2f2;
|
|
298
|
-
border-radius:
|
|
327
|
+
border-radius: 8px;
|
|
328
|
+
|
|
329
|
+
&:focus, &:hover {
|
|
330
|
+
border: 1px solid #BABABA;
|
|
331
|
+
}
|
|
299
332
|
}
|
|
300
333
|
|
|
301
334
|
.app-header__wrap_mobile {
|
|
302
335
|
background: none;
|
|
303
336
|
height: 0px;
|
|
304
|
-
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.flex-container_contrast_mobile {
|
|
340
|
+
margin-left: -167px;
|
|
341
|
+
}
|
|
342
|
+
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
color: $app-menu-white;
|
|
5
5
|
z-index: 27;
|
|
6
6
|
position: relative;
|
|
7
|
-
padding: 0px
|
|
8
|
-
width:
|
|
7
|
+
padding: 0px;
|
|
8
|
+
width: 100vw;
|
|
9
9
|
font-size: 14px;
|
|
10
10
|
|
|
11
11
|
&__wrap {
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
padding: 0px 15px;
|
|
19
19
|
display: table;
|
|
20
20
|
width: 100%;
|
|
21
|
+
border-bottom-style: solid;
|
|
22
|
+
border-bottom-color: white;
|
|
23
|
+
border-bottom-width: 2px;
|
|
21
24
|
|
|
22
25
|
> nav {
|
|
23
26
|
width: 100%;
|
|
@@ -43,7 +46,7 @@
|
|
|
43
46
|
.isActiveChild {
|
|
44
47
|
> a {
|
|
45
48
|
background: $app-header-active;
|
|
46
|
-
color:
|
|
49
|
+
color: white;
|
|
47
50
|
border-bottom: 1px solid transparent;
|
|
48
51
|
}
|
|
49
52
|
}
|
|
@@ -378,16 +381,19 @@
|
|
|
378
381
|
|
|
379
382
|
.logo {
|
|
380
383
|
height: 85px;
|
|
381
|
-
padding: 15px
|
|
384
|
+
padding: 15px 0%;
|
|
382
385
|
width: 100%;
|
|
383
386
|
display: flex;
|
|
384
387
|
align-items: center;
|
|
385
|
-
margin-right:
|
|
388
|
+
margin-right: 50px;
|
|
389
|
+
margin-left: -10px;
|
|
386
390
|
background-color: white;
|
|
391
|
+
width: 100vw;
|
|
387
392
|
|
|
388
393
|
&__nav {
|
|
389
394
|
display:inline-block;
|
|
390
395
|
margin-left: 15px;
|
|
396
|
+
margin-right: 10px;
|
|
391
397
|
color: #000;
|
|
392
398
|
width: 100%;
|
|
393
399
|
text-align: right;
|
|
@@ -421,9 +427,10 @@
|
|
|
421
427
|
}
|
|
422
428
|
}
|
|
423
429
|
|
|
424
|
-
.
|
|
430
|
+
.logoImg {
|
|
425
431
|
height: 55px;
|
|
426
432
|
width: auto;
|
|
433
|
+
margin-left: 20px;
|
|
427
434
|
}
|
|
428
435
|
|
|
429
436
|
.semi-circle {
|
|
@@ -470,11 +477,7 @@
|
|
|
470
477
|
}
|
|
471
478
|
}
|
|
472
479
|
}
|
|
473
|
-
|
|
474
|
-
left: 100%;
|
|
475
|
-
-webkit-transform: translateX(-100%);
|
|
476
|
-
transform: translateX(-100%);
|
|
477
|
-
}
|
|
480
|
+
|
|
478
481
|
.contrast_slide {
|
|
479
482
|
&_container {
|
|
480
483
|
background: white;
|
|
@@ -490,21 +493,6 @@
|
|
|
490
493
|
margin: 0;
|
|
491
494
|
right: 0;
|
|
492
495
|
position: absolute;
|
|
493
|
-
|
|
494
|
-
// &.closed {}
|
|
495
|
-
&.opened {
|
|
496
|
-
> .contrast_slide_hoverbar {
|
|
497
|
-
@include opened-slide;
|
|
498
|
-
}
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
@media (min-width: 768px) {
|
|
502
|
-
&:hover {
|
|
503
|
-
> .contrast_slide_hoverbar {
|
|
504
|
-
@include opened-slide;
|
|
505
|
-
}
|
|
506
|
-
}
|
|
507
|
-
}
|
|
508
496
|
}
|
|
509
497
|
|
|
510
498
|
&_hoverbar {
|
|
@@ -604,14 +592,13 @@
|
|
|
604
592
|
padding: 10px 0;
|
|
605
593
|
|
|
606
594
|
input[type='radio'] {
|
|
607
|
-
border:
|
|
595
|
+
border: 3px solid #bebebe;
|
|
608
596
|
border-radius: 50%;
|
|
609
|
-
|
|
610
|
-
height: 24px;
|
|
597
|
+
height: 25px;
|
|
611
598
|
outline: none;
|
|
612
599
|
vertical-align: middle;
|
|
613
600
|
margin-right: 5px;
|
|
614
|
-
width:
|
|
601
|
+
width: 25px;
|
|
615
602
|
appearance: none;
|
|
616
603
|
|
|
617
604
|
&:before {
|
|
@@ -633,11 +620,11 @@
|
|
|
633
620
|
}
|
|
634
621
|
}
|
|
635
622
|
|
|
636
|
-
.flex-
|
|
623
|
+
.flex-container_contrast {
|
|
637
624
|
margin-left: -5px;
|
|
638
625
|
}
|
|
639
626
|
|
|
640
|
-
.flex-
|
|
627
|
+
.flex-item_contrast {
|
|
641
628
|
border: 1px solid;
|
|
642
629
|
border-color: #BABABA;
|
|
643
630
|
padding: 10px;
|
|
@@ -647,5 +634,6 @@
|
|
|
647
634
|
input[type="radio"] {
|
|
648
635
|
accent-color: black;
|
|
649
636
|
margin-right: 5px;
|
|
637
|
+
vertical-align: middle;
|
|
650
638
|
}
|
|
651
639
|
}
|
|
@@ -3,17 +3,17 @@ import arRecord from './index.vue'
|
|
|
3
3
|
const arData =
|
|
4
4
|
{
|
|
5
5
|
title: 'Ventia Utility Services Pty Limited',
|
|
6
|
-
fullAddress: 'MITCHAM
|
|
7
|
-
workPhone: '0438531164',
|
|
6
|
+
fullAddress: 'MITCHAM 3132',
|
|
7
|
+
// workPhone: '0438531164',
|
|
8
8
|
mobilePhone: '0438531164',
|
|
9
9
|
email: 'daniel.dehaan@ventia.com',
|
|
10
10
|
website: 'http://www.ventia.com.au',
|
|
11
11
|
contact1: 'Daniel DeHaan',
|
|
12
|
-
phone1: '0438531164',
|
|
13
|
-
email1: 'daniel.dehaan@ventia.com',
|
|
14
|
-
mobile1: '0438531164',
|
|
15
|
-
serviceCategory: 'Class B -
|
|
16
|
-
services: 'Bituminous coal tar coatings,Non-friable Asbestos Cement Water Pipes and Associated Fittings ONLY,Non-friable Asbetos Containing Bituminous Coating on Mild Steel Pipes',
|
|
12
|
+
// phone1: '0438531164',
|
|
13
|
+
// email1: 'daniel.dehaan@ventia.com',
|
|
14
|
+
// mobile1: '0438531164',
|
|
15
|
+
serviceCategory: 'Class B - Non-friable',
|
|
16
|
+
// services: 'Bituminous coal tar coatings,Non-friable Asbestos Cement Water Pipes and Associated Fittings ONLY,Non-friable Asbetos Containing Bituminous Coating on Mild Steel Pipes',
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
|
|
@@ -14,26 +14,23 @@
|
|
|
14
14
|
{{ item.title }}
|
|
15
15
|
</a>
|
|
16
16
|
</column>
|
|
17
|
-
<column md="
|
|
17
|
+
<column md="3" sm="12" class="address">
|
|
18
18
|
<div class="label">Location</div>
|
|
19
19
|
<a v-if="item.fullAddress" target="_blank" :href="gMapLink"
|
|
20
20
|
><span class="sr-only visually-hidden">Address</span>
|
|
21
21
|
{{ item.fullAddress }}
|
|
22
22
|
</a>
|
|
23
23
|
</column>
|
|
24
|
-
<column md="
|
|
24
|
+
<column md="3" sm="12" class="coldata longstring">
|
|
25
25
|
<div class="label">Email</div>
|
|
26
26
|
<a v-if="item.email" target="_blank" :href="`mailto:${item.email}`"
|
|
27
27
|
><span class="sr-only visually-hidden">Email address</span>
|
|
28
28
|
{{ item.email }}
|
|
29
29
|
</a>
|
|
30
30
|
</column>
|
|
31
|
-
<column md="
|
|
32
|
-
<div class="label">
|
|
33
|
-
|
|
34
|
-
><span class="sr-only visually-hidden">Website address</span>
|
|
35
|
-
{{ item.website }}
|
|
36
|
-
</a>
|
|
31
|
+
<column md="2" sm="12" class="coldata">
|
|
32
|
+
<div class="label">Contact</div>
|
|
33
|
+
{{ item.contact1 }}
|
|
37
34
|
</column>
|
|
38
35
|
<column md="2" sm="12" class="coldata">
|
|
39
36
|
<div class="label">Phone</div>
|
|
@@ -61,33 +58,34 @@
|
|
|
61
58
|
<div style="padding-top: 20px">
|
|
62
59
|
<hr />
|
|
63
60
|
</div>
|
|
64
|
-
<!--
|
|
65
|
-
|
|
61
|
+
<!-- Website, if any -->
|
|
62
|
+
|
|
63
|
+
<div v-if="item.website">
|
|
66
64
|
<row>
|
|
67
65
|
<column>
|
|
68
|
-
<h4>
|
|
66
|
+
<h4>Website</h4>
|
|
69
67
|
</column>
|
|
70
68
|
</row>
|
|
71
|
-
<row v-if="item.
|
|
72
|
-
<
|
|
73
|
-
|
|
74
|
-
{{ item.
|
|
75
|
-
</
|
|
69
|
+
<row v-if="item.website !== ''">
|
|
70
|
+
<a v-if="item.website" target="_blank" :href="`${item.website}`"
|
|
71
|
+
><span class="sr-only visually-hidden">Website address</span>
|
|
72
|
+
{{ item.website }}
|
|
73
|
+
</a>
|
|
76
74
|
</row>
|
|
77
|
-
<row v-if="item.phone1 !== ''">
|
|
75
|
+
<!-- <row v-if="item.phone1 !== ''">
|
|
78
76
|
<column sm="2" class="label"> Phone </column>
|
|
79
77
|
<column sm="4" class="dir-additional-records">
|
|
80
78
|
{{ item.phone1 }}
|
|
81
79
|
</column>
|
|
82
|
-
</row>
|
|
83
|
-
<row v-if="item.mobile1
|
|
80
|
+
</row> -->
|
|
81
|
+
<row v-if="item.mobile1">
|
|
84
82
|
<column sm="2" class="label"> Mobile </column>
|
|
85
83
|
<column sm="4" class="dir-additional-records">
|
|
86
84
|
{{ item.mobile1 }}
|
|
87
85
|
</column>
|
|
88
86
|
</row>
|
|
89
|
-
<row v-if="item.email1
|
|
90
|
-
<column sm="2" class="label"> Email </column>
|
|
87
|
+
<row v-if="item.email1">
|
|
88
|
+
<column sm="2" class="label" > Email </column>
|
|
91
89
|
<column sm="4" class="dir-additional-records">
|
|
92
90
|
{{ item.email1 }}
|
|
93
91
|
</column>
|
|
@@ -99,7 +97,7 @@
|
|
|
99
97
|
<h4>{{ item.serviceCategory }}</h4>
|
|
100
98
|
</column>
|
|
101
99
|
</row>
|
|
102
|
-
<row class="dir-additional-records">
|
|
100
|
+
<!-- <row class="dir-additional-records">
|
|
103
101
|
<column>
|
|
104
102
|
<ul>
|
|
105
103
|
<li v-for="serv in item.services.split(',')" :key="serv.id">
|
|
@@ -107,7 +105,7 @@
|
|
|
107
105
|
</li>
|
|
108
106
|
</ul>
|
|
109
107
|
</column>
|
|
110
|
-
</row>
|
|
108
|
+
</row> -->
|
|
111
109
|
</div>
|
|
112
110
|
</div>
|
|
113
111
|
</container>
|