fuchengshen
2022-06-24 0924fcc06ead4d10ea5d0d579c8224850a0f37a4
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
<template>
  <cl-crud :ref="setRefs('crud')"
           @load="onLoad">
    <el-row type="flex"
            align="middle">
      <!-- 刷新按钮 -->
      <cl-refresh-btn />
      <!-- 新增按钮 -->
      <cl-add-btn />
      <!-- 删除按钮 -->
      <cl-multi-delete-btn />
      <cl-flex1 />
      <!-- 关键字搜索 -->
      <cl-search-key />
    </el-row>
 
    <el-row>
      <!-- 数据表格 -->
      <cl-table :ref="setRefs('table')"
                v-bind="table" />
    </el-row>
 
    <el-row type="flex">
      <cl-flex1 />
      <!-- 分页控件 -->
      <cl-pagination />
    </el-row>
 
    <!-- 新增、编辑 -->
    <cl-upsert :ref="setRefs('upsert')"
               v-bind="upsert" />
  </cl-crud>
</template>
 
<script lang="ts">
import { defineComponent, reactive } from "vue";
import { CrudLoad, Upsert, Table } from "@cool-vue/crud/types";
import { useCool } from "/@/cool";
 
export default defineComponent({
    setup() {
        const { refs, setRefs, service } = useCool();
 
        // 新增、编辑配置
        const upsert = reactive<Upsert>({
            items: [
                {
                    label: "周期任务",
                    prop: "crontab_rule",
                    component: {
                        name: "el-input"
                    },
                    //是否为必填项,注:接口配置字段时没有设置默认值时,都需要选择必填
                    required: true
                },
                {
                    label: "任务指令",
                    prop: "task_command",
                    component: {
                        name: "el-input"
                    }
                },
                {
                    label: "任务内容描述",
                    prop: "task_content",
                    component: {
                        name: "el-input"
                    }
                },
                {
                    prop: "task_type",
                    value: 1,
                    label: "任务类型",
                    span: 24,
                    component: {
                        name: "el-radio-group",
                        options: [
                            {
                                label: "抓图",
                                value: 1
                            },
                            {
                                label: "雷达扫描",
                                value: 2
                            },
                            {
                                label: "除尘",
                                value: 3
                            }
                        ]
                    }
                },
                {
                    label: "设备分组ID",
                    prop: "group_id",
                    component: {
                        name: "el-input"
                    },
                    required: true
                },
 
                {
                    label: "设置人",
                    prop: "operator",
                    component: {
                        name: "el-input"
                    },
                    required: true
                },
                {
                    label: "备注",
                    prop: "remark",
                    component: {
                        name: "el-input"
                    }
                },
                {
                    label: "状态",
                    prop: "status",
                    component: {
                        name: "el-radio-group",
                        options: [
                            {
                                label: "未启用",
                                value: 0
                            },
                            {
                                label: "启用",
                                value: 1
                            }
                        ]
                    }
                }
            ]
        });
 
        // 表格配置
        const table = reactive<Table>({
            columns: [
                {
                    type: "selection",
                    align: "center"
                },
                {
                    label: "id",
                    prop: "id",
                    sortable: true //是否排序功能
                },
                {
                    label: "周期任务",
                    prop: "crontab_rule"
                },
                {
                    label: "任务类型",
                    prop: "task_type",
                    dict: [
                        {
                            label: "抓图",
                            value: 1,
                            type: "info" //success  warning  danger  info可选
                        },
                        {
                            label: "雷达扫描",
                            value: 2
                        },
                        {
                            label: "除尘",
                            value: 3
                        }
                    ],
                    filters: [
                        {
                            text: "抓图",
                            value: 1
                        },
                        {
                            text: "雷达扫描",
                            value: 2
                        },
                        {
                            text: "除尘",
                            value: 3
                        }
                    ],
                    width: 100
                },
                {
                    label: "任务指令",
                    prop: "task_command"
                },
                {
                    label: "任务内容描述",
                    prop: "task_content"
                },
                {
                    label: "设备分组ID",
                    prop: "group_id"
                },
                {
                    label: "设置人",
                    prop: "operator"
                },
                {
                    label: "备注",
                    prop: "remark"
                },
                {
                    label: "状态",
                    prop: "status",
                    dict: [
                        {
                            label: "停用",
                            value: 0,
                            type: "info" //success  warning  danger  info可选
                        },
                        {
                            label: "启用",
                            value: 1
                        }
                    ],
                    filters: [
                        {
                            text: "停用",
                            value: 0
                        },
                        {
                            text: "启用",
                            value: 1
                        }
                    ]
                },
                {
                    label: "操作",
                    type: "op"
                }
            ]
        });
 
        // crud 加载
        function onLoad({ ctx, app }: CrudLoad) {
            // 绑定 service
            ctx.service(service.business.periodicsetting).done();
            app.refresh();
        }
 
        return {
            refs,
            setRefs,
            upsert,
            table,
            onLoad
        };
    }
});
</script>