@das-fed/ui 6.4.0-dev.54.3 → 6.4.0-dev.54.4
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 +5 -5
- package/packages/business-components/device-panel/i18n/index.d.ts +191 -191
- package/packages/business-components/device-panel/index.js +4 -1
- package/packages/business-components/device-panel/index.js.gz +0 -0
- package/packages/business-components/layout-breadcrumb/index.js +63 -61
- package/packages/business-components/layout-breadcrumb/index.js.gz +0 -0
- package/packages/business-components/urgent-panel/i18n/index.d.ts +87 -83
- package/packages/business-components/urgent-panel/index.js +127 -121
- package/packages/business-components/urgent-panel/index.js.gz +0 -0
- package/packages/components/tree/index.js +1351 -1352
- package/packages/components/tree/index.js.gz +0 -0
- package/packages/components/tree/src/App.vue.d.ts +30 -18
|
@@ -52776,7 +52776,10 @@ const wte = ai.get("/emergency-event/process-track"), Tte = ["", "待核实", "
|
|
|
52776
52776
|
收起: { "zh-CN": "收起", en: "Collapse" },
|
|
52777
52777
|
展开: { "zh-CN": "展开", en: "Expand" },
|
|
52778
52778
|
应急详情: { "zh-CN": "应急详情", en: "Emergency Details" },
|
|
52779
|
-
告警已进入历史库不可处理: {
|
|
52779
|
+
告警已进入历史库不可处理: {
|
|
52780
|
+
"zh-CN": "告警已进入历史库不可处理",
|
|
52781
|
+
en: "Alert Has Entered History and Cannot Be Processed"
|
|
52782
|
+
},
|
|
52780
52783
|
处理: { "zh-CN": "处理", en: "Processing" },
|
|
52781
52784
|
历史告警: { "zh-CN": "历史告警", en: "Historical Alert" },
|
|
52782
52785
|
全状态: { "zh-CN": "全状态", en: "All States" },
|
|
Binary file
|
|
@@ -1,99 +1,101 @@
|
|
|
1
1
|
import '@das-fed/ui/packages/business-components/layout-breadcrumb/style.css';
|
|
2
|
-
import { ref as
|
|
3
|
-
import { withInstall as
|
|
4
|
-
import { DasBreadCrumb as
|
|
5
|
-
import { useRoute as
|
|
6
|
-
import { flatTree as
|
|
7
|
-
import { getSubApps as
|
|
2
|
+
import { ref as k, computed as q, watch as L, nextTick as I, defineComponent as M, unref as h, openBlock as U, createElementBlock as D, createVNode as N, createCommentVNode as T } from "vue";
|
|
3
|
+
import { withInstall as x } from "@das-fed/utils/with-install/index";
|
|
4
|
+
import { DasBreadCrumb as O } from "@das-fed/ui/packages/components/breadcrumb/index";
|
|
5
|
+
import { useRouter as P, useRoute as $ } from "vue-router";
|
|
6
|
+
import { flatTree as S } from "@das-fed/utils/common-tools";
|
|
7
|
+
import { getSubApps as A } from "@das-fed/utils/common-info";
|
|
8
8
|
import { setThemeRule as j } from "@das-fed/web/packages/theme/index";
|
|
9
|
-
const E = (r,
|
|
10
|
-
const
|
|
11
|
-
var
|
|
12
|
-
await
|
|
13
|
-
const
|
|
14
|
-
if (!
|
|
9
|
+
const E = (r, i) => {
|
|
10
|
+
const c = k([]), m = q(() => [...c.value, ...r.data || []]), p = async (t, f) => {
|
|
11
|
+
var o;
|
|
12
|
+
await I();
|
|
13
|
+
const s = A(), u = [], b = f.menu || "", a = ((o = s.currentSubApp) == null ? void 0 : o.menus) ?? [];
|
|
14
|
+
if (!a || !a.length) return;
|
|
15
15
|
let e = null;
|
|
16
|
-
const
|
|
17
|
-
if (
|
|
18
|
-
const
|
|
19
|
-
if (
|
|
20
|
-
const
|
|
21
|
-
|
|
16
|
+
const d = S(a);
|
|
17
|
+
if (b ? e = d.find((n) => n.code === b) : e = d.find((n) => n.routeUrl && n.routeUrl === t), e) {
|
|
18
|
+
const n = e.code.split(".");
|
|
19
|
+
if (n.length === 3) {
|
|
20
|
+
const B = n.slice(0, 2).join("."), C = d.find((v) => v.code === B || v.originalCode === B);
|
|
21
|
+
u.push({ name: (C == null ? void 0 : C.name) ?? "", isMenu: !0, disabled: !0 });
|
|
22
22
|
}
|
|
23
|
-
const
|
|
23
|
+
const R = {
|
|
24
24
|
name: (e == null ? void 0 : e.name) ?? "",
|
|
25
25
|
routerPath: (e == null ? void 0 : e.routeUrl) ?? "",
|
|
26
26
|
isMenu: !0
|
|
27
27
|
};
|
|
28
|
-
|
|
28
|
+
u.push(R);
|
|
29
29
|
}
|
|
30
|
-
|
|
31
|
-
},
|
|
32
|
-
t.disabled ||
|
|
33
|
-
},
|
|
30
|
+
c.value = u;
|
|
31
|
+
}, y = (t) => {
|
|
32
|
+
t.disabled || i("click-item", t);
|
|
33
|
+
}, _ = P(), l = $();
|
|
34
34
|
L(
|
|
35
|
-
() =>
|
|
35
|
+
() => _.currentRoute.value,
|
|
36
36
|
(t) => {
|
|
37
|
-
const
|
|
38
|
-
|
|
37
|
+
const f = (t == null ? void 0 : t.path) ?? "", s = (t == null ? void 0 : t.query) ?? {};
|
|
38
|
+
p(f, s);
|
|
39
39
|
},
|
|
40
40
|
{ immediate: !0 }
|
|
41
41
|
);
|
|
42
|
-
const
|
|
42
|
+
const g = k(!1);
|
|
43
43
|
return L(
|
|
44
44
|
() => r.data,
|
|
45
45
|
() => {
|
|
46
|
-
|
|
47
|
-
var
|
|
48
|
-
const t =
|
|
49
|
-
let
|
|
50
|
-
if (!
|
|
51
|
-
const e = ((
|
|
52
|
-
|
|
46
|
+
I(() => {
|
|
47
|
+
var a;
|
|
48
|
+
const t = A(), f = l.query.app || t.currentSubApp.code || "";
|
|
49
|
+
let s = l.query.menu || "";
|
|
50
|
+
if (!s) {
|
|
51
|
+
const e = ((a = t.currentSubApp) == null ? void 0 : a.menus) ?? [], d = S(e).find(
|
|
52
|
+
(o) => `/${(o == null ? void 0 : o.applicationPath) ?? ""}${(o == null ? void 0 : o.routeUrl) ?? ""}`.replace(/\/\//g, "/") === location.pathname
|
|
53
|
+
);
|
|
54
|
+
d && (s = d.code);
|
|
53
55
|
}
|
|
54
|
-
const
|
|
55
|
-
for (let e in
|
|
56
|
-
|
|
56
|
+
const u = JSON.parse(sessionStorage.getItem("breadcrumb") || "{}")[f], b = [];
|
|
57
|
+
for (let e in u) u[e] && b.push(e);
|
|
58
|
+
g.value = !!b.find((e) => s === e);
|
|
57
59
|
});
|
|
58
60
|
},
|
|
59
61
|
{ deep: !0, immediate: !0 }
|
|
60
62
|
), {
|
|
61
|
-
isShow:
|
|
62
|
-
breadcrumbList:
|
|
63
|
-
clickItem:
|
|
63
|
+
isShow: g,
|
|
64
|
+
breadcrumbList: m,
|
|
65
|
+
clickItem: y
|
|
64
66
|
};
|
|
65
67
|
}, J = {
|
|
66
68
|
key: 0,
|
|
67
69
|
class: "layout-breadcrumb"
|
|
68
|
-
},
|
|
70
|
+
}, z = {
|
|
69
71
|
name: "LayoutBreadCrumb"
|
|
70
|
-
},
|
|
71
|
-
...
|
|
72
|
+
}, F = /* @__PURE__ */ M({
|
|
73
|
+
...z,
|
|
72
74
|
props: {
|
|
73
75
|
data: { default: () => [] }
|
|
74
76
|
},
|
|
75
77
|
emits: ["click-item"],
|
|
76
|
-
setup(r, { emit:
|
|
77
|
-
const
|
|
78
|
-
return (
|
|
79
|
-
N(
|
|
80
|
-
data: y
|
|
81
|
-
onClickItem:
|
|
78
|
+
setup(r, { emit: i }) {
|
|
79
|
+
const c = r, m = i, { isShow: p, breadcrumbList: y, clickItem: _ } = E(c, m);
|
|
80
|
+
return (l, g) => h(p) && l.data && l.data.length ? (U(), D("div", J, [
|
|
81
|
+
N(h(O), {
|
|
82
|
+
data: h(y),
|
|
83
|
+
onClickItem: h(_)
|
|
82
84
|
}, null, 8, ["data", "onClickItem"])
|
|
83
|
-
])) :
|
|
85
|
+
])) : T("v-if", !0);
|
|
84
86
|
}
|
|
85
|
-
}),
|
|
86
|
-
const
|
|
87
|
-
for (const [
|
|
88
|
-
|
|
89
|
-
return
|
|
90
|
-
},
|
|
87
|
+
}), G = (r, i) => {
|
|
88
|
+
const c = r.__vccOpts || r;
|
|
89
|
+
for (const [m, p] of i)
|
|
90
|
+
c[m] = p;
|
|
91
|
+
return c;
|
|
92
|
+
}, H = /* @__PURE__ */ G(F, [["__scopeId", "data-v-878cd70a"]]), K = {
|
|
91
93
|
"--das-layout-micro-container-bg-color": "#e2e7ef",
|
|
92
94
|
"--das-layout-breadcrumb-bg-color": "#ffffff"
|
|
93
95
|
};
|
|
94
|
-
j(
|
|
95
|
-
const
|
|
96
|
+
j(K);
|
|
97
|
+
const ee = x(H), te = () => k(null);
|
|
96
98
|
export {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
+
ee as DasLayoutBreadcrumb,
|
|
100
|
+
te as DasLayoutBreadcrumbRef
|
|
99
101
|
};
|
|
Binary file
|
|
@@ -1,330 +1,334 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
搜索姓名: {
|
|
3
|
-
|
|
3
|
+
'zh-CN': string;
|
|
4
4
|
en: string;
|
|
5
5
|
};
|
|
6
6
|
账号: {
|
|
7
|
-
|
|
7
|
+
'zh-CN': string;
|
|
8
8
|
en: string;
|
|
9
9
|
};
|
|
10
10
|
姓名: {
|
|
11
|
-
|
|
11
|
+
'zh-CN': string;
|
|
12
12
|
en: string;
|
|
13
13
|
};
|
|
14
14
|
手机号: {
|
|
15
|
-
|
|
15
|
+
'zh-CN': string;
|
|
16
16
|
en: string;
|
|
17
17
|
};
|
|
18
18
|
添加用户: {
|
|
19
|
-
|
|
19
|
+
'zh-CN': string;
|
|
20
20
|
en: string;
|
|
21
21
|
};
|
|
22
22
|
标题: {
|
|
23
|
-
|
|
23
|
+
'zh-CN': string;
|
|
24
24
|
en: string;
|
|
25
25
|
};
|
|
26
26
|
事件编码: {
|
|
27
|
-
|
|
27
|
+
'zh-CN': string;
|
|
28
28
|
en: string;
|
|
29
29
|
};
|
|
30
30
|
启动时间: {
|
|
31
|
-
|
|
31
|
+
'zh-CN': string;
|
|
32
32
|
en: string;
|
|
33
33
|
};
|
|
34
34
|
事件类型: {
|
|
35
|
-
|
|
35
|
+
'zh-CN': string;
|
|
36
36
|
en: string;
|
|
37
37
|
};
|
|
38
38
|
事件等级: {
|
|
39
|
-
|
|
39
|
+
'zh-CN': string;
|
|
40
40
|
en: string;
|
|
41
41
|
};
|
|
42
42
|
应急负责人: {
|
|
43
|
-
|
|
43
|
+
'zh-CN': string;
|
|
44
44
|
en: string;
|
|
45
45
|
};
|
|
46
46
|
请选择: {
|
|
47
|
-
|
|
47
|
+
'zh-CN': string;
|
|
48
48
|
en: string;
|
|
49
49
|
};
|
|
50
50
|
应急成员: {
|
|
51
|
-
|
|
51
|
+
'zh-CN': string;
|
|
52
52
|
en: string;
|
|
53
53
|
};
|
|
54
54
|
处置时限: {
|
|
55
|
-
|
|
55
|
+
'zh-CN': string;
|
|
56
56
|
en: string;
|
|
57
57
|
};
|
|
58
58
|
事件定位: {
|
|
59
|
-
|
|
59
|
+
'zh-CN': string;
|
|
60
60
|
en: string;
|
|
61
61
|
};
|
|
62
62
|
清除: {
|
|
63
|
-
|
|
63
|
+
'zh-CN': string;
|
|
64
64
|
en: string;
|
|
65
65
|
};
|
|
66
66
|
非必填: {
|
|
67
|
-
|
|
67
|
+
'zh-CN': string;
|
|
68
68
|
en: string;
|
|
69
69
|
};
|
|
70
70
|
支持上传: {
|
|
71
|
-
|
|
71
|
+
'zh-CN': string;
|
|
72
72
|
en: string;
|
|
73
73
|
};
|
|
74
74
|
格式: {
|
|
75
|
-
|
|
75
|
+
'zh-CN': string;
|
|
76
76
|
en: string;
|
|
77
77
|
};
|
|
78
78
|
最多支持上传: {
|
|
79
|
-
|
|
79
|
+
'zh-CN': string;
|
|
80
80
|
en: string;
|
|
81
81
|
};
|
|
82
82
|
张: {
|
|
83
|
-
|
|
83
|
+
'zh-CN': string;
|
|
84
84
|
en: string;
|
|
85
85
|
};
|
|
86
86
|
每张图片最大不超过: {
|
|
87
|
-
|
|
87
|
+
'zh-CN': string;
|
|
88
88
|
en: string;
|
|
89
89
|
};
|
|
90
90
|
分钟: {
|
|
91
|
-
|
|
91
|
+
'zh-CN': string;
|
|
92
92
|
en: string;
|
|
93
93
|
};
|
|
94
94
|
小时: {
|
|
95
|
-
|
|
95
|
+
'zh-CN': string;
|
|
96
96
|
en: string;
|
|
97
97
|
};
|
|
98
98
|
不限: {
|
|
99
|
-
|
|
99
|
+
'zh-CN': string;
|
|
100
100
|
en: string;
|
|
101
101
|
};
|
|
102
102
|
必填: {
|
|
103
|
-
|
|
103
|
+
'zh-CN': string;
|
|
104
104
|
en: string;
|
|
105
105
|
};
|
|
106
106
|
正整数型: {
|
|
107
|
-
|
|
107
|
+
'zh-CN': string;
|
|
108
108
|
en: string;
|
|
109
109
|
};
|
|
110
110
|
限: {
|
|
111
|
-
|
|
111
|
+
'zh-CN': string;
|
|
112
112
|
en: string;
|
|
113
113
|
};
|
|
114
114
|
位: {
|
|
115
|
-
|
|
115
|
+
'zh-CN': string;
|
|
116
116
|
en: string;
|
|
117
117
|
};
|
|
118
118
|
单选: {
|
|
119
|
-
|
|
119
|
+
'zh-CN': string;
|
|
120
120
|
en: string;
|
|
121
121
|
};
|
|
122
122
|
应急成员不能为空: {
|
|
123
|
-
|
|
123
|
+
'zh-CN': string;
|
|
124
124
|
en: string;
|
|
125
125
|
};
|
|
126
126
|
应急负责人不能为空: {
|
|
127
|
-
|
|
127
|
+
'zh-CN': string;
|
|
128
128
|
en: string;
|
|
129
129
|
};
|
|
130
130
|
个字符: {
|
|
131
|
-
|
|
131
|
+
'zh-CN': string;
|
|
132
132
|
en: string;
|
|
133
133
|
};
|
|
134
134
|
汉字: {
|
|
135
|
-
|
|
135
|
+
'zh-CN': string;
|
|
136
136
|
en: string;
|
|
137
137
|
};
|
|
138
138
|
首尾不允许为空外: {
|
|
139
|
-
|
|
139
|
+
'zh-CN': string;
|
|
140
140
|
en: string;
|
|
141
141
|
};
|
|
142
142
|
支持任意字符: {
|
|
143
|
-
|
|
143
|
+
'zh-CN': string;
|
|
144
144
|
en: string;
|
|
145
145
|
};
|
|
146
146
|
支持手动录入也支持从地图上选择位置: {
|
|
147
|
-
|
|
147
|
+
'zh-CN': string;
|
|
148
148
|
en: string;
|
|
149
149
|
};
|
|
150
150
|
发布成功: {
|
|
151
|
-
|
|
151
|
+
'zh-CN': string;
|
|
152
152
|
en: string;
|
|
153
153
|
};
|
|
154
154
|
选择位置: {
|
|
155
|
-
|
|
155
|
+
'zh-CN': string;
|
|
156
156
|
en: string;
|
|
157
157
|
};
|
|
158
158
|
确定: {
|
|
159
|
-
|
|
159
|
+
'zh-CN': string;
|
|
160
160
|
en: string;
|
|
161
161
|
};
|
|
162
162
|
请先完善第三方地图相关配置: {
|
|
163
|
-
|
|
163
|
+
'zh-CN': string;
|
|
164
164
|
en: string;
|
|
165
165
|
};
|
|
166
166
|
反馈记录: {
|
|
167
|
-
|
|
167
|
+
'zh-CN': string;
|
|
168
168
|
en: string;
|
|
169
169
|
};
|
|
170
170
|
收起: {
|
|
171
|
-
|
|
171
|
+
'zh-CN': string;
|
|
172
172
|
en: string;
|
|
173
173
|
};
|
|
174
174
|
展开: {
|
|
175
|
-
|
|
175
|
+
'zh-CN': string;
|
|
176
176
|
en: string;
|
|
177
177
|
};
|
|
178
178
|
处理结果: {
|
|
179
|
-
|
|
179
|
+
'zh-CN': string;
|
|
180
180
|
en: string;
|
|
181
181
|
};
|
|
182
182
|
反馈人: {
|
|
183
|
-
|
|
183
|
+
'zh-CN': string;
|
|
184
184
|
en: string;
|
|
185
185
|
};
|
|
186
186
|
反馈时间: {
|
|
187
|
-
|
|
187
|
+
'zh-CN': string;
|
|
188
188
|
en: string;
|
|
189
189
|
};
|
|
190
190
|
图片: {
|
|
191
|
-
|
|
191
|
+
'zh-CN': string;
|
|
192
192
|
en: string;
|
|
193
193
|
};
|
|
194
194
|
核实阶段: {
|
|
195
|
-
|
|
195
|
+
'zh-CN': string;
|
|
196
196
|
en: string;
|
|
197
197
|
};
|
|
198
198
|
处理阶段: {
|
|
199
|
-
|
|
199
|
+
'zh-CN': string;
|
|
200
200
|
en: string;
|
|
201
201
|
};
|
|
202
202
|
应急人员: {
|
|
203
|
-
|
|
203
|
+
'zh-CN': string;
|
|
204
204
|
en: string;
|
|
205
205
|
};
|
|
206
206
|
应急物资: {
|
|
207
|
-
|
|
207
|
+
'zh-CN': string;
|
|
208
208
|
en: string;
|
|
209
209
|
};
|
|
210
210
|
归档记录: {
|
|
211
|
-
|
|
211
|
+
'zh-CN': string;
|
|
212
|
+
en: string;
|
|
212
213
|
};
|
|
213
214
|
经济损失: {
|
|
214
|
-
|
|
215
|
+
'zh-CN': string;
|
|
216
|
+
en: string;
|
|
215
217
|
};
|
|
216
218
|
元: {
|
|
217
|
-
|
|
219
|
+
'zh-CN': string;
|
|
218
220
|
en: string;
|
|
219
221
|
};
|
|
220
222
|
人员伤亡: {
|
|
221
|
-
|
|
223
|
+
'zh-CN': string;
|
|
222
224
|
en: string;
|
|
223
225
|
};
|
|
224
226
|
人: {
|
|
225
|
-
|
|
227
|
+
'zh-CN': string;
|
|
226
228
|
en: string;
|
|
227
229
|
};
|
|
228
230
|
备注: {
|
|
229
|
-
|
|
231
|
+
'zh-CN': string;
|
|
230
232
|
en: string;
|
|
231
233
|
};
|
|
232
234
|
演练事件: {
|
|
233
|
-
|
|
235
|
+
'zh-CN': string;
|
|
234
236
|
en: string;
|
|
235
237
|
};
|
|
236
238
|
预案信息: {
|
|
237
|
-
|
|
239
|
+
'zh-CN': string;
|
|
238
240
|
en: string;
|
|
239
241
|
};
|
|
240
242
|
进度跟踪: {
|
|
241
|
-
|
|
243
|
+
'zh-CN': string;
|
|
242
244
|
en: string;
|
|
243
245
|
};
|
|
244
246
|
未完成: {
|
|
245
|
-
|
|
247
|
+
'zh-CN': string;
|
|
246
248
|
en: string;
|
|
247
249
|
};
|
|
248
250
|
已完成: {
|
|
249
|
-
|
|
251
|
+
'zh-CN': string;
|
|
250
252
|
en: string;
|
|
251
253
|
};
|
|
252
254
|
暂无权限: {
|
|
253
|
-
|
|
255
|
+
'zh-CN': string;
|
|
254
256
|
en: string;
|
|
255
257
|
};
|
|
256
258
|
取消: {
|
|
257
|
-
|
|
259
|
+
'zh-CN': string;
|
|
258
260
|
en: string;
|
|
259
261
|
};
|
|
260
262
|
保存: {
|
|
261
|
-
|
|
263
|
+
'zh-CN': string;
|
|
262
264
|
en: string;
|
|
263
265
|
};
|
|
264
266
|
发布应急: {
|
|
265
|
-
|
|
267
|
+
'zh-CN': string;
|
|
266
268
|
en: string;
|
|
267
269
|
};
|
|
268
270
|
发布演练: {
|
|
269
|
-
|
|
271
|
+
'zh-CN': string;
|
|
270
272
|
en: string;
|
|
271
273
|
};
|
|
272
274
|
应急事件: {
|
|
273
|
-
|
|
275
|
+
'zh-CN': string;
|
|
274
276
|
en: string;
|
|
275
277
|
};
|
|
276
278
|
应急事件列表: {
|
|
277
|
-
|
|
279
|
+
'zh-CN': string;
|
|
280
|
+
en: string;
|
|
278
281
|
};
|
|
279
282
|
列表详情: {
|
|
280
|
-
|
|
283
|
+
'zh-CN': string;
|
|
284
|
+
en: string;
|
|
281
285
|
};
|
|
282
286
|
详情: {
|
|
283
|
-
|
|
287
|
+
'zh-CN': string;
|
|
284
288
|
en: string;
|
|
285
289
|
};
|
|
286
290
|
应急内容: {
|
|
287
|
-
|
|
291
|
+
'zh-CN': string;
|
|
288
292
|
en: string;
|
|
289
293
|
};
|
|
290
294
|
演练内容: {
|
|
291
|
-
|
|
295
|
+
'zh-CN': string;
|
|
292
296
|
en: string;
|
|
293
297
|
};
|
|
294
298
|
设备详情: {
|
|
295
|
-
|
|
299
|
+
'zh-CN': string;
|
|
296
300
|
en: string;
|
|
297
301
|
};
|
|
298
302
|
运行数据: {
|
|
299
|
-
|
|
303
|
+
'zh-CN': string;
|
|
300
304
|
en: string;
|
|
301
305
|
};
|
|
302
306
|
视频监控: {
|
|
303
|
-
|
|
307
|
+
'zh-CN': string;
|
|
304
308
|
en: string;
|
|
305
309
|
};
|
|
306
310
|
运行计划: {
|
|
307
|
-
|
|
311
|
+
'zh-CN': string;
|
|
308
312
|
en: string;
|
|
309
313
|
};
|
|
310
314
|
告警记录: {
|
|
311
|
-
|
|
315
|
+
'zh-CN': string;
|
|
312
316
|
en: string;
|
|
313
317
|
};
|
|
314
318
|
操作日志: {
|
|
315
|
-
|
|
319
|
+
'zh-CN': string;
|
|
316
320
|
en: string;
|
|
317
321
|
};
|
|
318
322
|
巡检记录: {
|
|
319
|
-
|
|
323
|
+
'zh-CN': string;
|
|
320
324
|
en: string;
|
|
321
325
|
};
|
|
322
326
|
保养记录: {
|
|
323
|
-
|
|
327
|
+
'zh-CN': string;
|
|
324
328
|
en: string;
|
|
325
329
|
};
|
|
326
330
|
维修记录: {
|
|
327
|
-
|
|
331
|
+
'zh-CN': string;
|
|
328
332
|
en: string;
|
|
329
333
|
};
|
|
330
334
|
};
|