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
| <template>
| <cl-crud ref="Crud">
| <cl-row>
| <!-- 刷新按钮 -->
| <cl-refresh-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" />
| </cl-row>
|
| <cl-row>
| <cl-flex1 />
| <!-- 分页控件 -->
| <cl-pagination />
| </cl-row>
|
| <!-- 新增、编辑 -->
| <cl-upsert ref="Upsert" />
| </cl-crud>
| </template>
|
| <script lang="ts" name="app-feedback" setup>
| import { useCrud, useTable, useUpsert } from "@cool-vue/crud";
| import { useCool } from "/@/cool";
| import { computed, reactive } from "vue";
| import { useDict } from "/$/dict";
|
| const { service } = useCool();
| const { dict } = useDict();
|
| const options = reactive({
| status: [
| {
| label: "未处理",
| value: 0,
| type: "warning"
| },
| {
| label: "已处理",
| value: 1
| }
| ],
| type: computed(() => {
| return dict.get("feedbackType");
| })
| });
|
| // cl-upsert
| const Upsert = useUpsert({
| props: {
| labelWidth: 80
| },
| items: [
| {
| prop: "status",
| label: "状态",
| component: { name: "el-radio-group", options: options.status },
| required: true
| },
| {
| prop: "remark",
| label: "处理结果",
| component: {
| name: "el-input",
| props: {
| type: "textarea",
| rows: 4
| }
| }
| }
| ]
| });
|
| // cl-table
| const Table = useTable({
| columns: [
| { type: "index", label: "#", width: 60 },
| { prop: "avatarUrl", label: "头像", component: { name: "cl-avatar" }, minWidth: 80 },
| { prop: "nickName", label: "用户", minWidth: 120 },
| { prop: "contact", label: "联系方式", minWidth: 120 },
| {
| prop: "content",
| label: "内容",
| component: { name: "cl-editor-preview", props: { name: "wang" } },
| minWidth: 120
| },
| {
| prop: "images",
| label: "图片",
| component: { name: "cl-image", props: { size: 60 } },
| minWidth: 100
| },
| {
| prop: "type",
| label: "类型",
| dict: options.type,
| dictFormatter(arr) {
| return arr.map((e) => e.label).join("、");
| },
| minWidth: 120
| },
| { prop: "status", label: "状态", dict: options.status, minWidth: 100 },
| { prop: "handlerName", label: "处理人", minWidth: 120 },
| { prop: "remark", label: "处理结果", showOverflowTooltip: true, minWidth: 200 },
| { prop: "createTime", label: "创建时间", sortable: "desc", minWidth: 160 },
| { prop: "updateTime", label: "更新时间", sortable: "custom", minWidth: 160 },
| {
| type: "op",
| width: 120,
| buttons({ scope }) {
| if (scope.row.status == 0) {
| return ["edit"];
| }
| return [];
| }
| }
| ]
| });
|
| // cl-crud
| const Crud = useCrud(
| {
| service: service.app.feedback,
| dict: {
| label: {
| update: "处理"
| }
| }
| },
| (app) => {
| app.refresh();
| }
| );
| </script>
|
|