wangzhibo
6 天以前 7bd866831780abcf5a59c4cbb7d1be456eea7c99
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
<template>
    <cl-crud ref="Crud">
        <cl-row>
            <!-- 刷新按钮 -->
            <cl-refresh-btn />
            <!-- 新增按钮 -->
            <cl-add-btn />
            <!-- 删除按钮 -->
            <cl-multi-delete-btn />
 
            <cl-filter label="状态">
                <cl-select :options="options.status" prop="status" :width="120" />
            </cl-filter>
 
            <cl-filter label="类型">
                <cl-select :options="options.type" prop="type" :width="120" />
            </cl-filter>
 
            <cl-flex1 />
            <!-- 关键字搜索 -->
            <cl-search-key placeholder="搜索标题" />
        </cl-row>
 
        <cl-row>
            <!-- 数据表格 -->
            <cl-table ref="Table">
                <template #column-tagColor="{ scope }">
                    <!-- 显示颜色 -->
                    <div
                        :style="{
                            backgroundColor: scope.row.tagColor,
                            height: '10px',
                            width: '10px',
                            borderRadius: '100%',
                            margin: 'auto'
                        }"
                    />
                </template>
            </cl-table>
        </cl-row>
 
        <cl-row>
            <cl-flex1 />
            <!-- 分页控件 -->
            <cl-pagination />
        </cl-row>
 
        <!-- 新增、编辑 -->
        <cl-upsert ref="Upsert" />
    </cl-crud>
</template>
 
<script lang="ts" name="app-goods" setup>
import { useCrud, useTable, useUpsert } from "@cool-vue/crud";
import { useCool } from "/@/cool";
import { reactive } from "vue";
 
const { service } = useCool();
 
const options = reactive({
    status: [
        {
            label: "启用",
            value: 1
        },
        {
            label: "禁用",
            value: 0
        }
    ],
    type: [
        { label: "天", value: 0 },
        { label: "月", value: 1, type: "success" },
        { label: "年", value: 2, type: "warning" }
    ]
});
 
// cl-upsert
const Upsert = useUpsert({
    items: [
        { prop: "title", label: "标题", required: true, component: { name: "el-input" } },
        {
            prop: "description",
            label: "描述",
            component: {
                name: "el-input",
                props: {
                    type: "textarea",
                    rows: 3
                }
            }
        },
        {
            span: 12,
            required: true,
            prop: "price",
            label: "价格",
            hook: { bind: ["number"] },
            component: { name: "el-input-number", props: { min: 0 } }
        },
        {
            required: true,
            span: 12,
            prop: "originalPrice",
            label: "原价",
            hook: { bind: ["number"] },
            component: { name: "el-input-number", props: { min: 0 } }
        },
        {
            span: 12,
            prop: "type",
            label: "类型",
            component: {
                name: "el-radio-group",
                options: options.type
            },
            value: 0,
            required: true
        },
        {
            span: 12,
            prop: "duration",
            label: "时长",
            required: true,
            component: { name: "el-input-number", props: { min: 0 } }
        },
        { span: 12, prop: "tag", label: "标签", component: { name: "el-input" } },
        {
            span: 12,
            prop: "tagColor",
            label: "标签颜色",
            value: "#26A7FD",
            component: { name: "el-color-picker" }
        },
        {
            value: 0,
            prop: "sort",
            label: "排序",
            hook: { bind: ["number"] },
            component: { name: "el-input-number", props: { min: 0 } },
            required: true
        },
        {
            prop: "status",
            flex: false,
            value: 1,
            label: "状态",
            component: { name: "cl-switch" },
            required: true
        }
    ]
});
 
// cl-table
const Table = useTable({
    columns: [
        { type: "selection" },
        { prop: "title", label: "标题", minWidth: 150 },
        { prop: "price", label: "价格", minWidth: 120 },
        { prop: "originalPrice", label: "原价", minWidth: 120 },
        { prop: "description", label: "描述", showOverflowTooltip: true, minWidth: 200 },
        { prop: "status", label: "状态", component: { name: "cl-switch" }, minWidth: 80 },
        { prop: "sort", label: "排序", minWidth: 80 },
        {
            prop: "type",
            label: "类型",
            dict: options.type,
            minWidth: 80
        },
        { prop: "duration", label: "时长", minWidth: 80 },
        { prop: "tag", label: "标签", minWidth: 150 },
        { prop: "tagColor", label: "标签颜色", minWidth: 100 },
        { prop: "createTime", label: "创建时间", sortable: "desc", minWidth: 160 },
        { prop: "updateTime", label: "更新时间", sortable: "custom", minWidth: 160 },
        { type: "op", buttons: ["edit", "delete"] }
    ]
});
 
// cl-crud
const Crud = useCrud(
    {
        service: service.app.goods
    },
    (app) => {
        app.refresh();
    }
);
</script>