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
| <template>
| <cl-crud ref="Crud">
| <cl-row>
| <!-- 刷新按钮 -->
| <cl-refresh-btn />
| <!-- 新增按钮 -->
| <cl-add-btn />
| <!-- 删除按钮 -->
| <cl-multi-delete-btn />
| <cl-flex1 />
| <!-- 关键字搜索 -->
| <cl-search-key placeholder="搜索名称" />
| </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" name="goods-search-keyword" setup>
| import { useCrud, useTable, useUpsert } from "@cool-vue/crud";
| import { useCool } from "/@/cool";
|
| const { service } = useCool();
|
| // cl-upsert
| const Upsert = useUpsert({
| dialog: {
| width: "500px"
| },
| props: {
| labelWidth: "60px"
| },
| items: [
| {
| label: "名称",
| prop: "name",
| component: { name: "el-input", props: { clearable: true } },
| required: true
| },
| { label: "排序", prop: "sortNum", hook: "number", component: { name: "el-input-number" } }
| ]
| });
|
| // cl-table
| const Table = useTable({
| columns: [
| { type: "selection" },
| { label: "名称", prop: "name", minWidth: 140 },
| { label: "排序", prop: "sortNum", minWidth: 140, sortable: "desc" },
| {
| label: "创建时间",
| prop: "createTime",
| minWidth: 160
| },
| {
| label: "更新时间",
| prop: "updateTime",
| minWidth: 160
| },
| { type: "op", buttons: ["edit", "delete"] }
| ]
| });
|
| // cl-crud
| const Crud = useCrud(
| {
| service: service.goods.searchKeyword
| },
| (app) => {
| app.refresh();
| }
| );
| </script>
|
|