@hostlink/nuxt-light 0.0.3
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/README.md +106 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.ts +7 -0
- package/dist/module.json +5 -0
- package/dist/module.mjs +51 -0
- package/dist/runtime/assets/element.css +15925 -0
- package/dist/runtime/assets/element.css.map +1 -0
- package/dist/runtime/assets/main.css +13 -0
- package/dist/runtime/components/l-add-btn.vue +22 -0
- package/dist/runtime/components/l-app-main.vue +214 -0
- package/dist/runtime/components/l-app.vue +17 -0
- package/dist/runtime/components/l-back-btn.vue +7 -0
- package/dist/runtime/components/l-btn.vue +19 -0
- package/dist/runtime/components/l-card.vue +19 -0
- package/dist/runtime/components/l-checkbox.vue +6 -0
- package/dist/runtime/components/l-col.vue +14 -0
- package/dist/runtime/components/l-customizer.vue +102 -0
- package/dist/runtime/components/l-date-picker.vue +78 -0
- package/dist/runtime/components/l-delete-btn.vue +23 -0
- package/dist/runtime/components/l-edit-btn.vue +3 -0
- package/dist/runtime/components/l-file-manager-labels.vue +55 -0
- package/dist/runtime/components/l-file-manager-move.vue +185 -0
- package/dist/runtime/components/l-file-manager-preview.vue +59 -0
- package/dist/runtime/components/l-file-manager.vue +618 -0
- package/dist/runtime/components/l-file.vue +33 -0
- package/dist/runtime/components/l-form.vue +73 -0
- package/dist/runtime/components/l-input.vue +48 -0
- package/dist/runtime/components/l-item.vue +14 -0
- package/dist/runtime/components/l-link.vue +24 -0
- package/dist/runtime/components/l-list.vue +5 -0
- package/dist/runtime/components/l-login.vue +128 -0
- package/dist/runtime/components/l-menu.vue +37 -0
- package/dist/runtime/components/l-page.vue +94 -0
- package/dist/runtime/components/l-row.vue +5 -0
- package/dist/runtime/components/l-save-btn.vue +3 -0
- package/dist/runtime/components/l-select.vue +77 -0
- package/dist/runtime/components/l-table.vue +333 -0
- package/dist/runtime/components/l-tabs.vue +5 -0
- package/dist/runtime/components/l-time-picker.vue +28 -0
- package/dist/runtime/components/l-view-btn.vue +3 -0
- package/dist/runtime/composables/addObject.d.ts +2 -0
- package/dist/runtime/composables/addObject.mjs +6 -0
- package/dist/runtime/composables/f.d.ts +1 -0
- package/dist/runtime/composables/f.mjs +27 -0
- package/dist/runtime/composables/getApiUrl.d.ts +1 -0
- package/dist/runtime/composables/getApiUrl.mjs +4 -0
- package/dist/runtime/composables/getCurrentUser.d.ts +2 -0
- package/dist/runtime/composables/getCurrentUser.mjs +8 -0
- package/dist/runtime/composables/getObject.d.ts +1 -0
- package/dist/runtime/composables/getObject.mjs +20 -0
- package/dist/runtime/composables/id.d.ts +2 -0
- package/dist/runtime/composables/id.mjs +12 -0
- package/dist/runtime/composables/list.d.ts +1 -0
- package/dist/runtime/composables/list.mjs +33 -0
- package/dist/runtime/composables/listData.d.ts +1 -0
- package/dist/runtime/composables/listData.mjs +30 -0
- package/dist/runtime/composables/login.d.ts +2 -0
- package/dist/runtime/composables/login.mjs +17 -0
- package/dist/runtime/composables/m.d.ts +1 -0
- package/dist/runtime/composables/m.mjs +73 -0
- package/dist/runtime/composables/mutation.d.ts +1 -0
- package/dist/runtime/composables/mutation.mjs +23 -0
- package/dist/runtime/composables/q.d.ts +1 -0
- package/dist/runtime/composables/q.mjs +18 -0
- package/dist/runtime/composables/removeObject.d.ts +1 -0
- package/dist/runtime/composables/removeObject.mjs +15 -0
- package/dist/runtime/composables/t.d.ts +1 -0
- package/dist/runtime/composables/t.mjs +8 -0
- package/dist/runtime/composables/updateObject.d.ts +2 -0
- package/dist/runtime/composables/updateObject.mjs +10 -0
- package/dist/runtime/composables/useLight.d.ts +7 -0
- package/dist/runtime/composables/useLight.mjs +17 -0
- package/dist/runtime/composables/viewAs.d.ts +1 -0
- package/dist/runtime/composables/viewAs.mjs +15 -0
- package/dist/runtime/locales/en.json +14 -0
- package/dist/runtime/locales/zh-hk.json +140 -0
- package/dist/runtime/pages/EventLog/_eventlog_id/view.vue +21 -0
- package/dist/runtime/pages/EventLog/index.vue +56 -0
- package/dist/runtime/pages/FileManager/index.vue +5 -0
- package/dist/runtime/pages/MailLog/index.vue +48 -0
- package/dist/runtime/pages/Permission/add.vue +47 -0
- package/dist/runtime/pages/Permission/all.vue +85 -0
- package/dist/runtime/pages/Permission/index.vue +26 -0
- package/dist/runtime/pages/Role/add.vue +28 -0
- package/dist/runtime/pages/Role/index.vue +51 -0
- package/dist/runtime/pages/System/database/backup.vue +5 -0
- package/dist/runtime/pages/System/database/table.vue +19 -0
- package/dist/runtime/pages/System/index.vue +8 -0
- package/dist/runtime/pages/System/mailtest.vue +22 -0
- package/dist/runtime/pages/System/package.vue +8 -0
- package/dist/runtime/pages/System/phpinfo.vue +8 -0
- package/dist/runtime/pages/System/setting.vue +68 -0
- package/dist/runtime/pages/System/view_as.vue +56 -0
- package/dist/runtime/pages/User/_user_id/change-password.vue +49 -0
- package/dist/runtime/pages/User/_user_id/edit.vue +49 -0
- package/dist/runtime/pages/User/_user_id/view.vue +21 -0
- package/dist/runtime/pages/User/add.vue +64 -0
- package/dist/runtime/pages/User/index.vue +47 -0
- package/dist/runtime/pages/User/profile.vue +25 -0
- package/dist/runtime/pages/User/update-password.vue +45 -0
- package/dist/runtime/pages/UserLog/index.vue +53 -0
- package/dist/runtime/pages/index.vue +9 -0
- package/dist/runtime/pages/logout.vue +10 -0
- package/dist/runtime/plugin.d.ts +4 -0
- package/dist/runtime/plugin.mjs +58 -0
- package/dist/runtime/routes.d.ts +7 -0
- package/dist/runtime/routes.mjs +261 -0
- package/dist/runtime/system_menus.d.ts +10 -0
- package/dist/runtime/system_menus.mjs +37 -0
- package/dist/types.d.ts +15 -0
- package/package.json +57 -0
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
function index() {
|
|
2
|
+
return import(/* webpackChunkName: "index" */ './pages/index.vue')
|
|
3
|
+
}
|
|
4
|
+
function logout() {
|
|
5
|
+
return import(/* webpackChunkName: "logout" */ './pages/logout.vue')
|
|
6
|
+
}
|
|
7
|
+
function EventLog_index() {
|
|
8
|
+
return import(
|
|
9
|
+
/* webpackChunkName: "EventLog-index" */ './pages/EventLog/index.vue'
|
|
10
|
+
)
|
|
11
|
+
}
|
|
12
|
+
function FileManager_index() {
|
|
13
|
+
return import(
|
|
14
|
+
/* webpackChunkName: "FileManager-index" */ './pages/FileManager/index.vue'
|
|
15
|
+
)
|
|
16
|
+
}
|
|
17
|
+
function MailLog_index() {
|
|
18
|
+
return import(
|
|
19
|
+
/* webpackChunkName: "MailLog-index" */ './pages/MailLog/index.vue'
|
|
20
|
+
)
|
|
21
|
+
}
|
|
22
|
+
function Permission_index() {
|
|
23
|
+
return import(
|
|
24
|
+
/* webpackChunkName: "Permission-index" */ './pages/Permission/index.vue'
|
|
25
|
+
)
|
|
26
|
+
}
|
|
27
|
+
function Role_index() {
|
|
28
|
+
return import(/* webpackChunkName: "Role-index" */ './pages/Role/index.vue')
|
|
29
|
+
}
|
|
30
|
+
function System_index() {
|
|
31
|
+
return import(
|
|
32
|
+
/* webpackChunkName: "System-index" */ './pages/System/index.vue'
|
|
33
|
+
)
|
|
34
|
+
}
|
|
35
|
+
function User_index() {
|
|
36
|
+
return import(/* webpackChunkName: "User-index" */ './pages/User/index.vue')
|
|
37
|
+
}
|
|
38
|
+
function UserLog_index() {
|
|
39
|
+
return import(
|
|
40
|
+
/* webpackChunkName: "UserLog-index" */ './pages/UserLog/index.vue'
|
|
41
|
+
)
|
|
42
|
+
}
|
|
43
|
+
function Permission_add() {
|
|
44
|
+
return import(
|
|
45
|
+
/* webpackChunkName: "Permission-add" */ './pages/Permission/add.vue'
|
|
46
|
+
)
|
|
47
|
+
}
|
|
48
|
+
function Permission_all() {
|
|
49
|
+
return import(
|
|
50
|
+
/* webpackChunkName: "Permission-all" */ './pages/Permission/all.vue'
|
|
51
|
+
)
|
|
52
|
+
}
|
|
53
|
+
function Role_add() {
|
|
54
|
+
return import(/* webpackChunkName: "Role-add" */ './pages/Role/add.vue')
|
|
55
|
+
}
|
|
56
|
+
function System_mailtest() {
|
|
57
|
+
return import(
|
|
58
|
+
/* webpackChunkName: "System-mailtest" */ './pages/System/mailtest.vue'
|
|
59
|
+
)
|
|
60
|
+
}
|
|
61
|
+
function System_package() {
|
|
62
|
+
return import(
|
|
63
|
+
/* webpackChunkName: "System-package" */ './pages/System/package.vue'
|
|
64
|
+
)
|
|
65
|
+
}
|
|
66
|
+
function System_phpinfo() {
|
|
67
|
+
return import(
|
|
68
|
+
/* webpackChunkName: "System-phpinfo" */ './pages/System/phpinfo.vue'
|
|
69
|
+
)
|
|
70
|
+
}
|
|
71
|
+
function System_setting() {
|
|
72
|
+
return import(
|
|
73
|
+
/* webpackChunkName: "System-setting" */ './pages/System/setting.vue'
|
|
74
|
+
)
|
|
75
|
+
}
|
|
76
|
+
function System_view_as() {
|
|
77
|
+
return import(
|
|
78
|
+
/* webpackChunkName: "System-view_as" */ './pages/System/view_as.vue'
|
|
79
|
+
)
|
|
80
|
+
}
|
|
81
|
+
function User_add() {
|
|
82
|
+
return import(/* webpackChunkName: "User-add" */ './pages/User/add.vue')
|
|
83
|
+
}
|
|
84
|
+
function User_profile() {
|
|
85
|
+
return import(
|
|
86
|
+
/* webpackChunkName: "User-profile" */ './pages/User/profile.vue'
|
|
87
|
+
)
|
|
88
|
+
}
|
|
89
|
+
function User_update_password() {
|
|
90
|
+
return import(
|
|
91
|
+
/* webpackChunkName: "User-update-password" */ './pages/User/update-password.vue'
|
|
92
|
+
)
|
|
93
|
+
}
|
|
94
|
+
function System_database_backup() {
|
|
95
|
+
return import(
|
|
96
|
+
/* webpackChunkName: "System-database-backup" */ './pages/System/database/backup.vue'
|
|
97
|
+
)
|
|
98
|
+
}
|
|
99
|
+
function System_database_table() {
|
|
100
|
+
return import(
|
|
101
|
+
/* webpackChunkName: "System-database-table" */ './pages/System/database/table.vue'
|
|
102
|
+
)
|
|
103
|
+
}
|
|
104
|
+
function EventLog__eventlog_id_view() {
|
|
105
|
+
return import(
|
|
106
|
+
/* webpackChunkName: "EventLog-eventlog_id-view" */ './pages/EventLog/_eventlog_id/view.vue'
|
|
107
|
+
)
|
|
108
|
+
}
|
|
109
|
+
function User__user_id_change_password() {
|
|
110
|
+
return import(
|
|
111
|
+
/* webpackChunkName: "User-user_id-change-password" */ './pages/User/_user_id/change-password.vue'
|
|
112
|
+
)
|
|
113
|
+
}
|
|
114
|
+
function User__user_id_edit() {
|
|
115
|
+
return import(
|
|
116
|
+
/* webpackChunkName: "User-user_id-edit" */ './pages/User/_user_id/edit.vue'
|
|
117
|
+
)
|
|
118
|
+
}
|
|
119
|
+
function User__user_id_view() {
|
|
120
|
+
return import(
|
|
121
|
+
/* webpackChunkName: "User-user_id-view" */ './pages/User/_user_id/view.vue'
|
|
122
|
+
)
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
export default [
|
|
126
|
+
{
|
|
127
|
+
name: 'index',
|
|
128
|
+
path: '/',
|
|
129
|
+
component: index,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
name: 'logout',
|
|
133
|
+
path: '/logout',
|
|
134
|
+
component: logout,
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
name: 'EventLog',
|
|
138
|
+
path: '/EventLog',
|
|
139
|
+
component: EventLog_index,
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
name: 'FileManager',
|
|
143
|
+
path: '/FileManager',
|
|
144
|
+
component: FileManager_index,
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
name: 'MailLog',
|
|
148
|
+
path: '/MailLog',
|
|
149
|
+
component: MailLog_index,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
name: 'Permission',
|
|
153
|
+
path: '/Permission',
|
|
154
|
+
component: Permission_index,
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
name: 'Role',
|
|
158
|
+
path: '/Role',
|
|
159
|
+
component: Role_index,
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
name: 'System',
|
|
163
|
+
path: '/System',
|
|
164
|
+
component: System_index,
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
name: 'User',
|
|
168
|
+
path: '/User',
|
|
169
|
+
component: User_index,
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
name: 'UserLog',
|
|
173
|
+
path: '/UserLog',
|
|
174
|
+
component: UserLog_index,
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
name: 'Permission-add',
|
|
178
|
+
path: '/Permission/add',
|
|
179
|
+
component: Permission_add,
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
name: 'Permission-all',
|
|
183
|
+
path: '/Permission/all',
|
|
184
|
+
component: Permission_all,
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
name: 'Role-add',
|
|
188
|
+
path: '/Role/add',
|
|
189
|
+
component: Role_add,
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
name: 'System-mailtest',
|
|
193
|
+
path: '/System/mailtest',
|
|
194
|
+
component: System_mailtest,
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
name: 'System-package',
|
|
198
|
+
path: '/System/package',
|
|
199
|
+
component: System_package,
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
name: 'System-phpinfo',
|
|
203
|
+
path: '/System/phpinfo',
|
|
204
|
+
component: System_phpinfo,
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
name: 'System-setting',
|
|
208
|
+
path: '/System/setting',
|
|
209
|
+
component: System_setting,
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
name: 'System-view_as',
|
|
213
|
+
path: '/System/view_as',
|
|
214
|
+
component: System_view_as,
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
name: 'User-add',
|
|
218
|
+
path: '/User/add',
|
|
219
|
+
component: User_add,
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: 'User-profile',
|
|
223
|
+
path: '/User/profile',
|
|
224
|
+
component: User_profile,
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
name: 'User-update-password',
|
|
228
|
+
path: '/User/update-password',
|
|
229
|
+
component: User_update_password,
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: 'System-database-backup',
|
|
233
|
+
path: '/System/database/backup',
|
|
234
|
+
component: System_database_backup,
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
name: 'System-database-table',
|
|
238
|
+
path: '/System/database/table',
|
|
239
|
+
component: System_database_table,
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
name: 'EventLog-eventlog_id-view',
|
|
243
|
+
path: '/EventLog/:eventlog_id/view',
|
|
244
|
+
component: EventLog__eventlog_id_view,
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
name: 'User-user_id-change-password',
|
|
248
|
+
path: '/User/:user_id/change-password',
|
|
249
|
+
component: User__user_id_change_password,
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: 'User-user_id-edit',
|
|
253
|
+
path: '/User/:user_id/edit',
|
|
254
|
+
component: User__user_id_edit,
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
name: 'User-user_id-view',
|
|
258
|
+
path: '/User/:user_id/view',
|
|
259
|
+
component: User__user_id_view,
|
|
260
|
+
},
|
|
261
|
+
]
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export default [
|
|
2
|
+
{
|
|
3
|
+
label: "系統管理",
|
|
4
|
+
icon: "sym_o_settings",
|
|
5
|
+
menus: [
|
|
6
|
+
{
|
|
7
|
+
label: "使用者管理",
|
|
8
|
+
link: "/User",
|
|
9
|
+
icon: "sym_o_person"
|
|
10
|
+
}, {
|
|
11
|
+
label: "角色管理",
|
|
12
|
+
link: "/Role",
|
|
13
|
+
icon: "sym_o_group"
|
|
14
|
+
}, {
|
|
15
|
+
label: "權限管理",
|
|
16
|
+
link: "/Permission",
|
|
17
|
+
icon: "sym_o_key"
|
|
18
|
+
}, {
|
|
19
|
+
label: "系統設定",
|
|
20
|
+
link: "/Setting",
|
|
21
|
+
icon: "sym_o_settings"
|
|
22
|
+
}, {
|
|
23
|
+
label: "User log",
|
|
24
|
+
link: "/UserLog",
|
|
25
|
+
icon: "sym_o_description"
|
|
26
|
+
}, {
|
|
27
|
+
label: "Mail log",
|
|
28
|
+
link: "/MailLog",
|
|
29
|
+
icon: "sym_o_description"
|
|
30
|
+
}, {
|
|
31
|
+
label: "Event log",
|
|
32
|
+
link: "/EventLog",
|
|
33
|
+
icon: "sym_o_description"
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
];
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
import { ModuleOptions } from './module'
|
|
3
|
+
|
|
4
|
+
declare module '@nuxt/schema' {
|
|
5
|
+
interface NuxtConfig { ['light']?: Partial<ModuleOptions> }
|
|
6
|
+
interface NuxtOptions { ['light']?: ModuleOptions }
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
declare module 'nuxt/schema' {
|
|
10
|
+
interface NuxtConfig { ['light']?: Partial<ModuleOptions> }
|
|
11
|
+
interface NuxtOptions { ['light']?: ModuleOptions }
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export { ModuleOptions, default } from './module'
|
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hostlink/nuxt-light",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "My new Nuxt module",
|
|
5
|
+
"repository": "@hostlink/nuxt-light",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/types.d.ts",
|
|
11
|
+
"import": "./dist/module.mjs",
|
|
12
|
+
"require": "./dist/module.cjs"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"main": "./dist/module.cjs",
|
|
16
|
+
"types": "./dist/types.d.ts",
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"prepack": "nuxt-module-build",
|
|
22
|
+
"dev": "nuxi dev playground",
|
|
23
|
+
"dev:build": "nuxi build playground",
|
|
24
|
+
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
|
|
25
|
+
"release:org": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
|
|
26
|
+
"release": "npm run prepack && changelogen --release && npm publish --access=public && git push --follow-tags",
|
|
27
|
+
"lint": "eslint .",
|
|
28
|
+
"test": "vitest run",
|
|
29
|
+
"test:watch": "vitest watch",
|
|
30
|
+
"route-gen": "node route-generate.mjs"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@nuxt/kit": "^3.7.0",
|
|
34
|
+
"@quasar/extras": "^1.16.6",
|
|
35
|
+
"axios": "^1.5.0",
|
|
36
|
+
"element-plus": "^2.3.12",
|
|
37
|
+
"gql-query-builder": "^3.8.0",
|
|
38
|
+
"json-to-graphql-query": "^2.2.5",
|
|
39
|
+
"quasar": "^2.12.5",
|
|
40
|
+
"unplugin-auto-import": "^0.16.6",
|
|
41
|
+
"unplugin-vue-components": "^0.25.2",
|
|
42
|
+
"vue-i18n": "^9.2.2"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@nuxt/content": "^2.8.2",
|
|
46
|
+
"@nuxt/devtools": "latest",
|
|
47
|
+
"@nuxt/eslint-config": "^0.1.1",
|
|
48
|
+
"@nuxt/module-builder": "^0.4.0",
|
|
49
|
+
"@nuxt/schema": "^3.7.0",
|
|
50
|
+
"@nuxt/test-utils": "^3.7.0",
|
|
51
|
+
"@types/node": "^18.17.3",
|
|
52
|
+
"changelogen": "^0.5.4",
|
|
53
|
+
"eslint": "^8.46.0",
|
|
54
|
+
"nuxt": "^3.7.0",
|
|
55
|
+
"vue-route-generator": "^1.0.0"
|
|
56
|
+
}
|
|
57
|
+
}
|