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
| <template>
| <cl-crud ref="Crud">
| <cl-row>
| <!-- 刷新按钮 -->
| <cl-refresh-btn />
|
| <cl-filter label="支付方式">
| <cl-select :options="options.payType" prop="payType" :width="140" />
| </cl-filter>
|
| <cl-filter label="订单状态">
| <cl-select :options="options.status" prop="status" :width="140" />
| </cl-filter>
|
| <cl-filter label="创建时间">
| <cl-date-picker type="datetimerange" />
| </cl-filter>
|
| <cl-flex1 />
| <!-- 关键字搜索 -->
| <cl-search-key placeholder="搜索订单号、标题、用户昵称" />
| </cl-row>
|
| <cl-row>
| <!-- 数据表格 -->
| <cl-table ref="Table" show-summary :summary-method="onSummaryMethod" />
| </cl-row>
|
| <cl-row>
| <cl-flex1 />
| <!-- 分页控件 -->
| <cl-pagination />
| </cl-row>
| </cl-crud>
| </template>
|
| <script lang="ts" name="order-info" setup>
| import { useCrud, useTable } from "@cool-vue/crud";
| import { useCool } from "/@/cool";
| import { reactive, ref } from "vue";
| import { OrderStatus, PayType } from "../dict";
| import OrderUserItem from "../components/user-item.vue";
| import OrderLogisticsItem from "../components/logistics-item.vue";
| import OrderPayItem from "../components/pay-item.vue";
| import OrderRemarkItem from "../components/remark-item.vue";
| import OrderInfoItem from "../components/info-item.vue";
| import OrderDiscountItem from "../components/discount-item.vue";
| import OrderGoods from "../components/goods.vue";
|
| const { service } = useCool();
|
| // 选项
| const options = reactive({
| payType: PayType,
| status: OrderStatus
| });
|
| // 合计数据
| const subData = ref({
| totalCount: 0,
| totalPrice: 0
| });
|
| // cl-table
| const Table = useTable<Eps.OrderInfoEntity>({
| contextMenu: ["delete"],
| columns: [
| {
| type: "expand",
| label: "商品",
| width: 60,
| component: {
| vm: OrderGoods
| }
| },
| {
| label: "订单信息",
| prop: "orderNum",
| minWidth: 160,
| component: {
| vm: OrderInfoItem
| }
| },
| {
| label: "用户信息",
| prop: "user",
| minWidth: 120,
| component: {
| vm: OrderUserItem
| }
| },
| {
| label: "金额(元)",
| prop: "price",
| minWidth: 120,
| sortable: "custom"
| },
| {
| label: "优惠说明",
| prop: "discount",
| minWidth: 160,
| component: {
| vm: OrderDiscountItem
| }
| },
| {
| label: "付款信息",
| prop: "pay",
| minWidth: 160,
| component: {
| vm: OrderPayItem
| }
| },
| {
| label: "物流信息",
| prop: "logistics",
| minWidth: 250,
| component: {
| vm: OrderLogisticsItem
| }
| },
| {
| label: "备注",
| prop: "remark",
| minWidth: 200,
| component: {
| vm: OrderRemarkItem
| }
| },
| {
| label: "创建时间",
| prop: "createTime",
| minWidth: 160,
| sortable: "desc"
| },
| {
| label: "状态",
| prop: "status",
| dict: options.status,
| minWidth: 100,
| fixed: "right"
| }
| ]
| });
|
| // cl-crud
| const Crud = useCrud(
| {
| service: service.order.info,
| async onRefresh(params, { next }) {
| const res = await next(params);
|
| // 设置合计数据
| subData.value = res.subData;
| }
| },
| (app) => {
| app.refresh();
| }
| );
|
| function onSummaryMethod() {
| return ["合计", "", "", subData.value.totalPrice + " 元"];
| }
| </script>
|
|