renusify 1.1.4 → 1.2.0
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/components/app/notify/notification.vue +2 -1
- package/components/app/toast/index.vue +7 -2
- package/components/app/toast/toast.vue +2 -0
- package/components/avatar/index.vue +29 -23
- package/components/bar/bottomNavigationCircle.vue +8 -3
- package/components/bar/scss/bottomNav.scss +1 -1
- package/components/bar/toolbar/laptop.vue +4 -4
- package/components/bar/toolbar/mixin.js +1 -2
- package/components/bar/toolbar/mobile.vue +5 -4
- package/components/breadcrumb/index.vue +1 -0
- package/components/button/buttonConfirm.vue +1 -1
- package/components/button/buttonGroup.vue +1 -0
- package/components/button/style.scss +1 -0
- package/components/calendar/index.vue +1 -0
- package/components/calendar/month.vue +1 -0
- package/components/calendar/year.vue +1 -0
- package/components/chat/chatInput.vue +1 -0
- package/components/chat/chatMsg.vue +1 -0
- package/components/chat/index.vue +1 -0
- package/components/chip/index.vue +1 -0
- package/components/codeEditor/index.vue +0 -2
- package/components/confirm/index.vue +1 -0
- package/components/countdown/index.vue +1 -0
- package/components/float/index.vue +1 -0
- package/components/form/address.vue +6 -2
- package/components/form/camInput.vue +10 -3
- package/components/form/check-input.vue +95 -94
- package/components/form/checkbox.vue +1 -1
- package/components/form/colorPicker/index.vue +1 -0
- package/components/form/colorPicker/picker.vue +1 -0
- package/components/form/datePicker/index.vue +349 -348
- package/components/form/datePicker/month.vue +1 -0
- package/components/form/datePicker/year.vue +1 -0
- package/components/form/fileUploader/file.js +21 -3
- package/components/form/fileUploader/index.vue +13 -2
- package/components/form/fileUploader/single.vue +4 -2
- package/components/form/form.vue +1 -0
- package/components/form/group-input.vue +42 -38
- package/components/form/input.vue +253 -1
- package/components/form/inputTel/index.vue +22 -12
- package/components/form/json/JsonView.vue +95 -94
- package/components/form/json/index.vue +2 -0
- package/components/form/mask-input.vue +1 -0
- package/components/form/number.vue +25 -12
- package/components/form/password.vue +121 -121
- package/components/form/radioInput.vue +1 -0
- package/components/form/range.vue +26 -1
- package/components/form/rating.vue +13 -1
- package/components/form/select.vue +67 -4
- package/components/form/switch.vue +64 -2
- package/components/form/text-area.vue +1 -1
- package/components/form/text-editor/index.vue +18 -11
- package/components/form/text-input.vue +1 -1
- package/components/form/timepicker/index.vue +2 -1
- package/components/form/timepicker/range.vue +2 -1
- package/components/form/timepicker/timepicker.vue +2 -1
- package/components/form/unique/index.vue +3 -1
- package/components/form/unit-input.vue +2 -1
- package/components/formCreator/index.vue +8 -6
- package/components/html2pdf/index.vue +1 -0
- package/components/img/index.vue +12 -2
- package/components/img/svgImg.vue +43 -0
- package/components/infinite/div.vue +2 -1
- package/components/infinite/page.vue +24 -23
- package/components/list/index.vue +35 -32
- package/components/map/index.vue +324 -306
- package/components/map/route.vue +1 -0
- package/components/map/select.vue +1 -0
- package/components/menu/index.vue +1 -0
- package/components/modal/index.vue +1 -0
- package/components/searchBox/index.vue +5 -3
- package/components/slider/index.vue +1 -0
- package/components/table/crud/footer.vue +1 -1
- package/components/table/crud/header.vue +10 -4
- package/components/table/crud/index.vue +463 -458
- package/components/tabs/index.vue +1 -0
- package/components/tree/index.vue +15 -13
- package/components/tree/tree-element.vue +8 -4
- package/package.json +1 -1
- package/style/colors.scss +1 -1
- package/components/form/scss/input.scss +0 -249
- package/components/form/scss/rating.scss +0 -9
- package/components/form/scss/select.scss +0 -55
- package/components/form/scss/switch.scss +0 -68
|
@@ -38,6 +38,7 @@ export default {
|
|
|
38
38
|
default: 4000
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
|
+
emits:['hide'],
|
|
41
42
|
data () {
|
|
42
43
|
return {
|
|
43
44
|
show: false
|
|
@@ -45,7 +46,7 @@ export default {
|
|
|
45
46
|
},
|
|
46
47
|
methods: {
|
|
47
48
|
hideMe () {
|
|
48
|
-
this.$emit('hide')
|
|
49
|
+
this.$emit('hide',true)
|
|
49
50
|
}
|
|
50
51
|
},
|
|
51
52
|
created () {
|
|
@@ -10,11 +10,14 @@
|
|
|
10
10
|
</template>
|
|
11
11
|
|
|
12
12
|
<script>
|
|
13
|
-
|
|
13
|
+
import Toast from './toast.vue'
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
const EVENTS = ['online', 'offline', 'load']
|
|
16
16
|
export default {
|
|
17
17
|
name: 'r-toast',
|
|
18
|
+
props:{
|
|
19
|
+
showOnlineStatus: {type:Boolean,default:true}
|
|
20
|
+
},
|
|
18
21
|
components: {
|
|
19
22
|
Toast
|
|
20
23
|
},
|
|
@@ -44,7 +47,9 @@
|
|
|
44
47
|
}
|
|
45
48
|
}
|
|
46
49
|
)
|
|
50
|
+
if(this.showOnlineStatus) {
|
|
47
51
|
EVENTS.forEach(event => window.addEventListener(event, this.updateOnlineStatus))
|
|
52
|
+
}
|
|
48
53
|
},
|
|
49
54
|
beforeUnmount() {
|
|
50
55
|
EVENTS.forEach(event => window.removeEventListener(event, this.updateOnlineStatus))
|
|
@@ -24,17 +24,18 @@
|
|
|
24
24
|
props: {
|
|
25
25
|
size: {
|
|
26
26
|
type: [Number, String],
|
|
27
|
-
|
|
27
|
+
default: 48
|
|
28
28
|
},
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
elevation: {
|
|
30
|
+
type: String,
|
|
31
|
+
default: 'none'
|
|
32
|
+
},
|
|
33
|
+
editable: {
|
|
34
|
+
type: String
|
|
35
|
+
},
|
|
36
|
+
flat: Boolean,
|
|
37
|
+
tile: Boolean,
|
|
38
|
+
headers: Object
|
|
38
39
|
},
|
|
39
40
|
data() {
|
|
40
41
|
return {
|
|
@@ -58,19 +59,24 @@
|
|
|
58
59
|
this.$refs.file.click()
|
|
59
60
|
},
|
|
60
61
|
saveImage() {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
62
|
+
this.loading = true
|
|
63
|
+
let fileData = new FormData()
|
|
64
|
+
fileData.append('file', this.files[0])
|
|
65
|
+
let headers = this.headers
|
|
66
|
+
if (!headers) {
|
|
67
|
+
headers = {}
|
|
68
|
+
}
|
|
69
|
+
headers['Content-Type'] = 'multipart/form-data'
|
|
70
|
+
this.$axios.post(this.editable, fileData,
|
|
71
|
+
{
|
|
72
|
+
headers: headers,
|
|
73
|
+
onUploadProgress: function (progressEvent) {
|
|
74
|
+
this.uploadPercentage = Math.min(parseInt(Math.floor((progressEvent.loaded * 100) / progressEvent.total)), 98)
|
|
75
|
+
}.bind(this),
|
|
76
|
+
cancelToken: this.CancelTokenSource.token
|
|
77
|
+
}
|
|
78
|
+
)
|
|
79
|
+
.then(() => {
|
|
74
80
|
this.loading = false
|
|
75
81
|
this.k+=1
|
|
76
82
|
}, () => {
|
|
@@ -7,9 +7,13 @@
|
|
|
7
7
|
:key="i"
|
|
8
8
|
>
|
|
9
9
|
<div class="navigation-item-icon">
|
|
10
|
-
<
|
|
10
|
+
<slot name="icon" :item="item">
|
|
11
|
+
<r-icon v-html="item.icon"></r-icon>
|
|
12
|
+
</slot>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="navigation-item-text">
|
|
15
|
+
<slot name="name" :item="item">{{ item.name }}</slot>
|
|
11
16
|
</div>
|
|
12
|
-
<div class="navigation-item-text">{{ item.name }}</div>
|
|
13
17
|
</router-link>
|
|
14
18
|
</nav>
|
|
15
19
|
</template>
|
|
@@ -72,12 +76,13 @@ export default {
|
|
|
72
76
|
}
|
|
73
77
|
|
|
74
78
|
.router-link-exact-active {
|
|
79
|
+
color: var(--color-one);
|
|
75
80
|
.navigation-item-icon {
|
|
76
81
|
transition: 0.3s all ease-in-out;
|
|
77
82
|
bottom: 31px;
|
|
78
83
|
background-color: currentColor;
|
|
79
84
|
border-radius: 50%;
|
|
80
|
-
padding:
|
|
85
|
+
padding: 12px;
|
|
81
86
|
width: 50px;
|
|
82
87
|
height: 50px;
|
|
83
88
|
border: 3px solid white;
|
|
@@ -14,7 +14,7 @@ $bottom-nav-btn-font-size: map-metro-get($headings, 'caption', 'size') !default;
|
|
|
14
14
|
background-color: var(--color-sheet);
|
|
15
15
|
color: var(--color-text-primary);
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
.router-link-exact-active {
|
|
18
18
|
color: var(--color-one) !important
|
|
19
19
|
}
|
|
20
20
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<menu-laptop :menu="menu"></menu-laptop>
|
|
7
7
|
<r-spacer></r-spacer>
|
|
8
8
|
<div v-if="search" class="mt-n5">
|
|
9
|
-
<r-search-box autofocus closable :label="
|
|
9
|
+
<r-search-box autofocus closable :label="searchLabel" :url="search">
|
|
10
10
|
<template v-slot="{item}">
|
|
11
11
|
<slot name="search" :item="item"></slot>
|
|
12
12
|
</template>
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
</div>
|
|
22
22
|
</template>
|
|
23
23
|
<script>
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
import {toolbar} from "./mixin";
|
|
25
|
+
import MenuLaptop from "./menuLaptop";
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
export default {
|
|
28
28
|
components: {MenuLaptop},
|
|
29
29
|
mixins: [toolbar]
|
|
30
30
|
}
|
|
@@ -10,9 +10,8 @@ export const toolbar= {
|
|
|
10
10
|
logoW: {type: Number, default: 180},
|
|
11
11
|
logoH: {type: Number, default: 60},
|
|
12
12
|
search: String,
|
|
13
|
-
|
|
13
|
+
searchLabel: {type:String,default:'search'},
|
|
14
14
|
fixed: Boolean,
|
|
15
|
-
modelValue: Boolean,
|
|
16
15
|
flat: Boolean,
|
|
17
16
|
sticky: Boolean,
|
|
18
17
|
tile: {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<r-spacer></r-spacer>
|
|
10
10
|
<div v-if="search" class="mt-n5">
|
|
11
11
|
<r-search-box closable autofocus
|
|
12
|
-
:label="
|
|
12
|
+
:label="searchLabel" :url="search">
|
|
13
13
|
<template v-slot="{item}">
|
|
14
14
|
<slot name="search" :item="item"></slot>
|
|
15
15
|
</template>
|
|
@@ -23,9 +23,10 @@
|
|
|
23
23
|
</div>
|
|
24
24
|
</template>
|
|
25
25
|
<script>
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
import {toolbar} from "./mixin";
|
|
27
|
+
import MenuMobile from "./menuMob";
|
|
28
|
+
|
|
29
|
+
export default {
|
|
29
30
|
components: {MenuMobile},
|
|
30
31
|
mixins:[toolbar]
|
|
31
32
|
}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
value="id"
|
|
8
8
|
:searchLink="`https://codenus.com/api/apps/address?lang=${$r.lang}`"
|
|
9
9
|
:rules="required?['required']:[]"
|
|
10
|
+
:headers="{'Authorization':''}"
|
|
10
11
|
:tile="tile">
|
|
11
12
|
</r-select-input>
|
|
12
13
|
<r-select-input :label="$t('state','renusify')"
|
|
@@ -18,6 +19,7 @@
|
|
|
18
19
|
:searchLink="country&&`https://codenus.com/api/apps/address/${country['id']}?lang=${$r.lang}`"
|
|
19
20
|
:rules="required?['required']:[]"
|
|
20
21
|
value="id"
|
|
22
|
+
:headers="{'Authorization':''}"
|
|
21
23
|
:tile="tile">
|
|
22
24
|
|
|
23
25
|
</r-select-input>
|
|
@@ -30,6 +32,7 @@
|
|
|
30
32
|
:searchLink="state&&`https://codenus.com/api/apps/address/${country['id']}/${state['id']}?lang=${$r.lang}`"
|
|
31
33
|
:rules="required?['required']:[]"
|
|
32
34
|
value="id"
|
|
35
|
+
:headers="{'Authorization':''}"
|
|
33
36
|
:tile="tile">
|
|
34
37
|
|
|
35
38
|
</r-select-input>
|
|
@@ -56,10 +59,11 @@ export default {
|
|
|
56
59
|
hideCity: Boolean,
|
|
57
60
|
hideZipCode: Boolean,
|
|
58
61
|
hideStreet: Boolean,
|
|
59
|
-
tile: Boolean,
|
|
62
|
+
tile: {type: Boolean, default: undefined},
|
|
60
63
|
defaultCountry: Object,
|
|
61
64
|
modelValue: Object
|
|
62
65
|
},
|
|
66
|
+
emits:['update:modelValue'],
|
|
63
67
|
data() {
|
|
64
68
|
return {
|
|
65
69
|
country: this.modelValue ? this.modelValue.country : this.defaultCountry,
|
|
@@ -102,7 +106,7 @@ export default {
|
|
|
102
106
|
if (!this.hideZipCode) {
|
|
103
107
|
r['zip_code'] = this.zip_code
|
|
104
108
|
}
|
|
105
|
-
this.$emit('update:
|
|
109
|
+
this.$emit('update:modelValue', r)
|
|
106
110
|
}, 10)
|
|
107
111
|
}
|
|
108
112
|
}
|
|
@@ -131,7 +131,9 @@ export default {
|
|
|
131
131
|
default: 3,
|
|
132
132
|
type: Number,
|
|
133
133
|
},
|
|
134
|
+
headers: Object
|
|
134
135
|
},
|
|
136
|
+
emits:['update:modelValue','error'],
|
|
135
137
|
data() {
|
|
136
138
|
return {
|
|
137
139
|
started: false,
|
|
@@ -240,9 +242,14 @@ export default {
|
|
|
240
242
|
const blob = new Blob(this.recordedBlobs, {type: this.type});
|
|
241
243
|
let fileData = new FormData();
|
|
242
244
|
fileData.append("file", blob, "user.webm");
|
|
245
|
+
let headers = this.headers
|
|
246
|
+
if (!headers) {
|
|
247
|
+
headers = {}
|
|
248
|
+
}
|
|
249
|
+
headers['Content-Type'] = 'multipart/form-data'
|
|
243
250
|
this.$axios
|
|
244
251
|
.post(this.uploadLink, fileData, {
|
|
245
|
-
headers:
|
|
252
|
+
headers: headers,
|
|
246
253
|
onUploadProgress: function (progressEvent) {
|
|
247
254
|
this.uploadPercentage = Math.min(
|
|
248
255
|
parseInt(
|
|
@@ -266,7 +273,7 @@ export default {
|
|
|
266
273
|
);
|
|
267
274
|
},
|
|
268
275
|
emit() {
|
|
269
|
-
this.$emit("update:
|
|
276
|
+
this.$emit("update:modelValue", this.files);
|
|
270
277
|
},
|
|
271
278
|
run() {
|
|
272
279
|
try {
|
|
@@ -329,7 +336,7 @@ export default {
|
|
|
329
336
|
this.$axios
|
|
330
337
|
.delete(this.uploadLink, {
|
|
331
338
|
data: {link: link},
|
|
332
|
-
})
|
|
339
|
+
}, {headers: this.headers})
|
|
333
340
|
.then(() => {
|
|
334
341
|
this.files.splice(i, 1);
|
|
335
342
|
this.emit();
|
|
@@ -1,104 +1,105 @@
|
|
|
1
1
|
<template>
|
|
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
|
-
|
|
2
|
+
<r-input :class="`${$r.prefix}check-input`" :active="active"
|
|
3
|
+
:model-value="lazyValue"
|
|
4
|
+
inputControlClass="pe-0"
|
|
5
|
+
:msg="msg"
|
|
6
|
+
:error="pass===false"
|
|
7
|
+
@click.prevent="handleClick">
|
|
8
|
+
<div class="check-input-container v-center">
|
|
9
|
+
<input :autofocus="autofocus"
|
|
10
|
+
:type="type"
|
|
11
|
+
@focusin="active=true"
|
|
12
|
+
@focusout="active=false"
|
|
13
|
+
@input="emit"
|
|
14
|
+
:value="lazyValue"
|
|
15
|
+
autocomplete="no"
|
|
16
|
+
ref="input"
|
|
17
|
+
/>
|
|
18
|
+
<r-btn size="small"
|
|
19
|
+
:rounded="$attrs.tile===undefined||$attrs.tile===false"
|
|
20
|
+
:loading="loading" @click.prevent="check()" class="elevation-none mx-1">
|
|
21
|
+
{{ $t('check', 'renusify') }}
|
|
22
|
+
<r-icon v-if="pass!==null && pass!==false" v-html="$r.icons.check" exact width="20" height="20"></r-icon>
|
|
23
|
+
<r-icon v-if=" pass===false" v-html="$r.icons.close" width="20" height="20"></r-icon>
|
|
24
|
+
</r-btn>
|
|
25
|
+
</div>
|
|
26
|
+
</r-input>
|
|
27
27
|
</template>
|
|
28
28
|
<script>
|
|
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
|
-
|
|
29
|
+
export default {
|
|
30
|
+
name: 'r-check-input',
|
|
31
|
+
props: {
|
|
32
|
+
type: {
|
|
33
|
+
type: String,
|
|
34
|
+
default: 'text'
|
|
35
|
+
},
|
|
36
|
+
name: {
|
|
37
|
+
type: String,
|
|
38
|
+
default: 'text'
|
|
39
|
+
},
|
|
40
|
+
link: String,
|
|
41
|
+
modelValue: [String, Number],
|
|
42
|
+
autofocus: Boolean,
|
|
43
|
+
headers: Object
|
|
44
|
+
},
|
|
45
|
+
emits:['update:modelValue','data'],
|
|
46
|
+
data() {
|
|
47
|
+
return {
|
|
48
|
+
lazyValue: this.modelValue,
|
|
49
|
+
msg: null,
|
|
50
|
+
pass: null,
|
|
51
|
+
loading: false,
|
|
52
|
+
active: false
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
watch: {
|
|
56
|
+
modelValue() {
|
|
57
|
+
this.msg = null
|
|
58
|
+
this.pass = null
|
|
59
|
+
this.$emit('data', {})
|
|
60
|
+
this.lazyValue = this.modelValue
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
methods: {
|
|
64
|
+
check() {
|
|
65
|
+
if (this.link) {
|
|
66
|
+
this.loading = true
|
|
67
|
+
this.$axios.post(this.link, {
|
|
68
|
+
[this.name]: this.lazyValue
|
|
69
|
+
}, {headers: this.headers}).then(({data}) => {
|
|
70
|
+
this.$emit('data', data)
|
|
71
|
+
this.msg = null
|
|
72
|
+
this.loading = false
|
|
73
|
+
this.pass = true
|
|
74
|
+
}, ({response}) => {
|
|
75
|
+
if (response.data.msg) {
|
|
76
|
+
this.msg = this.$t(response.data.msg, 'renusify')
|
|
77
|
+
}
|
|
78
|
+
this.$emit('data', response.data)
|
|
79
|
+
this.loading = false
|
|
80
|
+
this.pass = false
|
|
81
|
+
})
|
|
82
|
+
}
|
|
82
83
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
}
|
|
91
|
-
}
|
|
84
|
+
},
|
|
85
|
+
handleClick(e) {
|
|
86
|
+
this.$refs.input.focus()
|
|
87
|
+
},
|
|
88
|
+
emit(e) {
|
|
89
|
+
this.lazyValue = e.target.value
|
|
90
|
+
this.$emit('update:modelValue', this.lazyValue)
|
|
92
91
|
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
93
94
|
|
|
94
95
|
</script>
|
|
95
96
|
<style lang="scss">
|
|
96
|
-
|
|
97
|
+
@import "../../style/include";
|
|
97
98
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
99
|
+
.#{$prefix}check-input {
|
|
100
|
+
.check-input-container {
|
|
101
|
+
display: flex;
|
|
102
|
+
width: 100%;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
104
105
|
</style>
|