@worksafevictoria/wcl7.5 1.16.0-beta.3 → 1.16.0-beta.5
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/Global/AppHeaderNew/index.vue +1 -1
- package/src/components/Paragraphs/Directory/Asbestos/Records/SingleRecord/index.vue +0 -15
- package/src/components/Paragraphs/Directory/Asbestos/Records/index.vue +0 -39
- package/src/mock/asbestos-removalists.js +9 -136
package/package.json
CHANGED
|
@@ -58,21 +58,6 @@
|
|
|
58
58
|
<div style="padding-top: 20px">
|
|
59
59
|
<hr />
|
|
60
60
|
</div>
|
|
61
|
-
<!-- Website, if any -->
|
|
62
|
-
|
|
63
|
-
<div v-if="item.website">
|
|
64
|
-
<row>
|
|
65
|
-
<column>
|
|
66
|
-
<h5>Website</h5>
|
|
67
|
-
</column>
|
|
68
|
-
</row>
|
|
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>
|
|
74
|
-
</row>
|
|
75
|
-
</div>
|
|
76
61
|
<div v-if="item.serviceCategory">
|
|
77
62
|
<row class="row-dir-additional">
|
|
78
63
|
<column>
|
|
@@ -50,27 +50,8 @@
|
|
|
50
50
|
<option value="Class B - Non-friable">
|
|
51
51
|
Class B - Non-friable
|
|
52
52
|
</option>
|
|
53
|
-
<!-- <option value="Class A - Restricted - Asbestos Removalists">
|
|
54
|
-
Class A - Restricted - Asbestos Removalists
|
|
55
|
-
</option>
|
|
56
|
-
<option value="Class B - Restricted - Asbestos Removalists">
|
|
57
|
-
Class B - Restricted - Asbestos Removalists
|
|
58
|
-
</option> -->
|
|
59
53
|
</select>
|
|
60
54
|
</column>
|
|
61
|
-
<!-- <column xxl="2" xl="3" md="4" sm="6">
|
|
62
|
-
<label class="col-form-label visually-hidden" for="search-services">
|
|
63
|
-
Search by suburb (typed suburb automatically filters below results)
|
|
64
|
-
</label>
|
|
65
|
-
<input
|
|
66
|
-
id="search-services"
|
|
67
|
-
type="text"
|
|
68
|
-
v-model="searchServices"
|
|
69
|
-
placeholder="Services"
|
|
70
|
-
aria-label="Search by suburb (typed suburb automatically filters below results)"
|
|
71
|
-
class="search"
|
|
72
|
-
/>
|
|
73
|
-
</column> -->
|
|
74
55
|
<column md="2">
|
|
75
56
|
<filter-button
|
|
76
57
|
v-if="!hideReset"
|
|
@@ -120,7 +101,6 @@ export default {
|
|
|
120
101
|
searchRem: '',
|
|
121
102
|
searchSub: '',
|
|
122
103
|
searchClass: '',
|
|
123
|
-
// searchServices: '',
|
|
124
104
|
filteredItems: null,
|
|
125
105
|
perPage: 10,
|
|
126
106
|
page: 0,
|
|
@@ -159,21 +139,12 @@ export default {
|
|
|
159
139
|
.includes(this.searchClass.toLowerCase()),
|
|
160
140
|
)
|
|
161
141
|
}
|
|
162
|
-
// if (this.searchServices.length) {
|
|
163
|
-
// this.hideReset = false
|
|
164
|
-
// results = results.filter((item) =>
|
|
165
|
-
// item.services
|
|
166
|
-
// .toLowerCase()
|
|
167
|
-
// .includes(this.searchServices.toLowerCase()),
|
|
168
|
-
// )
|
|
169
|
-
// }
|
|
170
142
|
this.filteredItems = results
|
|
171
143
|
|
|
172
144
|
if (
|
|
173
145
|
this.searchRem.length ||
|
|
174
146
|
this.searchSub.length ||
|
|
175
147
|
this.searchClass.length
|
|
176
|
-
// || this.searchServices.length
|
|
177
148
|
) {
|
|
178
149
|
this.pageChanged(1)
|
|
179
150
|
}
|
|
@@ -194,19 +165,9 @@ export default {
|
|
|
194
165
|
type: 'ar',
|
|
195
166
|
title: record.Account,
|
|
196
167
|
fullAddress: record.Regbusinessaddresssuburb + ' ' + record.Regbusinessaddresspostcode,
|
|
197
|
-
// workPhone: record.Phone,
|
|
198
168
|
mobilePhone: record.PrimaryContactMobile,
|
|
199
169
|
email: record.PrimaryContactEmail,
|
|
200
|
-
website: record.Website ? this.formatWebsite(record.Website) : '',
|
|
201
|
-
// contact1: this.returnContact(
|
|
202
|
-
// record.ContactFirstName,
|
|
203
|
-
// record.ContactLastName,
|
|
204
|
-
// ),
|
|
205
170
|
contact1: record.PrimaryContactAccountName,
|
|
206
|
-
// email1: record.PrimaryContactEmail,
|
|
207
|
-
// phone1: record.ContactPhoneDisp,
|
|
208
|
-
// mobile1: record.PrimaryContactMobile,
|
|
209
|
-
// services: record.ServicesAll.replace(/,$/, ''),
|
|
210
171
|
serviceCategory: record.AsbestosClass,
|
|
211
172
|
})
|
|
212
173
|
})
|
|
@@ -1,254 +1,127 @@
|
|
|
1
1
|
export const arData = [
|
|
2
2
|
{
|
|
3
3
|
Account: 'A.D.S. Asbestos Removal Pty Ltd',
|
|
4
|
-
// CompanyAddress: '62 Webber Parade',
|
|
5
4
|
Regbusinessaddresssuburb: 'KEILOR EAST',
|
|
6
5
|
Regbusinessaddresspostcode: '3033',
|
|
7
|
-
// Phone: '0404073745',
|
|
8
|
-
// CompanyMobile: '0404 073 745',
|
|
9
|
-
// CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
10
|
-
Website: 'adsasbestosremoval.com.au',
|
|
11
|
-
// ContactFirstName: 'Ivan',
|
|
12
|
-
// ContactLastName: 'Silva',
|
|
13
6
|
PrimaryContactAccountName: 'Ivan Silva',
|
|
14
|
-
// ContactPhoneDisp: '0404073745',
|
|
15
7
|
PrimaryPrimaryContactEmail: 'ads.asbestos@gmail.com',
|
|
16
8
|
PrimaryContactMobile: '1300 064 277',
|
|
17
9
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
18
|
-
// ServicesAll: 'removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire and does not require an enclosure with a negative air unit(s) to perform the work.',
|
|
19
10
|
},
|
|
20
11
|
{
|
|
21
12
|
Account: 'AAA ASBESTOS SOLUTIONS PTY LTD',
|
|
22
|
-
// CompanyAddress: '9 Ewens Court',
|
|
23
13
|
Regbusinessaddresssuburb: 'MOUNT GAMBIER',
|
|
24
14
|
Regbusinessaddresspostcode: '5290',
|
|
25
|
-
// Phone: '0418 854 443',
|
|
26
|
-
// CompanyMobile: '0418 854 443',
|
|
27
|
-
// CompanyEmailDisp: 'nieto4@bigpond.net.au',
|
|
28
|
-
Website: '',
|
|
29
|
-
// ContactFirstName: 'ERIC',
|
|
30
|
-
// ContactLastName: 'NIETO',
|
|
31
15
|
PrimaryContactAccountName: 'ERIC NIETO',
|
|
32
|
-
// ContactPhoneDisp: '0418 854 443',
|
|
33
16
|
PrimaryContactEmail: 'nieto4@bigpond.net.au',
|
|
34
17
|
PrimaryContactMobile: '0418 854 443',
|
|
35
18
|
AsbestosClass: 'Class B - Non-friable',
|
|
36
|
-
// ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles)',
|
|
37
19
|
},
|
|
38
20
|
{
|
|
39
21
|
Account: 'Aaron John Field',
|
|
40
|
-
// CompanyAddress: '44 Townsent Street',
|
|
41
22
|
Regbusinessaddresssuburb: 'Howlong',
|
|
42
23
|
Regbusinessaddresspostcode: '2643',
|
|
43
|
-
// Phone: '',
|
|
44
|
-
// CompanyMobile: '0408474707',
|
|
45
|
-
// CompanyEmailDisp: 'azz_317@homail.com',
|
|
46
|
-
Website: '',
|
|
47
|
-
// ContactFirstName: 'Aaron',
|
|
48
|
-
// ContactLastName: 'Field',
|
|
49
24
|
PrimaryContactAccountName: 'Aaron Field',
|
|
50
|
-
// ContactPhoneDisp: '',
|
|
51
25
|
PrimaryContactEmail: 'azz_317@homail.com',
|
|
52
26
|
PrimaryContactMobile: '0408474707',
|
|
53
27
|
AsbestosClass: 'Class B - Non-friable',
|
|
54
|
-
// ServicesAll: 'All types of non-friable asbestos containing material (eg. cement sheeting or vinyl tiles),Telecommunication Asbestos cement pits and pipes',
|
|
55
28
|
},
|
|
56
29
|
{
|
|
57
30
|
Account: 'Al Baarini Ahmad',
|
|
58
|
-
// CompanyAddress: '13 Rudkin Court',
|
|
59
31
|
Regbusinessaddresssuburb: 'Hoppers Crossing',
|
|
60
32
|
Regbusinessaddresspostcode: '3029',
|
|
61
|
-
// Phone: '0421 280 732',
|
|
62
|
-
// CompanyMobile: '0401 016 565',
|
|
63
|
-
// CompanyEmailDisp: 'CITYWIDEDEMOLITION@HOTMAIL.COM',
|
|
64
|
-
Website: 'www.citywidedemolition.com.au',
|
|
65
|
-
// ContactFirstName: 'Eman',
|
|
66
|
-
// ContactLastName: 'Al Baarini',
|
|
67
33
|
PrimaryContactAccountName: 'Eman Al Baarini',
|
|
68
|
-
// ContactPhoneDisp: '0421 280 732',
|
|
69
34
|
PrimaryContactEmail: 'CITYWIDEDEMOLITION@HOTMAIL.COM',
|
|
70
35
|
PrimaryContactMobile: '0421 280 732',
|
|
71
36
|
AsbestosClass: 'Class B - Non-friable',
|
|
72
|
-
|
|
73
|
-
},
|
|
37
|
+
},
|
|
74
38
|
{
|
|
75
39
|
Account: 'Ashcorp Holdings Pty Ltd',
|
|
76
|
-
// CompanyAddress: '17 Rohs Road',
|
|
77
40
|
Regbusinessaddresssuburb: 'EAST BENDIGO',
|
|
78
41
|
Regbusinessaddresspostcode: '3550',
|
|
79
|
-
// Phone: '(03) 5444 3261',
|
|
80
|
-
// CompanyMobile: '0409 012 780',
|
|
81
|
-
// CompanyEmailDisp: 'admin@ashworthdemolition.com.au',
|
|
82
|
-
Website: '',
|
|
83
|
-
// ContactFirstName: 'Dean',
|
|
84
|
-
// ContactLastName: 'Ashworth',
|
|
85
42
|
PrimaryContactAccountName: 'Dean Ashworth',
|
|
86
|
-
// ContactPhoneDisp: '(03) 5444 3261',
|
|
87
43
|
PrimaryContactEmail: 'info@ashworthdemolition.com.au',
|
|
88
44
|
PrimaryContactMobile: '0409012780',
|
|
89
45
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
90
|
-
// ServicesAll: 'removal of all types of non-friable asbestos containing material,removal of asbestos containing gaskets and ropes,removal of friable asbestos containing material from soil that does not require an enclosure with negative air unit(s),removal of any asbestos containing material that was previously non-friable but has become friable as a result of a fire,The Licence is restricted to removal of asbestos containing material that does not require an enclosure with a negative air unit(s).'
|
|
91
46
|
},
|
|
92
47
|
{
|
|
93
48
|
Account: 'Ventia Utility Services Pty Limited',
|
|
94
|
-
// CompanyAddress: 'Ventia - Cardinia Building, 25 Lucknow Street',
|
|
95
49
|
Regbusinessaddresssuburb: 'MITCHAM',
|
|
96
|
-
Regbusinessaddresspostcode: '3132',
|
|
97
|
-
// Phone: '0438531164',
|
|
98
|
-
// CompanyMobile: '',
|
|
99
|
-
// CompanyEmailDisp: 'daniel.dehaan@ventia.com',
|
|
100
|
-
Website: 'www.ventia.com.au',
|
|
101
|
-
// ContactFirstName: 'Daniel',
|
|
102
|
-
// ContactLastName: 'DeHaan',
|
|
103
50
|
PrimaryContactAccountName: 'Daniel DeHaan',
|
|
104
|
-
// ContactPhoneDisp: '0438531164',
|
|
105
51
|
PrimaryContactEmail: 'daniel.dehaan@ventia.com',
|
|
106
52
|
PrimaryContactMobile: '0438531164',
|
|
107
53
|
AsbestosClass: 'Class B - Non-friable',
|
|
108
|
-
// ServicesAll: 'Bituminous coal tar coatings,Non-friable Asbestos Cement Water Pipes and Associated Fittings ONLY,Non-friable Asbetos Containing Bituminous Coating on Mild Steel Pipes',
|
|
109
54
|
},
|
|
110
55
|
{
|
|
111
56
|
Account: 'ONE A.D.S Asbestos Removal Pty Ltd',
|
|
112
|
-
// CompanyAddress: '62 Webber Parade',
|
|
113
57
|
Regbusinessaddresssuburb: 'KEILOR EAST',
|
|
114
58
|
Regbusinessaddresspostcode: '3033',
|
|
115
|
-
// Phone: '0404073745',
|
|
116
|
-
// CompanyMobile: '0404 073 745',
|
|
117
|
-
// CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
118
|
-
Website: 'http://www.adsasbestosremoval.com.au',
|
|
119
|
-
// ContactFirstName: '',
|
|
120
|
-
// ContactLastName: '',
|
|
121
59
|
PrimaryContactAccountName: '',
|
|
122
|
-
// ContactPhoneDisp: '0404073745',
|
|
123
60
|
PrimaryContactEmail: 'ads.asbestos@gmail.com',
|
|
124
61
|
PrimaryContactMobile: '1300 064 277',
|
|
125
62
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
126
|
-
|
|
127
|
-
},
|
|
63
|
+
},
|
|
128
64
|
{
|
|
129
65
|
Account: 'TWO A.D.S Asbestos Removal Pty Ltd',
|
|
130
|
-
// CompanyAddress: '62 Webber Parade',
|
|
131
66
|
Regbusinessaddresssuburb: 'KEILOR EAST',
|
|
132
67
|
Regbusinessaddresspostcode: '3033',
|
|
133
|
-
// Phone: '0404073745',
|
|
134
|
-
// CompanyMobile: '0404 073 745',
|
|
135
|
-
// CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
136
|
-
Website: 'http://www.adsasbestosremoval.com.au',
|
|
137
|
-
// ContactFirstName: 'Ivan',
|
|
138
|
-
// ContactLastName: 'Silva',
|
|
139
68
|
PrimaryContactAccountName: 'Ivan Silva',
|
|
140
|
-
// ContactPhoneDisp: '',
|
|
141
69
|
PrimaryContactEmail: 'ads.asbestos@gmail.com',
|
|
142
70
|
PrimaryContactMobile: '1300 064 277',
|
|
143
71
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
144
|
-
|
|
145
|
-
},
|
|
72
|
+
},
|
|
146
73
|
{
|
|
147
74
|
Account: 'Three A.D.S Asbestos Removal Pty Ltd',
|
|
148
|
-
// CompanyAddress: '62 Webber Parade',
|
|
149
75
|
Regbusinessaddresssuburb: 'KEILOR EAST',
|
|
150
76
|
Regbusinessaddresspostcode: '3033',
|
|
151
|
-
// Phone: '0404073745',
|
|
152
|
-
// CompanyMobile: '0404 073 745',
|
|
153
|
-
// CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
154
|
-
Website: 'http://www.adsasbestosremoval.com.au',
|
|
155
|
-
// ContactFirstName: 'Ivan',
|
|
156
|
-
// ContactLastName: 'Silva',
|
|
157
77
|
PrimaryContactAccountName: 'Ivan Silva',
|
|
158
|
-
// ContactPhoneDisp: '0404073745',
|
|
159
78
|
PrimaryContactEmail: '',
|
|
160
79
|
PrimaryContactMobile: '1300 064 277',
|
|
161
80
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
162
|
-
|
|
163
|
-
},
|
|
81
|
+
},
|
|
164
82
|
{
|
|
165
83
|
Account: 'FOUR A.D.S Asbestos Removal Pty Ltd',
|
|
166
|
-
// CompanyAddress: '62 Webber Parade',
|
|
167
84
|
Regbusinessaddresssuburb: 'KEILOR EAST',
|
|
168
85
|
Regbusinessaddresspostcode: '3033',
|
|
169
|
-
// Phone: '0404073745',
|
|
170
|
-
// CompanyMobile: '0404 073 745',
|
|
171
|
-
// CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
172
|
-
Website: 'http://www.adsasbestosremoval.com.au',
|
|
173
|
-
// ContactFirstName: 'Ivan',
|
|
174
|
-
// ContactLastName: 'Silva',
|
|
175
86
|
PrimaryContactAccountName: 'Ivan Silva',
|
|
176
|
-
// ContactPhoneDisp: '0404073745',
|
|
177
87
|
PrimaryContactEmail: 'ads.asbestos@gmail.com',
|
|
178
88
|
PrimaryContactMobile: '',
|
|
179
89
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
180
|
-
|
|
181
|
-
},
|
|
90
|
+
},
|
|
182
91
|
{
|
|
183
92
|
Account: 'Five A.D.S Asbestos Removal Pty Ltd',
|
|
184
|
-
// CompanyAddress: '62 Webber Parade',
|
|
185
93
|
Regbusinessaddresssuburb: 'KEILOR EAST',
|
|
186
94
|
Regbusinessaddresspostcode: '3033',
|
|
187
|
-
// Phone: '0404073745',
|
|
188
|
-
// CompanyMobile: '0404 073 745',
|
|
189
|
-
// CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
190
|
-
Website: 'http://www.adsasbestosremoval.com.au',
|
|
191
|
-
// ContactFirstName: '',
|
|
192
|
-
// ContactLastName: '',
|
|
193
95
|
PrimaryContactAccountName: '',
|
|
194
|
-
// ContactPhoneDisp: '',
|
|
195
96
|
PrimaryContactEmail: '',
|
|
196
97
|
PrimaryContactMobile: '',
|
|
197
98
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
198
|
-
|
|
199
|
-
},
|
|
99
|
+
},
|
|
200
100
|
{
|
|
201
101
|
Account: 'SIX A.D.S Asbestos Removal Pty Ltd',
|
|
202
|
-
// CompanyAddress: '62 Webber Parade',
|
|
203
102
|
Regbusinessaddresssuburb: 'KEILOR EAST',
|
|
204
103
|
Regbusinessaddresspostcode: '3033',
|
|
205
|
-
// Phone: '0404073745',
|
|
206
|
-
// CompanyMobile: '0404 073 745',
|
|
207
|
-
// CompanyEmailDisp: 'ads.asbestos@gmail.com',
|
|
208
|
-
Website: 'http://www.adsasbestosremoval.com.au',
|
|
209
|
-
// ContactFirstName: 'Ivan',
|
|
210
|
-
// ContactLastName: 'Silva',
|
|
211
104
|
PrimaryContactAccountName: 'Ivan Silva',
|
|
212
|
-
// ContactPhoneDisp: '0404073745',
|
|
213
105
|
PrimaryContactEmail: 'ads.asbestos@gmail.com',
|
|
214
106
|
PrimaryContactMobile: '1300 064 277',
|
|
215
107
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
216
|
-
|
|
217
|
-
},
|
|
108
|
+
},
|
|
218
109
|
{
|
|
219
110
|
Account: 'SSM Asbestos Removal Pty Ltd',
|
|
220
|
-
// CompanyAddress: '90 Marriage Lane',
|
|
221
111
|
Regbusinessaddresssuburb: 'HILLSIDE',
|
|
222
112
|
Regbusinessaddresspostcode: '3875',
|
|
223
|
-
// Phone: '0405 083 197',
|
|
224
|
-
// CompanyMobile: '0405 083 197',
|
|
225
|
-
// CompanyEmailDisp: 'steve@ssmasbestos.com.au',
|
|
226
|
-
Website: 'www.ssm-asbestosremoval.com',
|
|
227
|
-
// ContactFirstName: 'Steven',
|
|
228
|
-
// ContactLastName: 'McCarthy',
|
|
229
113
|
PrimaryContactAccountName: 'Steven McCarthy',
|
|
230
|
-
// ContactPhoneDisp: '0405 083 197',
|
|
231
114
|
PrimaryContactEmail: 'steve@ssmasbestos.com.au',
|
|
232
115
|
PrimaryContactMobile: '0405 083 197',
|
|
233
116
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
234
|
-
|
|
235
|
-
},
|
|
117
|
+
},
|
|
236
118
|
{
|
|
237
119
|
Account: 'Golden Plains Asbestos PTY LTD',
|
|
238
|
-
// CompanyAddress: '165 Grevillea Drive',
|
|
239
120
|
Regbusinessaddresssuburb: 'ENFIELD',
|
|
240
121
|
Regbusinessaddresspostcode: '3352',
|
|
241
|
-
// Phone: '0450582103',
|
|
242
|
-
// CompanyMobile: '0450582103',
|
|
243
|
-
// CompanyEmailDisp: 'gpasbestos@outlook.com',
|
|
244
|
-
Website: '',
|
|
245
|
-
// ContactFirstName: 'Carlos',
|
|
246
|
-
// ContactLastName: 'Rios',
|
|
247
122
|
PrimaryContactAccountName: 'Carlos Rios',
|
|
248
|
-
// ContactPhoneDisp: '0450582103',
|
|
249
123
|
PrimaryContactEmail: 'gpasbestos@outlook.com',
|
|
250
124
|
PrimaryContactMobile: '0450582103',
|
|
251
125
|
AsbestosClass: 'Class A - Friable and non-friable',
|
|
252
|
-
|
|
253
|
-
}
|
|
126
|
+
}
|
|
254
127
|
]
|