1
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
27
28
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
| <template>
| <cl-crud ref="Crud">
| <cl-row>
| <!-- 刷新按钮 -->
| <cl-refresh-btn />
| <!-- 新增按钮 -->
| <cl-add-btn />
| <!-- 删除按钮 -->
| <cl-multi-delete-btn />
| <cl-flex1 />
| <!-- 条件搜索 -->
| <cl-search ref="Search" />
| </cl-row>
|
| <cl-row>
| <!-- 数据表格 -->
| <cl-table ref="Table" />
| </cl-row>
|
| <cl-row>
| <cl-flex1 />
| <!-- 分页控件 -->
| <cl-pagination />
| </cl-row>
|
| <!-- 新增、编辑 -->
| <cl-upsert ref="Upsert" />
| </cl-crud>
| </template>
|
| <script lang="ts" setup>
| defineOptions({
| name: "basicdata-iot",
| });
| import { ref, watch, reactive, computed } from 'vue';
| import { useCrud, useTable, useUpsert, useSearch } from "@cool-vue/crud";
| import { useCool } from "/@/cool";
| import { useI18n } from "vue-i18n";
| import { useDict } from "../../dict";
| import { size } from 'lodash-es';
|
| const { service } = useCool();
| const { dict } = useDict();
| const { t } = useI18n();
|
| // 存储站点下拉框的动态终端
| const businessIdOptions = ref<{ label: string; value: any }[]>([]);
|
| // 选项
| const options = reactive({
| status: [
| { label: t("禁用"), value: 0, type: "danger" },
| { label: t("启用"), value: 1, type: "success" },
| ],
| });
|
| // cl-upsert
| const Upsert = useUpsert({
| items: [
| {
| label: t("终端编码"),
| prop: "iotCode",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| required: true,
| },
| {
| label: t("终端名称"),
| prop: "iotName",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| required: true,
| },
| {
| label: t("终端类型"),
| prop: "iotTypeCode",
| component: {
| name: 'cl-select',
| props: {
| tree: true,
| checkStrictly: true,
| options: dict.get('iottype')
| }
| },
| span: 12,
| required: true,
| },
| {
| label: t("选择部门"),
| prop: "departmentId",
| component: {
| name: 'cl-dept-select',
| props: {
| multiple: false, // 单选 / true 多选
| placeholder: "请选择部门",
| checkStrictly: true, // 父子节点不联动
| immediate: true // 立即加载部门树
| }
| },
| span: 12,
| required: true,
| },
| {
| label: t("业务表"),
| prop: "businessType",
| component: {
| name: 'cl-select',
| props: {
| tree: true,
| checkStrictly: true,
| options: dict.get('businesstype')
| }
| },
| span: 12,
| required: false,
| },
| {
| label: t("业务表ID"),
| prop: "businessId",
| component: {
| name: 'el-select',
| props: {
| placeholder: "请选择",
| filterable: true,
| clearable: true,
| },
| options: businessIdOptions
| },
| span: 12,
| required: false,
| },
| {
| label: t("终端Key"),
| prop: "iotKey",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| required: false,
| },
| {
| label: t("终端Secret"),
| prop: "iotSecret",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| required: false,
| },
| {
| label: t("数据上报渠道"),
| prop: "iotChanel",
| component: {
| name: 'cl-select',
| props: {
| tree: true,
| checkStrictly: true,
| options: dict.get('datachanel')
| }
| },
| span: 12,
| required: true,
| },
| {
| label: t("终端通信卡"),
| prop: "iotPhone",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| required: false,
| },
| {
| label: t("通信卡流量包"),
| prop: "iotPhonePackage",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| required: false,
| },
| {
| label: t("采集方向"),
| prop: "dataDirection",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| required: false,
| },
| {
| label: t("安装位置描述"),
| prop: "installLocation",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| },
| {
| label: t("数据格式"),
| prop: "dataFormat",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| },
| {
| label: t("通信协议"),
| prop: "protocol",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| },
| {
| label: t("采集频率"),
| prop: "frequency",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| },
| {
| label: t("数据存储位置"),
| prop: "storageLocation",
| component: { name: "el-input", props: { clearable: true } },
| span: 12,
| },
| {
| label: t("状态"),
| prop: "status",
| component: { name: "el-radio-group", options: options.status },
| value: 1,
| required: true,
| },
| {
| label: t("备注"),
| prop: "remark",
| component: {
| name: "el-input",
| props: { type: "textarea", rows: 4 },
| },
| },
| ],
| });
|
| // cl-table
| const Table = useTable({
| columns: [
| { type: "selection" },
| { label: t("终端编码"), prop: "iotCode", minWidth: 140 },
| { label: t("终端名称"), prop: "iotName", minWidth: 120 },
| { label: t("终端类型"), prop: "iotTypeCode", minWidth: 120 },
| { label: t("归属单位"), prop: "departmentName", minWidth: 140 },
| { label: t("业务表"), prop: "businessType", minWidth: 140 },
| { label: t("业务表ID"), prop: "businessId", minWidth: 140 },
| { label: t("终端Key"), prop: "iotKey", minWidth: 120 },
| { label: t("终端Secret"), prop: "iotSecret", minWidth: 120 },
| { label: t("数据上报渠道"), prop: "iotChanel", minWidth: 120 },
| { label: t("终端通信卡"), prop: "iotPhone", minWidth: 120 },
| { label: t("通信卡流量包"), prop: "iotPhonePackage", minWidth: 120 },
| { label: t("采集方向"), prop: "dataDirection", minWidth: 120 },
| { label: t("安装位置描述"), prop: "installLocation", minWidth: 140 },
| { label: t("数据格式"), prop: "dataFormat", minWidth: 120 },
| { label: t("通信协议"), prop: "protocol", minWidth: 120 },
| { label: t("采集频率"), prop: "frequency", minWidth: 140 },
| { label: t("数据存储位置"), prop: "storageLocation", minWidth: 140 },
| {
| label: t("状态"),
| prop: "status",
| minWidth: 100,
| component: { name: "cl-switch" },
| dict: options.status,
| },
| {
| label: t("备注"),
| prop: "remark",
| showOverflowTooltip: true,
| minWidth: 200,
| },
| {
| label: t("创建时间"),
| prop: "createTime",
| minWidth: 170,
| sortable: "desc",
| component: { name: "cl-date-text" },
| },
| {
| label: t("更新时间"),
| prop: "updateTime",
| minWidth: 170,
| sortable: "custom",
| component: { name: "cl-date-text" },
| },
| { type: "op", buttons: ["edit", "delete"] },
| ],
| });
|
| // cl-search
| const Search = useSearch();
|
| // cl-crud
| const Crud = useCrud(
| {
| service: service.basicdata.iot,
| },
| (app) => {
| app.refresh();
| },
| );
|
| // 刷新
| function refresh(params?: any) {
| Crud.value?.refresh(params);
| }
|
| const serviceMap = {
| site: service.basicdata.site,
| driver: service.basicdata.driver,
| vehicle: service.basicdata.vehicle,
| sorter: service.basicdata.sorter,
| } as const;
|
| /**
| * 核心逻辑:监听关联业务表 的变化 -- 根据 departmentId 查询
| */
| watch(
| () => [Upsert.value?.form.departmentId, Upsert.value?.form.businessType],
| async ([newDeptId, newType], [oldDeptId, oldType]) => {
| if (!Upsert.value?.form) return;
|
| // 【你的原则 2】只要有变化,立即清空下游的下拉列表
| businessIdOptions.value = [];
|
| // 【细节防错】只有当旧值不为 undefined 时(说明用户在手动切换),才清空已选择的 ID
| // 如果 oldDeptId 是 undefined,说明是“新建打开”或“编辑回显”,不能清空
| if (oldDeptId !== undefined || oldType !== undefined) {
| Upsert.value.form.businessId = undefined;
| }
|
| // 【你的原则 1】任何一个没选,就拦截,不加载选项
| if (!newDeptId || !newType) {
| return;
| }
|
| // 两个都选了,放心从后台获取最新数据
| try {
| const targetService = serviceMap[newType];
| if (!targetService) return;
|
| const res = await targetService.page({ departmentId: newDeptId, size: 1000 });
|
| // 2. 如果后台查出来确实是空数据,再次自增 key 确保组件重构
| if (!res || res.list.length === 0) {
| businessIdOptions.value = [];
| return;
| }
|
| businessIdOptions.value = res.list.map((item: any) => ({
| label: item.businessName,
| value: item.businessId
| }));
|
|
|
| } catch (err) {
| console.error("加载关联业务数据失败:", err);
| }
| }
| );
|
|
|
| </script>
|
|