index.vue
25.1 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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
<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="6">
<el-form-item label="耗卡时间">
<el-date-picker v-model="query.hksj" type="daterange" value-format="timestamp" format="yyyy-MM-dd"
start-placeholder="开始日期" end-placeholder="结束日期">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="门店">
<el-select v-model="query.md" placeholder="门店" clearable @change="handleMdChange">
<el-option v-for="(item, index) in mdOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="会员">
<!-- <el-input v-model="query.hymc" placeholder="会员名称" clearable /> -->
<el-select
:style='{"width":"100%"}'
v-model="query.hy"
filterable
clearable
remote
reserve-keyword
placeholder="请输入关键词"
:remote-method="remoteMethod"
:loading="kdhyLoading">
<el-option
v-for="item in kdhyOptions"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</el-form-item>
</el-col>
<template v-if="showAll">
<el-col :span="6">
<el-form-item label="健康师">
<el-select v-model="query.jksId" placeholder="健康师" clearable filterable>
<el-option v-for="(item, index) in jksOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="科技老师">
<el-select v-model="query.kjblsId" placeholder="科技老师" clearable filterable>
<el-option v-for="(item, index) in kjbOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col>
<!-- <el-col :span="6">
<el-form-item label="顾客类型">
<el-select v-model="query.gklx" placeholder="顾客类型" clearable >
<el-option v-for="(item, index) in gklxOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col> -->
<el-col :span="6">
<el-form-item label="消费金额">
<el-input v-model="query.xfje" placeholder="消费金额" clearable />
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="手工费用">
<el-input v-model="query.sgfy" placeholder="手工费用" clearable />
</el-form-item>
</el-col>
<!-- <el-col :span="6">
<el-form-item label="是否有科技部">
<el-select v-model="query.sfykjb" placeholder="是否有科技部" >
<el-option v-for="(item, index) in sfykjbOptions" :key="index" :label="item.fullName" :value="item.id" />
</el-select>
</el-form-item>
</el-col> -->
<el-col :span="6">
<el-form-item label="是否作废">
<el-select v-model="query.isEffective" placeholder="是否作废">
<el-option label="正常" value="1"></el-option>
<el-option label="作废" value="-1"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="ID">
<el-input v-model="query.id" placeholder="ID" clearable />
</el-form-item>
</el-col>
</template>
<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-button type="text" icon="el-icon-arrow-down" @click="showAll=true" v-if="!showAll">展开</el-button>
<el-button type="text" icon="el-icon-arrow-up" @click="showAll=false" v-else>收起</el-button>
</el-form-item>
</el-col>
</el-form>
</el-row>
<div class="NCC-common-layout-main NCC-flex-main">
<div class="NCC-common-head">
<!-- <div>
<el-button type="primary" icon="el-icon-plus" @click="addOrUpdateHandle()">新增</el-button>
<el-button type="text" icon="el-icon-download" @click="exportData()">导出</el-button>
<el-button type="text" icon="el-icon-delete" @click="handleBatchRemoveDel()">批量删除</el-button>
</div> -->
<div class="NCC-common-head-right">
<el-tooltip effect="dark" content="刷新" placement="top">
<el-link icon="icon-ym icon-ym-Refresh NCC-common-head-icon" :underline="false" @click="reset()" />
</el-tooltip>
<screenfull isContainer />
</div>
</div>
<NCC-table v-loading="listLoading" :data="list" has-c @selection-change="handleSelectionChange">
<el-table-column prop="id" label="ID" width="150" align="left" />
<!-- 展开行 -->
<el-table-column type="expand" width="50">
<template slot-scope="props">
<div class="expand-container" v-if="props.row.ConsumeDetails && props.row.ConsumeDetails.length > 0">
<div class="expand-title">
<i class="el-icon-goods"></i>
消费明细
</div>
<el-table :data="props.row.ConsumeDetails" border size="small" :header-cell-style="{ background: '#f5f7fa', color: '#606266' }">
<el-table-column prop="pxmc" label="项目名称" align="left" width="180">
<template slot-scope="scope">
<div class="item-name">
<i class="el-icon-goods item-icon"></i>
<span>{{ scope.row.pxmc || '无' }}</span>
</div>
</template>
</el-table-column>
<el-table-column prop="pxjg" label="项目价格" align="right" width="120">
<template slot-scope="scope">
<span class="amount-value">¥{{ formatMoney(scope.row.pxjg) }}</span>
</template>
</el-table-column>
<el-table-column prop="projectNumber" label="项目次数" align="right" width="100">
<template slot-scope="scope">
<span>{{ scope.row.projectNumber || 0 }}</span>
</template>
</el-table-column>
<el-table-column prop="totalPrice" label="总价" align="right" width="120">
<template slot-scope="scope">
<span class="amount-value">¥{{ formatMoney(scope.row.totalPrice) }}</span>
</template>
</el-table-column>
<el-table-column prop="sourceType" label="来源类型" align="left" width="100">
<template slot-scope="scope">
<el-tag size="small" type="info">
{{ scope.row.sourceType || '无' }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="是否有效" width="100" align="center">
<template slot-scope="scope">
<span>{{ scope.row.isEffective == 1 ? '有效' : '无效' }}</span>
</template>
</el-table-column>
</el-table>
</div>
<div class="expand-empty" v-else>
<i class="el-icon-info"></i>
<span>暂无消费明细</span>
</div>
</template>
</el-table-column>
<el-table-column prop="mdmc" label="门店名称" align="left" />
<!-- <el-table-column label="会员" prop="hy" align="left">
<template slot-scope="scope">{{ scope.row.hy | dynamicText(hyOptions) }}</template>
</el-table-column>
<el-table-column prop="hyzh" label="会员账号" align="left" /> -->
<el-table-column prop="hymc" label="会员名称" align="left" />
<el-table-column prop="memberPhone" label="会员手机号" align="left" />
<el-table-column label="顾客类型" prop="gklx" align="left">
<template slot-scope="scope">{{ scope.row.gklx | dynamicText(gklxOptions) }}</template>
</el-table-column>
<el-table-column prop="xfje" label="消费金额" align="left" />
<el-table-column prop="sgfy" label="手工费用" align="left" />
<!-- <el-table-column label="是否有科技部" prop="sfykjb" align="left">
<template slot-scope="scope">{{ scope.row.sfykjb | dynamicText(sfykjbOptions) }}</template>
</el-table-column> -->
<el-table-column prop="hksj" width="140" label="耗卡时间" align="left" :formatter="ncc.tableDateFormat" />
<el-table-column prop="appointmentId" label="关联预约号" align="left" width="180">
<template slot-scope="scope">
<el-link v-if="scope.row.appointmentId" type="primary" @click="goToYyjl(scope.row.appointmentId)" :underline="false">
{{ scope.row.appointmentId }}
</el-link>
<span v-else>-</span>
</template>
</el-table-column>
<!-- <el-table-column prop="czry" label="操作人员" align="left" /> -->
<!-- 操作人 -->
<el-table-column label="操作人" width="150" align="center" >
<template slot-scope="scope">
<div class="referrer-info">
<i class="el-icon-user referrer-icon"></i>
<span class="text-nowrap">{{ scope.row.czry?scope.row.czry:'无' }}</span>
</div>
</template>
</el-table-column>
<el-table-column label="是否作废" width="140" align="center">
<template slot-scope="scope">
<div class="first-order-info">
<span class="text-nowrap">{{ scope.row.isEffective == '1'?'正常':'作废'}}</span>
</div>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right" width="200">
<template slot-scope="scope">
<el-button type="text" @click="serviceLogHandle(scope.row.id)">服务日志</el-button>
<el-button type="text" @click="detailHandle(scope.row.id)">详情</el-button>
<!-- <el-button type="text" @click="addOrUpdateHandle(scope.row.id)" >查看</el-button> -->
<el-button v-has="'btn_remove'" type="text" @click="handleDel(scope.row.id)" class="NCC-table-delBtn" >删除</el-button>
<el-button v-if="scope.row.xfje >=0" type="text" @click="handleHedge(scope.row.id)">对冲</el-button>
</template>
</el-table-column>
</NCC-table>
<pagination :total="total" :page.sync="listQuery.currentPage" :limit.sync="listQuery.pageSize" @pagination="initData" />
</div>
</div>
<LqXhHyhkDetail ref="detailDialog"/>
<ServiceLogDialog ref="serviceLogDialog"/>
<HedgeDialog ref="hedgeDialog" @refresh="refresh" />
<NCC-Form v-if="formVisible" ref="NCCForm" @refresh="refresh" />
<ExportBox v-if="exportBoxVisible" ref="ExportBox" @download="download" />
</div>
</template>
<script>
import request from '@/utils/request'
import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
import NCCForm from './Form'
import ExportBox from './ExportBox'
import LqXhHyhkDetail from './detail'
import ServiceLogDialog from './ServiceLogDialog'
import HedgeDialog from './hedge-dialog'
import { previewDataInterface } from '@/api/systemData/dataInterface'
export default {
components: { NCCForm, ExportBox, LqXhHyhkDetail, ServiceLogDialog, HedgeDialog },
data() {
return {
kdhyLoading:false,
kdhyOptions:[],
showAll: false,
query: {
id:undefined,
md:undefined,
mdbh:undefined,
mdmc:undefined,
hy:undefined,
hyzh:undefined,
hymc:undefined,
gklx:undefined,
xfje:undefined,
sgfy:undefined,
// sfykjb:undefined,
hksj:undefined,
czry:undefined,
jksId:undefined,
kjblsId:undefined,
},
list: [],
listLoading: true,
multipleSelection: [], total: 0,
listQuery: {
currentPage: 1,
pageSize: 10,
sort: "desc",
sidx: "",
},
formVisible: false,
exportBoxVisible: false,
columnList: [
{ prop: 'id', label: '耗卡编号' },
{ prop: 'md', label: '门店' },
{ prop: 'mdbh', label: '门店编号' },
{ prop: 'mdmc', label: '门店名称' },
{ prop: 'hy', label: '会员' },
{ prop: 'hyzh', label: '会员账号' },
{ prop: 'hymc', label: '会员名称' },
{ prop: 'gklx', label: '顾客类型' },
{ prop: 'xfje', label: '消费金额' },
{ prop: 'sgfy', label: '手工费用' },
{ prop: 'sfykjb', label: '是否有科技部' },
{ prop: 'hksj', label: '耗卡时间' },
{ prop: 'czry', label: '操作人员' },
],
mdOptions : [],
hyOptions : [],
jksOptions: [],
kjbOptions: [],
gklxOptions:[{"fullName":"会员","id":"会员"},{"fullName":"非会员","id":"非会员"},{"fullName":"19.9","id":"19.9"}],
sfykjbOptions:[{"fullName":"是","id":"是"},{"fullName":"否","id":"否"}],
}
},
computed: {},
created() {
// 从路由参数中读取筛选条件
if(this.$route.query.storeId){
this.query.md = this.$route.query.storeId
}
if(this.$route.query.startTime && this.$route.query.endTime) {
this.query.hksj = [this.$route.query.startTime, this.$route.query.endTime]
}
// 从路由参数中读取健康师ID,用于筛选耗卡记录
if(this.$route.query.jksId){
this.query.jksId = this.$route.query.jksId
}
this.initData()
this.getmdOptions();
this.gethyOptions();
this.getjksOptions();
this.getkjbOptions();
},
methods: {
goToYyjl(id) {
if (id) {
this.$router.push({
path: '/lqYyjl',
query: { id: id }
})
}
},
getkdhyOptions() {
request({
url: '/api/Extend/LqKhxx?page=1&pageSize=10',
method: 'GET',
}).then((res) => {
if (res.code == 200 && res.data.list.length > 0) {
this.kdhyOptions = res.data.list.map(item => ({
value: item.id,
label: `${item.khmc}`+'('+item.sjh+' '+item.gsmdName+')',
}));
} else {
this.kdhyOptions = [];
}
console.error(this.kdhyOptions)
})
},
async remoteMethod(query){
if (query !== '') {
this.kdhyLoading = true;
await request({
url: '/api/Extend/LqKhxx?page=1&pageSize=20&keyword='+query,
method: 'GET',
}).then((res) => {
this.kdhyLoading = false;
if (res.code == 200 && res.data.list.length > 0) {
this.kdhyOptions = res.data.list.map(item => ({
value: item.id,
label: `${item.khmc}`+'('+item.sjh +' '+item.gsmdName+')',
}));
} else {
this.kdhyOptions = [];
}
console.error(this.kdhyOptions)
})
} else {
// this.kdhyOptions = [];
}
},
detailHandle(id){
this.$refs.detailDialog.init(id)
},
serviceLogHandle(consumeId){
this.$refs.serviceLogDialog.init(consumeId)
},
handleHedge(consumeId){
this.$refs.hedgeDialog.init(consumeId)
},
getmdOptions(){
previewDataInterface('730960205902251269').then(res => {
this.mdOptions = res.data
});
},
gethyOptions(){
previewDataInterface('730998109110273285').then(res => {
this.hyOptions = res.data
});
},
// 获取健康师选项
getjksOptions() {
// 如果选择了门店,则根据门店获取健康师;否则获取所有健康师
const mdid = this.query.md ? `&mdid=${this.query.md}` : '';
request({
url: `/api/Extend/user?page=1&pageSize=1000${mdid}&gw=健康师`,
method: 'GET',
}).then((res) => {
if (res.code == 200 && res.data.list.length > 0) {
this.jksOptions = res.data.list.map(item => ({
fullName: item.realName || item.name || item.userName,
id: item.id,
value: item.id,
label: item.realName || item.name || item.userName,
}));
} else {
this.jksOptions = [];
}
})
},
// 获取科技部老师选项
async getkjbOptions() {
const userResponse = await request({
url: `/api/Extend/user?page=1&pageSize=1000&gw=科技老师`,
method: 'GET',
});
if (userResponse.code == 200 && userResponse.data && userResponse.data.list.length > 0) {
this.kjbOptions = userResponse.data.list.map(item => ({
fullName: item.realName || item.name || item.userName,
id: item.id,
value: item.id,
label: item.realName || item.name || item.userName,
}));
} else {
this.kjbOptions = [];
}
},
initData() {
this.listLoading = true;
let _query = {
...this.listQuery,
...this.query,
// sfykjb:'是'
};
let query = {}
for (let key in _query) {
if (Array.isArray(_query[key])) {
query[key] = _query[key].join()
} else {
query[key] = _query[key]
}
}
request({
url: `/api/Extend/LqXhHyhk`,
method: 'GET',
data: query
}).then(res => {
this.list = res.data.list
this.total = res.data.pagination.total
this.listLoading = false
})
},
handleDel(id) {
this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
type: 'warning'
}).then(() => {
request({
url: `/api/Extend/LqXhHyhk/${id}`,
method: 'DELETE'
}).then(res => {
this.$message({
type: 'success',
message: res.msg,
onClose: () => {
this.initData()
}
});
})
}).catch(() => {
});
},
handleSelectionChange(val) {
const res = val.map(item => item.id)
this.multipleSelection = res
},
handleBatchRemoveDel() {
if (!this.multipleSelection.length) {
this.$message({
type: 'error',
message: '请选择一条数据',
duration: 1500,
})
return
}
const ids = this.multipleSelection
this.$confirm('您确定要删除这些数据吗, 是否继续?', '提示', {
type: 'warning'
}).then(() => {
request({
url: `/api/Extend/LqXhHyhk/batchRemove`,
method: 'POST',
data: ids ,
}).then(res => {
this.$message({
type: 'success',
message: res.msg,
onClose: () => {
this.initData()
}
});
})
}).catch(() => { })
},
addOrUpdateHandle(id, isDetail) {
this.formVisible = true
this.$nextTick(() => {
this.$refs.NCCForm.init(id, isDetail)
})
},
exportData() {
this.exportBoxVisible = true
this.$nextTick(() => {
this.$refs.ExportBox.init(this.columnList)
})
},
download(data) {
let query = { ...data, ...this.listQuery, ...this.query }
request({
url: `/api/Extend/LqXhHyhk/Actions/Export`,
method: 'GET',
data: query
}).then(res => {
if (!res.data.url) return
window.location.href = this.define.comUrl + res.data.url
this.$refs.ExportBox.visible = false
this.exportBoxVisible = false
})
},
search() {
this.listQuery = {
currentPage: 1,
pageSize: 10,
sort: "desc",
sidx: "",
}
this.initData()
},
refresh(isrRefresh) {
this.formVisible = false
if (isrRefresh) this.reset()
},
reset() {
for (let key in this.query) {
this.query[key] = undefined
}
this.listQuery = {
currentPage: 1,
pageSize: 10,
sort: "desc",
sidx: "",
}
this.initData()
},
// 格式化金额
formatMoney(amount) {
if (!amount && amount !== 0) return '0.00'
return Number(amount).toFixed(2)
},
// 门店变化时重新加载健康师列表
handleMdChange() {
this.query.jksId = undefined; // 清空健康师选择
this.getjksOptions();
}
}
}
</script>
<style lang="scss" scoped>
// 展开行样式
.expand-container {
padding: 16px;
background: #fafafa;
border-radius: 4px;
margin: 8px 0;
.expand-title {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
font-weight: 600;
color: #303133;
margin-bottom: 12px;
padding-bottom: 8px;
border-bottom: 1px solid #e4e7ed;
i {
color: #409EFF;
font-size: 16px;
}
}
.item-name {
display: flex;
align-items: center;
gap: 6px;
.item-icon {
color: #67C23A;
font-size: 14px;
}
}
.amount-value {
color: #409EFF;
font-weight: 500;
}
}
.expand-empty {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 20px;
color: #909399;
font-size: 14px;
i {
font-size: 16px;
}
}
</style>