ad197adf
“wangming”
完成了基本的门店PC的设计
|
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
|
<template>
<el-dialog
:visible.sync="visibleProxy"
:show-close="false"
width="90%"
:close-on-click-modal="false"
custom-class="billing-list-dialog"
append-to-body
>
<div class="dialog-inner">
<div class="dialog-header">
<div class="dialog-title">开单记录</div>
<span class="dialog-close" @click="visibleProxy = false"><i class="el-icon-close"></i></span>
</div>
<div class="dialog-search">
<el-form @submit.native.prevent :inline="true" size="small">
<el-form-item label="开单日期">
<el-date-picker v-model="query.kdrq" type="daterange" value-format="timestamp" format="yyyy-MM-dd" start-placeholder="开始" end-placeholder="结束" style="width:220px" />
</el-form-item>
<el-form-item label="开单会员">
<el-select v-model="query.kdhy" filterable remote reserve-keyword clearable placeholder="搜索会员" :remote-method="searchMember" :loading="memberLoading" style="width:200px">
<el-option v-for="m in memberOptions" :key="m.value" :label="m.label" :value="m.value" />
</el-select>
</el-form-item>
<el-form-item label="活动名称">
<el-select v-model="query.activityId" placeholder="请选择活动" filterable clearable :loading="activityLoading" @visible-change="loadActivities" style="width:180px">
<el-option v-for="a in activityOptions" :key="a.id" :label="a.activityName" :value="a.id" />
</el-select>
</el-form-item>
<template v-if="showAll">
<el-form-item label="健康师">
<el-select v-model="query.jksId" placeholder="健康师" clearable filterable style="width:150px">
<el-option v-for="h in jksOptions" :key="h.id" :label="h.fullName" :value="h.id" />
</el-select>
</el-form-item>
<el-form-item label="科技老师">
<el-select v-model="query.kjblsId" placeholder="科技老师" clearable filterable style="width:150px">
<el-option v-for="t in kjbOptions" :key="t.id" :label="t.fullName" :value="t.id" />
</el-select>
</el-form-item>
<el-form-item label="付款方式">
<el-select v-model="query.fkfs" placeholder="付款方式" clearable style="width:120px">
<el-option v-for="p in payOptions" :key="p" :label="p" :value="p" />
</el-select>
</el-form-item>
<el-form-item label="是否首开">
<el-select v-model="query.sfskdd" placeholder="请选择" clearable style="width:100px">
<el-option label="是" value="是" /><el-option label="否" value="否" />
</el-select>
</el-form-item>
<el-form-item label="是否作废">
<el-select v-model="query.isEffective" placeholder="请选择" clearable style="width:100px">
<el-option label="正常" value="1" /><el-option label="作废" value="-1" />
</el-select>
</el-form-item>
</template>
<el-form-item>
<el-button type="primary" @click="search">查询</el-button>
<el-button @click="reset">重置</el-button>
<el-button type="text" @click="showAll = !showAll">
{{ showAll ? '收起' : '展开' }} <i :class="showAll ? 'el-icon-arrow-up' : 'el-icon-arrow-down'"></i>
</el-button>
</el-form-item>
</el-form>
</div>
<div class="dialog-content">
|
20099e65
“wangming”
1111
|
69
|
<el-table v-loading="loading" :data="list" border size="small" :header-cell-style="{ background:'#f8fafc', color:'#64748b', fontWeight:600 }">
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
70
71
72
73
|
<el-table-column type="expand" width="50">
<template slot-scope="{ row }">
<div class="expand-box" v-if="row.ItemDetails && row.ItemDetails.length">
<div class="expand-title"><i class="el-icon-goods"></i> 品项明细</div>
|
20099e65
“wangming”
1111
|
74
|
<el-table :data="row.ItemDetails" border size="mini" :header-cell-style="{ background:'#f0f4f8', color:'#64748b', fontWeight:500 }">
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
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
|
<el-table-column prop="pxmc" label="项目名称" width="180" />
<el-table-column label="项目价格" width="120" align="right">
<template slot-scope="s">¥{{ formatMoney(s.row.pxjg) }}</template>
</el-table-column>
<el-table-column prop="projectNumber" label="次数" width="80" align="right" />
<el-table-column label="总价" width="120" align="right">
<template slot-scope="s">¥{{ formatMoney(s.row.totalPrice) }}</template>
</el-table-column>
<el-table-column label="实付" width="120" align="right">
<template slot-scope="s"><span style="color:#67C23A;font-weight:600">¥{{ formatMoney(s.row.actualPrice) }}</span></template>
</el-table-column>
<el-table-column label="来源" width="100">
<template slot-scope="s"><el-tag size="mini" type="info">{{ s.row.sourceType || '-' }}</el-tag></template>
</el-table-column>
<el-table-column prop="remark" label="备注" show-overflow-tooltip />
</el-table>
</div>
<div v-else class="expand-empty"><i class="el-icon-info"></i> 暂无品项明细</div>
</template>
</el-table-column>
<el-table-column prop="kdhyc" label="开单会员" width="100" show-overflow-tooltip />
<el-table-column prop="kdhysjh" label="会员手机号" width="120" />
<el-table-column prop="activityName" label="活动名称" width="140" show-overflow-tooltip />
<el-table-column label="开单日期" width="110">
<template slot-scope="{ row }">{{ formatDate(row.kdrq) }}</template>
</el-table-column>
<el-table-column prop="zdyj" label="整单业绩" width="100" align="right" />
<el-table-column prop="sfyj" label="实付业绩" width="100" align="right" />
<el-table-column prop="deductAmount" label="储扣金额" width="100" align="right" />
<el-table-column prop="qk" label="欠款" width="80" align="right" />
<el-table-column label="付款方式" width="100">
<template slot-scope="{ row }">{{ mapOption(row.fkfs, payOptions) }}</template>
</el-table-column>
<el-table-column label="是否首开" width="90">
<template slot-scope="{ row }">{{ row.sfskdd || '-' }}</template>
</el-table-column>
<el-table-column label="是否作废" width="90">
<template slot-scope="{ row }">{{ row.isEffective == '1' ? '正常' : '作废' }}</template>
</el-table-column>
<el-table-column label="操作人" width="120" show-overflow-tooltip>
<template slot-scope="{ row }">{{ row.createUserName || '-' }}</template>
</el-table-column>
</el-table>
</div>
<div class="dialog-footer">
<el-pagination background layout="total, sizes, prev, pager, next, jumper" :total="total" :page-size.sync="listQuery.pageSize" :current-page.sync="listQuery.currentPage" :page-sizes="[10, 20, 50, 100]" @size-change="initData" @current-change="initData" />
</div>
</div>
</el-dialog>
</template>
<script>
|
b5df6609
“wangming”
```
|
128
129
130
131
132
|
import { getKdKdjlbList, getPackageInfoList } from '@/api/lqKdKdjlb'
import { getKhxxList } from '@/api/lqKhxx'
import { getStoreUserList } from '@/api/storeUser'
import { buildBillingKdrqRange } from '@/utils/billingHelper'
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
133
134
|
export default {
name: 'BillingListDialog',
|
b5df6609
“wangming”
```
|
135
136
137
138
|
props: {
visible: { type: Boolean, default: false },
currentStoreId: { type: String, default: '' }
},
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
139
140
|
data() {
return {
|
b5df6609
“wangming”
```
|
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
showAll: false,
loading: false,
memberLoading: false,
activityLoading: false,
memberOptions: [],
activityOptions: [],
activityLoaded: false,
jksOptions: [],
kjbOptions: [],
list: [],
total: 0,
query: {
kdrq: undefined,
kdhy: undefined,
activityId: undefined,
jksId: undefined,
kjblsId: undefined,
fkfs: undefined,
sfskdd: undefined,
isEffective: '1'
},
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
162
163
164
165
166
|
listQuery: { currentPage: 1, pageSize: 10, sort: 'desc', sidx: '' },
payOptions: ['现金', '微信', '支付宝', '银行卡', '合作', '直播收款', '合作方退']
}
},
computed: {
|
b5df6609
“wangming”
```
|
167
168
169
170
171
172
173
|
visibleProxy: {
get() { return this.visible },
set(v) { this.$emit('update:visible', v) }
},
storeId() {
return this.currentStoreId || (this.$store.getters.storeInfo || {}).storeId || ''
}
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
174
175
|
},
watch: {
|
b5df6609
“wangming”
```
|
176
177
178
179
180
181
182
|
visible(v) {
if (v) {
if (!this.memberOptions.length) this.searchMember('')
this.loadStaff()
this.initData()
}
}
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
183
184
185
186
187
188
189
|
},
methods: {
formatDate(ts) {
if (!ts) return '-'
if (typeof ts === 'string' && ts.includes('-')) return ts.substring(0, 10)
const d = new Date(typeof ts === 'number' ? ts : Number(ts))
if (isNaN(d.getTime())) return '-'
|
b5df6609
“wangming”
```
|
190
|
return `${d.getFullYear()}-${String(d.getMonth() + 1).padStart(2, '0')}-${String(d.getDate()).padStart(2, '0')}`
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
191
192
|
},
formatMoney(v) { return v != null ? Number(v).toFixed(2) : '0.00' },
|
b5df6609
“wangming”
```
|
193
194
|
mapOption(val) { return val || '-' },
async searchMember(kw) {
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
195
|
this.memberLoading = true
|
b5df6609
“wangming”
```
|
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
try {
const res = await getKhxxList({
currentPage: 1,
pageSize: 30,
keyWord: (kw || '').trim()
})
const list = res.data?.list || []
this.memberOptions = list.map(m => {
const name = m.khmc || m.name || '无'
const phone = m.sjh || m.mobile || ''
return {
value: m.id,
label: phone ? `${name}(${phone})` : name
}
})
} catch (e) {
this.memberOptions = []
} finally {
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
214
|
this.memberLoading = false
|
b5df6609
“wangming”
```
|
215
|
}
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
216
217
218
219
|
},
loadActivities(v) {
if (!v || this.activityLoaded) return
this.activityLoading = true
|
b5df6609
“wangming”
```
|
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
|
getPackageInfoList({ currentPage: 1, pageSize: 200, isEffective: 1 })
.then(res => {
this.activityOptions = res.data?.list || []
this.activityLoaded = true
})
.finally(() => {
this.activityLoading = false
})
},
async loadStaff() {
const storeId = this.storeId
if (!storeId) {
this.jksOptions = []
this.kjbOptions = []
return
}
try {
const [jksRes, kjbRes] = await Promise.all([
getStoreUserList({ mdid: storeId, gw: '健康师', currentPage: 1, pageSize: 500 }),
getStoreUserList({ mdid: storeId, gw: '科技老师', currentPage: 1, pageSize: 500 })
])
const mapUser = u => ({
id: u.id,
fullName: u.realName || u.account || u.id
})
this.jksOptions = (jksRes.data?.list || []).map(mapUser)
this.kjbOptions = (kjbRes.data?.list || []).map(mapUser)
} catch (e) {
this.jksOptions = []
this.kjbOptions = []
}
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
251
|
},
|
b5df6609
“wangming”
```
|
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
buildListQuery() {
const q = {
...this.listQuery,
djmd: this.storeId,
kdhy: this.query.kdhy,
activityId: this.query.activityId,
jksId: this.query.jksId,
kjblsId: this.query.kjblsId,
fkfs: this.query.fkfs,
sfskdd: this.query.sfskdd
}
const kdrq = buildBillingKdrqRange(this.query.kdrq)
if (kdrq) q.kdrq = kdrq
if (this.query.isEffective !== undefined && this.query.isEffective !== '') {
q.isEffective = Number(this.query.isEffective) || this.query.isEffective
}
return q
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
269
|
},
|
b5df6609
“wangming”
```
|
270
271
272
273
274
275
|
async initData() {
if (!this.storeId) {
this.list = []
this.total = 0
return
}
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
276
|
this.loading = true
|
b5df6609
“wangming”
```
|
277
278
279
280
281
282
283
284
|
try {
const res = await getKdKdjlbList(this.buildListQuery())
this.list = res.data?.list || []
this.total = res.data?.pagination?.total || 0
} catch (e) {
this.list = []
this.total = 0
} finally {
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
285
|
this.loading = false
|
b5df6609
“wangming”
```
|
286
|
}
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
287
|
},
|
b5df6609
“wangming”
```
|
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
|
search() {
this.listQuery.currentPage = 1
this.initData()
},
reset() {
this.query = {
kdrq: undefined,
kdhy: undefined,
activityId: undefined,
jksId: undefined,
kjblsId: undefined,
fkfs: undefined,
sfskdd: undefined,
isEffective: '1'
}
this.listQuery = { currentPage: 1, pageSize: 10, sort: 'desc', sidx: '' }
this.initData()
}
|
ad197adf
“wangming”
完成了基本的门店PC的设计
|
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
}
}
</script>
<style lang="scss" scoped>
::v-deep .billing-list-dialog { max-width: 1600px; margin-top: 3vh !important; border-radius: 20px; padding: 0; background: radial-gradient(circle at 0 0, rgba(255,255,255,0.96) 0, rgba(248,250,252,0.98) 40%, rgba(241,245,249,0.98) 100%); box-shadow: 0 24px 48px rgba(15,23,42,0.18), 0 0 0 1px rgba(255,255,255,0.9); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); }
::v-deep .el-dialog__header { display: none; }
::v-deep .el-dialog__body { padding: 0; }
.dialog-inner { display: flex; flex-direction: column; max-height: 92vh; }
.dialog-header { flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; margin: 18px 22px 0; padding: 10px 14px; border-radius: 14px; background: rgba(219,234,254,0.96); }
.dialog-title { font-size: 17px; font-weight: 600; color: #0f172a; }
.dialog-close { cursor: pointer; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 999px; color: #64748b; transition: all 0.15s; &:hover { background: rgba(0,0,0,0.06); color: #0f172a; } }
.dialog-search { flex-shrink: 0; padding: 12px 22px 4px; }
.dialog-content { flex: 1; min-height: 0; overflow: auto; padding: 0 22px; }
.dialog-footer { flex-shrink: 0; display: flex; align-items: center; justify-content: flex-end; padding: 10px 22px 14px; border-top: 1px solid rgba(229,231,235,0.6); }
.expand-box { padding: 14px; background: #fafafa; border-radius: 8px; margin: 6px 0; .expand-title { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #303133; margin-bottom: 10px; i { color: #409EFF; } } }
.expand-empty { padding: 16px; text-align: center; color: #909399; font-size: 13px; i { margin-right: 4px; } }
::v-deep .billing-list-dialog .el-input__inner { border-radius: 999px; height: 32px; line-height: 32px; border-color: #e5e7eb; background-color: #f9fafb; &:focus { border-color: #2563eb; box-shadow: 0 0 0 1px rgba(37,99,235,0.18); } }
::v-deep .billing-list-dialog .el-button--primary { border-radius: 999px; background: #2563eb; border-color: #2563eb; box-shadow: 0 4px 10px rgba(37,99,235,0.35); }
::v-deep .billing-list-dialog .el-button--default { border-radius: 999px; }
::v-deep .billing-list-dialog .el-form-item { margin-bottom: 8px; }
::v-deep .billing-list-dialog .el-form-item__label { white-space: nowrap; }
::v-deep .billing-list-dialog .el-range-editor.el-input__inner { border-radius: 999px; }
</style>
|