form19.vue
14.8 KB
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
<template>
<div class="NCC-common-layout">
<div class="NCC-common-layout-center">
<!-- 筛选条件 -->
<el-row class="NCC-common-search-box" :gutter="16">
<el-form @submit.native.prevent>
<el-col :span="12">
<el-form-item label="门店">
<el-select
v-model="query.storeIds"
placeholder="请选择门店"
multiple
filterable
clearable
:style='{"width":"100%"}'>
<el-option
v-for="store in storeOptions"
:key="store.id"
:label="store.dm"
:value="store.id">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="search()">查询</el-button>
<el-button icon="el-icon-refresh-right" @click="reset()">重置</el-button>
</el-form-item>
</el-col>
</el-form>
</el-row>
<!-- 数据表格 -->
<div class="NCC-common-layout-main NCC-flex-main table-wrapper">
<el-table
v-loading="listLoading"
:data="list"
border
stripe
:max-height="tableHeight">
<!-- 展开行:显示账单列表 -->
<el-table-column type="expand" width="50">
<template slot-scope="props">
<div class="expand-container" v-if="props.row.billingList && props.row.billingList.length > 0">
<div class="expand-title">
<i class="el-icon-document"></i>
账单明细
</div>
<div v-for="(billing, billingIndex) in props.row.billingList" :key="billing.billingId || billingIndex" class="billing-item">
<!-- 账单信息 -->
<div class="billing-header">
<div class="billing-info">
<span class="billing-label">
<i class="el-icon-document item-icon"></i>
账单ID:
</span>
<span class="billing-value">{{ billing.billingId || '无' }}</span>
</div>
<div class="billing-info">
<span class="billing-label">
<i class="el-icon-date item-icon"></i>
账单日期:
</span>
<span class="billing-value">{{ formatTime(billing.billingDate) }}</span>
</div>
<div class="billing-info">
<span class="billing-label">
<i class="el-icon-shop item-icon"></i>
门店名称:
</span>
<span class="billing-value">{{ billing.storeName || '无' }}</span>
</div>
<div class="billing-info">
<span class="billing-label">
<i class="el-icon-money item-icon"></i>
实际业绩:
</span>
<span class="billing-value amount-value">¥{{ formatMoney(billing.actualPerformance) }}</span>
</div>
</div>
<!-- 项目列表 -->
<div v-if="billing.itemList && billing.itemList.length > 0" class="item-list-container">
<div class="item-list-title">
<i class="el-icon-goods"></i>
项目明细({{ billing.itemList.length }}项)
</div>
<el-table
:data="billing.itemList"
border
size="small"
:header-cell-style="{ background: '#f0f2f5', color: '#606266' }"
style="margin-top: 8px;">
<el-table-column prop="itemName" label="项目名称" min-width="150">
<template slot-scope="itemScope">
<div class="item-name">
<i class="el-icon-goods item-icon"></i>
<span>{{ itemScope.row.itemName || '无' }}</span>
</div>
</template>
</el-table-column>
<el-table-column prop="itemCode" label="项目编号" width="120">
<template slot-scope="itemScope">
<span>{{ itemScope.row.itemCode || '无' }}</span>
</template>
</el-table-column>
<el-table-column prop="itemPrice" label="项目价格" width="120">
<template slot-scope="itemScope">
<span class="amount-value">¥{{ formatMoney(itemScope.row.itemPrice) }}</span>
</template>
</el-table-column>
<el-table-column prop="sourceType" label="来源类型" width="100">
<template slot-scope="itemScope">
<el-tag
:type="getSourceTypeTagType(itemScope.row.sourceType)"
size="small">
{{ itemScope.row.sourceType || '无' }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="projectNumber" label="项目次数" width="100">
<template slot-scope="itemScope">
<span>{{ itemScope.row.projectNumber || 0 }}</span>
</template>
</el-table-column>
<el-table-column prop="totalPrice" label="总价" width="120">
<template slot-scope="itemScope">
<span class="amount-value">¥{{ formatMoney(itemScope.row.totalPrice) }}</span>
</template>
</el-table-column>
<el-table-column prop="actualPrice" label="实付金额" width="120">
<template slot-scope="itemScope">
<span class="amount-paid">¥{{ formatMoney(itemScope.row.actualPrice) }}</span>
</template>
</el-table-column>
<el-table-column prop="performanceTime" label="业绩时间" width="160">
<template slot-scope="itemScope">
<span>{{ formatTime(itemScope.row.performanceTime) }}</span>
</template>
</el-table-column>
</el-table>
</div>
<div v-else class="item-list-empty">
暂无项目明细
</div>
</div>
</div>
<div v-else class="expand-empty">
暂无账单明细
</div>
</template>
</el-table-column>
<el-table-column prop="memberId" label="会员ID" width="180">
<template slot-scope="scope">
<i class="el-icon-user-solid" style="margin-right: 4px; color: #409EFF;"></i>
<span>{{ scope.row.memberId || '无' }}</span>
</template>
</el-table-column>
<el-table-column prop="memberName" label="会员姓名" min-width="120">
<template slot-scope="scope">
<i class="el-icon-user" style="margin-right: 4px; color: #409EFF;"></i>
<span>{{ scope.row.memberName || '无' }}</span>
</template>
</el-table-column>
<el-table-column prop="phone" label="手机号" min-width="130">
<template slot-scope="scope">
<i class="el-icon-phone" style="margin-right: 4px; color: #67C23A;"></i>
<span>{{ scope.row.phone || '无' }}</span>
</template>
</el-table-column>
<el-table-column prop="storeName" label="门店名称" min-width="150">
<template slot-scope="scope">
<i class="el-icon-shop" style="margin-right: 4px; color: #909399;"></i>
<span>{{ scope.row.storeName || '无' }}</span>
</template>
</el-table-column>
<el-table-column prop="billingList" label="账单数量" width="100">
<template slot-scope="scope">
<span>{{ (scope.row.billingList && scope.row.billingList.length) || 0 }}</span>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination
v-show="total > 0"
:total="total"
:page.sync="listQuery.pageIndex"
:limit.sync="listQuery.pageSize"
@pagination="handlePagination"
/>
</div>
</div>
</div>
</template>
<script>
import request from '@/utils/request'
import Pagination from '@/components/Pagination'
export default {
name: 'GoddessCardMembers',
components: {
Pagination
},
data() {
return {
query: {
storeIds: []
},
storeOptions: [],
list: [],
listLoading: false,
total: 0,
listQuery: {
pageIndex: 1,
pageSize: 10
}
}
},
computed: {
// 计算表格高度
tableHeight() {
// 减去头部、筛选条件、分页等高度,大约 280px
return window.innerHeight - 280
}
},
created() {
this.initStoreOptions()
this.search()
},
methods: {
// 初始化门店选项
initStoreOptions() {
request({
url: '/api/Extend/LqMdxx',
method: 'GET',
data: {
currentPage: 1,
pageSize: 1000
}
}).then(res => {
if (res.data && res.data.list) {
this.storeOptions = res.data.list
}
}).catch(() => {
this.storeOptions = []
})
},
// 查询数据
search() {
this.listLoading = true
const params = {
pageIndex: this.listQuery.pageIndex,
pageSize: this.listQuery.pageSize
}
// 添加门店筛选条件
if (this.query.storeIds && this.query.storeIds.length > 0) {
params.StoreIds = this.query.storeIds
}
request({
url: '/api/Extend/lqstatistics/GetGoddessCardMembers',
method: 'POST',
data: params
}).then(res => {
if (res.data && res.data.list) {
this.list = res.data.list
this.total = (res.data.pagination && res.data.pagination.total) || res.data.list.length || 0
} else {
this.list = []
this.total = 0
}
this.listLoading = false
}).catch(err => {
console.error('查询失败:', err)
this.$message({
type: 'error',
message: '查询失败,请重试',
duration: 1500
})
this.listLoading = false
this.list = []
this.total = 0
})
},
// 处理分页变化
handlePagination({ page, limit }) {
this.listQuery.pageIndex = page
this.listQuery.pageSize = limit
this.search()
},
// 重置查询条件
reset() {
this.query.storeIds = []
this.listQuery.pageIndex = 1
this.listQuery.pageSize = 10
this.list = []
this.total = 0
this.search()
},
// 格式化金额
formatMoney(amount) {
if (amount === null || amount === undefined || amount === '') {
return '0.00'
}
const num = parseFloat(amount)
if (isNaN(num)) {
return '0.00'
}
return num.toFixed(2)
},
// 格式化时间
formatTime(timestamp) {
if (!timestamp) {
return '无'
}
const date = new Date(timestamp)
if (isNaN(date.getTime())) {
return '无'
}
const year = date.getFullYear()
const month = String(date.getMonth() + 1).padStart(2, '0')
const day = String(date.getDate()).padStart(2, '0')
const hours = String(date.getHours()).padStart(2, '0')
const minutes = String(date.getMinutes()).padStart(2, '0')
const seconds = String(date.getSeconds()).padStart(2, '0')
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
},
// 获取来源类型标签类型
getSourceTypeTagType(sourceType) {
if (!sourceType) {
return 'info'
}
if (sourceType === '购买') {
return 'success'
} else if (sourceType === '赠送') {
return 'warning'
} else if (sourceType === '体验') {
return 'info'
}
return 'info'
}
}
}
</script>
<style lang="scss" scoped>
.table-wrapper {
height: 100%;
::v-deep .el-table__body-wrapper {
overflow-y: scroll !important;
}
}
.expand-container {
padding: 16px;
background: #fafafa;
.expand-title {
font-size: 14px;
font-weight: 500;
color: #303133;
margin-bottom: 16px;
display: flex;
align-items: center;
i {
margin-right: 6px;
color: #409EFF;
}
}
.billing-item {
background: #fff;
border: 1px solid #e4e7ed;
border-radius: 4px;
padding: 12px;
margin-bottom: 12px;
&:last-child {
margin-bottom: 0;
}
.billing-header {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 12px;
padding-bottom: 12px;
border-bottom: 1px solid #e4e7ed;
.billing-info {
display: flex;
align-items: center;
.billing-label {
font-size: 13px;
color: #606266;
margin-right: 4px;
.item-icon {
margin-right: 4px;
color: #909399;
}
}
.billing-value {
font-size: 13px;
color: #303133;
font-weight: 500;
}
}
}
.item-list-container {
.item-list-title {
font-size: 13px;
font-weight: 500;
color: #606266;
margin-bottom: 8px;
display: flex;
align-items: center;
i {
margin-right: 6px;
color: #67C23A;
}
}
}
.item-list-empty {
padding: 12px;
text-align: center;
color: #909399;
background: #f5f7fa;
border-radius: 4px;
}
}
}
.expand-empty {
padding: 16px;
text-align: center;
color: #909399;
background: #fafafa;
}
.item-name {
display: flex;
align-items: center;
.item-icon {
margin-right: 6px;
color: #409EFF;
}
}
.amount-value {
color: #409EFF;
font-weight: 500;
}
.amount-paid {
color: #67C23A;
font-weight: 500;
}
</style>