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
| <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: "push-compressionweight",
| });
| import { ref, watch, computed, onMounted } 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 dayjs from "dayjs";
|
|
| const { service } = useCool();
| const { dict } = useDict();
| const { t } = useI18n();
|
| // 存储站点下拉框的动态数据源
| const compressionSiteOptions = ref<{ label: string; value: any }[]>([]);
|
| // cl-upsert
| const Upsert = useUpsert({
| items: [
| {
| label: t("选择部门"),
| prop: "departmentId",
| component: {
| name: 'cl-dept-select',
| props: {
| multiple: false, // 单选
| placeholder: "请选择部门",
| checkStrictly: true, // 父子节点不联动
| immediate: true // 立即加载部门树
| }
| },
| span: 12,
| required: true,
| },
| {
| label: t("站点编号"),
| prop: "businessId",
| component: {
| name: 'el-select',
| props: {
| placeholder: "请选择",
| filterable: true,
| clearable: true
| },
| options: compressionSiteOptions
| },
| span: 12,
| required: true,
| },
| {
| label: t("称重设备"),
| prop: "deviceNo",
| component: {
| name: "el-input",
| props: {
| disabled: true,
| },
| },
| value: "人工填报", // ✅ 直接给固定
| span: 12,
| required: true,
| },
| {
| label: t("上传时间"),
| prop: "uploadTime",
| component: {
| name: "el-date-picker",
| props: { type: "datetime", valueFormat: "YYYY-MM-DD HH:mm:ss" },
| },
| value: dayjs().format("YYYY-MM-DD HH:mm:ss"), // ✅ 当前时间
| span: 12,
| required: true,
| },
| {
| label: t("垃圾类型"),
| prop: "garbageType",
| value: "SW64", // ✅ 直接选中
| component: {
| name: "el-select",
| props: {
| placeholder: "干垃圾",
| filterable: false,
| clearable: false,
| disabled: true, // ✅ 直接禁用
| },
| options: [
| {
| label: "干垃圾(SW64)",
| value: "SW64",
| },
| ],
| },
| span: 12,
| required: true,
| },
| {
| label: t("垃圾重量"),
| prop: "weight",
| component: {
| name: 'el-radio-group',
| options: dict.get('ratedpayload'),
| },
| 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: "departmentName", minWidth: 140 },
| { label: t("站点编号"), prop: "businessId", minWidth: 140 },
| { label: t("站点名称"), prop: "businessName", minWidth: 140 },
| { label: t("站点类型"), prop: "siteType", minWidth: 140 },
| { label: t("称重设备"), prop: "deviceNo", minWidth: 140 },
| {
| label: t("上传时间"),
| prop: "uploadTime",
| minWidth: 170,
| sortable: "custom",
| component: { name: "cl-date-text" },
| },
| { label: t("垃圾类型"), prop: "garbageType", minWidth: 120 },
| { label: t("垃圾名称"), prop: "garbageName", minWidth: 120 },
| { label: t("垃圾重量"), prop: "weight", minWidth: 120 },
| {
| 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({
| items: [
| {
| label: "站点类型",
| prop: "siteType",
| value: "压缩站",
| component: {
| name: "el-select",
| props: {
| disabled: true,
| clearable: false,
| },
| options: [
| { label: "压缩站", value: "压缩站" },
| ],
| },
| },
| ],
| });
|
| // cl-crud
| const Crud = useCrud(
| {
| service: service.push.siteweight,
|
| },
| (app) => {
| app.refresh({
| siteType: "压缩站",
| });
| },
| );
|
| // 刷新
| function refresh(params?: any) {
| Crud.value?.refresh(params);
| }
|
|
| /**
| * 核心逻辑:监听部门 ID 的变化
| */
| watch(
| () => Upsert.value?.form.departmentId,
| async (newDeptId, oldDeptId) => {
| if (!Upsert.value?.form) return;
|
| compressionSiteOptions.value = [];
|
| if (oldDeptId !== undefined) {
| Upsert.value.form.businessId = undefined;
| }
|
| // 如果没有选择任何部门,则中止请求
| if (!newDeptId) return;
|
| try {
| const res = await service.basicdata.site.page({ departmentId: newDeptId, siteType: "压缩站", size: 1000 });
| // 转换为 el-select 需要的 { label, value } 格式
| compressionSiteOptions.value = res.list.map((item: any) => ({
| label: item.businessName, // 站点的名称
| value: item.businessId // 站点的ID
| }));
|
| } catch (err) {
| console.error("加载站点列表失败", err);
| }
| }
| );
| </script>
|
|