Blame view

绿纤uni-app/pagesA/salary-query/salary-query.vue 59.2 KB
6983478d   李宇   最新
1
2
  <template>
  	<view class="page">
6a231974   李宇   最新
3
  		<view class="content-wrapper">
6983478d   李宇   最新
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
  			<!-- 查询条件 -->
  			<view class="warpboxss">
  				<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  					<view><text class="warpboxs-small-title-line"></text>查询条件</view>
  				</view>
  				<view class="query-section">
  					<view class="form-item">
  						<text class="label">月份</text>
  						<picker style="flex: 1;" mode="date" fields="month" :value="queryMonth" @change="onMonthChange">
  							<view class="picker-view">
  								<text>{{ queryMonthText || '请选择月份' }}</text>
  								<u-icon name="arrow-down" size="14" color="#666"></u-icon>
  							</view>
  						</picker>
  					</view>
  					<view class="query-btn" @click="handleQuery">
  						<u-icon name="search" size="18" color="#fff"></u-icon>
  						<text>查询</text>
  					</view>
  				</view>
  			</view>
  
  			<!-- 工资详情 -->
  			<view class="salary-detail" v-if="salaryData">
  				<!-- 基本信息 -->
  				<view class="warpboxss">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>基本信息</view>
  					</view>
  					<view class="info-card">
6a231974   李宇   最新
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  						<view class="info-row">
  							<text class="info-label">员工姓名:</text>
  							<text class="info-value">{{ salaryData.EmployeeName || '无' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店名称:</text>
  							<text class="info-value">{{ salaryData.StoreName || '无' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">岗位:</text>
  							<text class="info-value">{{ salaryData.Position || '无' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">确认状态:</text>
  							<text class="info-value"
  								:class="{'confirmed-status': salaryData.EmployeeConfirmStatus === 1, 'unconfirmed-status': salaryData.EmployeeConfirmStatus !== 1}">
  								{{ salaryData.EmployeeConfirmStatus === 1 ? '已确认' : '未确认' }}
  							</text>
  						</view>
  						<view class="info-row highlight-row">
  							<text class="info-label">实发工资:</text>
  							<text class="info-value highlight">¥{{ formatMoney(salaryData.ActualSalary) }}</text>
  						</view>
6983478d   李宇   最新
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
  					</view>
  				</view>
  
  				<!-- 业绩信息 - 健康师 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'healthCoach'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>业绩信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">金三角战队:</text>
  							<text class="info-value">{{ salaryData.GoldTriangleTeam || '无' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">基础业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.BasePerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">合作业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CooperationPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">实际基础业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ActualBasePerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">实际合作业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ActualCooperationPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">新客业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.NewCustomerPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">升单业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.UpgradePerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreTotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">队伍业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TeamPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">占比:</text>
  							<text class="info-value">{{ formatPercent(salaryData.Percentage) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 消耗数据 - 健康师 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'healthCoach'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>消耗数据</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">消耗:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.Consumption) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">项目数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.ProjectCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">到店人头:</text>
  							<text class="info-value">{{ formatNumber(salaryData.CustomerCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">在店天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.WorkingDays) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">请假天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.LeaveDays) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">日均消耗:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.DailyAverageConsumption) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">日均项目数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.DailyAverageProjectCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">战队总消耗:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TeamTotalConsumption) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 业绩信息 - 店助 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'assistant'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>门店业绩信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">门店总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreTotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店开单业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreBillingPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店退卡业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreRefundPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店生命线:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreLifeline) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">业绩完成率:</text>
  							<text class="info-value">{{ formatPercent(salaryData.PerformanceCompletionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.CommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CommissionAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">进店消耗人数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.HeadCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">第一阶段目标:</text>
  							<text class="info-value">{{ formatNumber(salaryData.Stage1TargetHeadCount) }}人</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">第二阶段目标:</text>
  							<text class="info-value">{{ formatNumber(salaryData.Stage2TargetHeadCount) }}人</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">达到第一阶段:</text>
  							<text class="info-value">{{ salaryData.ReachedStage1 || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">达到第二阶段:</text>
  							<text class="info-value">{{ salaryData.ReachedStage2 || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">阶段奖励金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StageRewardAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">第一阶段奖励:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.Stage1Reward) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">第二阶段奖励:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.Stage2Reward) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 业绩信息 - 主任 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'director'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>门店业绩信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">门店总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreTotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店开单业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreBillingPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店退卡业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreRefundPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店生命线:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreLifeline) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">业绩完成率:</text>
  							<text class="info-value">{{ formatPercent(salaryData.PerformanceCompletionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">业绩是否达标:</text>
  							<text class="info-value">{{ salaryData.PerformanceReached || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">人头是否达标:</text>
  							<text class="info-value">{{ salaryData.HeadCountReached || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">消耗是否达标:</text>
  							<text class="info-value">{{ salaryData.ConsumeReached || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">考核扣款金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.AssessmentDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">未达标指标数量:</text>
  							<text class="info-value">{{ formatNumber(salaryData.UnreachedIndicatorCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">进店消耗人数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.HeadCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">目标人头数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.TargetHeadCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店消耗金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreConsume) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">目标消耗金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TargetConsume) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 业绩信息 - 店长 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'storeManager'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>门店业绩信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">门店总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreTotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店开单业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreBillingPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店退卡业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreRefundPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店生命线:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreLifeline) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">业绩完成率:</text>
  							<text class="info-value">{{ formatPercent(salaryData.PerformanceCompletionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">业绩是否达标:</text>
  							<text class="info-value">{{ salaryData.PerformanceReached || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">人头是否达标:</text>
  							<text class="info-value">{{ salaryData.HeadCountReached || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">消耗是否达标:</text>
  							<text class="info-value">{{ salaryData.ConsumeReached || '否' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">考核扣款金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.AssessmentDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">未达标指标数量:</text>
  							<text class="info-value">{{ formatNumber(salaryData.UnreachedIndicatorCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">进店消耗人数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.HeadCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">目标人头数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.TargetHeadCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店消耗金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreConsume) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">目标消耗金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TargetConsume) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">销售业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.SalesPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">产品物料:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ProductMaterial) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">合作项目成本:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CooperationCost) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">店内支出:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreExpense) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">洗毛巾费用:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.LaundryCost) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">毛利:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GrossProfit) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 业绩信息 - 大项目部老师 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'majorProjectTeacher'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>业绩信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">开单业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.OrderAchievement) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">消耗业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ConsumeAchievement) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">退卡业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.RefundAchievement) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">在店天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.WorkingDays) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">请假天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.LeaveDays) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 业绩信息 - 大项目主管 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'majorProjectDirector'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>业绩信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">开单金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.BillingAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">退卡金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.RefundAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">在店天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.WorkingDays) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">请假天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.LeaveDays) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 业绩信息 - 科技老师 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'techTeacher'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>业绩信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">开单业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.OrderAchievement) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">消耗业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ConsumeAchievement) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">退卡业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.RefundAchievement) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">总业绩:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalPerformance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">项目数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.ProjectCount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">在店天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.WorkingDays) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">请假天数:</text>
  							<text class="info-value">{{ formatNumber(salaryData.LeaveDays) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 提成明细 - 健康师 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'healthCoach'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>提成明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">提点:</text>
  							<text class="info-value">{{ formatPercent(salaryData.CommissionPoint) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">基础业绩提成:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.BasePerformanceCommission) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">合作业绩提成:</text>
6a231974   李宇   最新
492
493
  							<text
  								class="info-value">¥{{ formatMoney(salaryData.CooperationPerformanceCommission) }}</text>
6983478d   李宇   最新
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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
  						</view>
  						<view class="info-row">
  							<text class="info-label">顾问提成:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ConsultantCommission) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">新客业绩提成:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.NewCustomerCommission) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">升单业绩提成:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.UpgradeCommission) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">门店T区提成:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StoreTZoneCommission) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalCommission) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 提成明细 - 科技老师 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'techTeacher'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>提成明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">业绩提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.PerformanceCommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">业绩提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.PerformanceCommissionAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">消耗提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.ConsumeCommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">消耗提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ConsumeCommissionAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalCommission) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 提成明细 - 主任 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'director'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>提成明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">≤生命线部分提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.CommissionRateBelowLifeline) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">>生命线部分提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.CommissionRateAboveLifeline) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">≤生命线部分提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CommissionAmountBelowLifeline) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">>生命线部分提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CommissionAmountAboveLifeline) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成总金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalCommissionAmount) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 提成明细 - 店长 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'storeManager'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>提成明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.CommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CommissionAmount) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 提成明细 - 大项目部老师 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'majorProjectTeacher'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>提成明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">业绩提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.PerformanceCommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">业绩提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.PerformanceCommissionAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalCommission) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 提成明细 - 大项目主管 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'majorProjectDirector'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>提成明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.CommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CommissionAmount) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 提成明细 - 科技部总经理 -->
  				<view class="warpboxss" v-if="currentSalaryType === 'techGeneralManager'">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>提成明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">溯源金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TraceabilityAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">Cell金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CellAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">溯源金额提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.TraceabilityCommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">溯源金额提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TraceabilityCommissionAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">Cell金额提成比例:</text>
  							<text class="info-value">{{ formatPercent(salaryData.CellCommissionRate) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">Cell金额提成金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CellCommissionAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">提成合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalCommission) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 工资明细 -->
  				<view class="warpboxss">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>工资明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">健康师底薪:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.HealthCoachBaseSalary) }}</text>
  						</view>
  						<view class="info-row" v-else>
  							<text class="info-label">底薪:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.BaseSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'techTeacher'">
  							<text class="info-label">底薪档位:</text>
  							<text class="info-value">{{ formatNumber(salaryData.BaseSalaryLevel) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'assistant'">
  							<text class="info-label">手机管理费:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.PhoneManagementFee) }}</text>
  						</view>
6a231974   李宇   最新
690
691
  						<view class="info-row"
  							v-if="currentSalaryType === 'healthCoach' || currentSalaryType === 'techTeacher' || currentSalaryType === 'majorProjectTeacher'">
6983478d   李宇   最新
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
  							<text class="info-label">手工费:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.HandworkFee) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">额外手工费:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.OutherHandworkFee) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType !== 'healthCoach'">
  							<text class="info-label">提成合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalCommission) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">核算应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CalculatedGrossSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">保底工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">保底请假扣款:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedLeaveDeduction) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">保底底薪:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedBaseSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">保底补差:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedSupplement) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'healthCoach'">
  							<text class="info-label">最终应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.FinalGrossSalary) }}</text>
  						</view>
6a231974   李宇   最新
727
728
  						<view class="info-row"
  							v-if="currentSalaryType === 'assistant' || currentSalaryType === 'director' || currentSalaryType === 'storeManager'">
6983478d   李宇   最新
729
730
731
  							<text class="info-label">应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GrossSalary) }}</text>
  						</view>
6a231974   李宇   最新
732
733
  						<view class="info-row"
  							v-if="currentSalaryType === 'director' || currentSalaryType === 'storeManager'">
6983478d   李宇   最新
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
  							<text class="info-label">实际底薪:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ActualBaseSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'storeManager'">
  							<text class="info-label">旗舰店负奖励:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.FlagshipStoreDeduction) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'majorProjectTeacher'">
  							<text class="info-label">核算应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CalculatedGrossSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'majorProjectTeacher'">
  							<text class="info-label">保底工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'majorProjectTeacher'">
  							<text class="info-label">保底请假扣款:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedLeaveDeduction) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'majorProjectTeacher'">
  							<text class="info-label">保底底薪:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedBaseSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'majorProjectTeacher'">
  							<text class="info-label">保底补差:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedSupplement) }}</text>
  						</view>
6a231974   李宇   最新
761
762
  						<view class="info-row"
  							v-if="currentSalaryType === 'majorProjectTeacher' || currentSalaryType === 'businessUnitManager' || currentSalaryType === 'techGeneralManager' || currentSalaryType === 'majorProjectDirector'">
6983478d   李宇   最新
763
764
765
  							<text class="info-label">核算应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CalculatedGrossSalary) }}</text>
  						</view>
6a231974   李宇   最新
766
767
  						<view class="info-row"
  							v-if="currentSalaryType === 'majorProjectTeacher' || currentSalaryType === 'businessUnitManager' || currentSalaryType === 'techGeneralManager' || currentSalaryType === 'majorProjectDirector'">
6983478d   李宇   最新
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
  							<text class="info-label">最终应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.FinalGrossSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'techTeacher'">
  							<text class="info-label">核算应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.CalculatedGrossSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'techTeacher'">
  							<text class="info-label">保底工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'techTeacher'">
  							<text class="info-label">保底请假扣款:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedLeaveDeduction) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'techTeacher'">
  							<text class="info-label">保底底薪:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedBaseSalary) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'techTeacher'">
  							<text class="info-label">保底补差:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.GuaranteedSupplement) }}</text>
  						</view>
  						<view class="info-row" v-if="currentSalaryType === 'techTeacher'">
  							<text class="info-label">最终应发工资:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.FinalGrossSalary) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">补贴合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalSubsidy) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">扣款合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalDeduction) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 补贴明细 -->
6a231974   李宇   最新
807
808
  				<view class="warpboxss"
  					v-if="currentSalaryType === 'healthCoach' || currentSalaryType === 'techTeacher' || currentSalaryType === 'majorProjectTeacher' || currentSalaryType === 'businessUnitManager' || currentSalaryType === 'techGeneralManager' || currentSalaryType === 'majorProjectDirector'">
6983478d   李宇   最新
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>补贴明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">车补:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TransportationAllowance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">少休费:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.LessRest) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">全勤奖:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.FullAttendance) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">当月培训补贴:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.MonthlyTrainingSubsidy) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">当月交通补贴:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.MonthlyTransportSubsidy) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">上月培训补贴:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.LastMonthTrainingSubsidy) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">上月交通补贴:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.LastMonthTransportSubsidy) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">补贴合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalSubsidy) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 扣款明细 -->
6a231974   李宇   最新
849
850
  				<view class="warpboxss"
  					v-if="currentSalaryType === 'healthCoach' || currentSalaryType === 'techTeacher' || currentSalaryType === 'majorProjectTeacher' || currentSalaryType === 'businessUnitManager' || currentSalaryType === 'techGeneralManager' || currentSalaryType === 'majorProjectDirector'">
6983478d   李宇   最新
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>扣款明细</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">缺卡扣款:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.MissingCard) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">迟到扣款:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.LateArrival) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">请假扣款:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.LeaveDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">扣社保:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.SocialInsuranceDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">扣除奖励:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.RewardDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">扣住宿费:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.AccommodationDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">扣学习期费用:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.StudyPeriodDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">扣工作服费用:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.WorkClothesDeduction) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">扣款合计:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.TotalDeduction) }}</text>
  						</view>
  					</view>
  				</view>
  
  				<!-- 其他信息 -->
  				<view class="warpboxss">
  					<view class="warpboxs-small-title" style="margin-bottom: 30rpx;">
  						<view><text class="warpboxs-small-title-line"></text>其他信息</view>
  					</view>
  					<view class="info-card">
  						<view class="info-row">
  							<text class="info-label">发奖金:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.Bonus) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">退手机押金:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ReturnPhoneDeposit) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">退住宿押金:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.ReturnAccommodationDeposit) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">当月是否发放:</text>
  							<text class="info-value">{{ salaryData.MonthlyPaymentStatus || '无' }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">支付金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.PaidAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">待支付金额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.PendingAmount) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">补发上月:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.LastMonthSupplement) }}</text>
  						</view>
  						<view class="info-row">
  							<text class="info-label">当月支付总额:</text>
  							<text class="info-value">¥{{ formatMoney(salaryData.MonthlyTotalPayment) }}</text>
  						</view>
  					</view>
  				</view>
  
6a231974   李宇   最新
935
936
937
938
939
940
  			</view>
  
  			<!-- 确认按钮/状态 - 固定在底部 -->
  			<view class="confirm-bottom-wrapper" v-if="salaryData">
  				<view class="warpboxss confirm-bottom"
  					v-if="salaryData.IsLocked === 1 && salaryData.EmployeeConfirmStatus !== 1">
6983478d   李宇   最新
941
942
943
944
945
946
947
  					<view class="confirm-section">
  						<view class="confirm-btn" @click="showConfirmDialog = true">
  							<u-icon name="checkmark-circle" size="18" color="#fff"></u-icon>
  							<text>确认工资</text>
  						</view>
  					</view>
  				</view>
6a231974   李宇   最新
948
  				<view class="warpboxss confirm-bottom" v-else-if="salaryData.EmployeeConfirmStatus === 1">
6983478d   李宇   最新
949
  					<view class="confirm-status">
6a231974   李宇   最新
950
951
952
953
954
955
956
957
  						<u-icon name="checkmark-circle-fill" size="24" color="#67C23A"></u-icon>
  						<text class="confirmed-text">工资已确认</text>
  					</view>
  				</view>
  				<view class="warpboxss confirm-bottom" v-else-if="salaryData.IsLocked !== 1">
  					<view class="confirm-status waiting-status">
  						<u-icon name="clock" size="24" color="#E6A23C"></u-icon>
  						<text class="waiting-text">等待锁定中,锁定后可确认</text>
6983478d   李宇   最新
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
  					</view>
  				</view>
  			</view>
  
  			<!-- 无数据提示 -->
  			<view class="no-data" v-if="!loading && !salaryData">
  				<u-icon name="file-text" size="60" color="#ccc"></u-icon>
  				<text>暂无工资数据</text>
  			</view>
  
  			<!-- 加载中 -->
  			<view class="loading" v-if="loading">
  				<u-loading-icon mode="spinner" color="#409EFF"></u-loading-icon>
  				<text>查询中...</text>
  			</view>
  		</view>
  
  		<!-- 确认对话框 -->
6a231974   李宇   最新
976
977
  		<u-popup :show="showConfirmDialog" @close="showConfirmDialog = false" mode="center" border-radius="20"
  			:close-on-click-overlay="true">
6983478d   李宇   最新
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
  			<view class="confirm-dialog">
  				<view class="dialog-title">确认工资</view>
  				<view class="dialog-content">
  					<view class="dialog-text">确认后工资数据将不可再修改,是否确认?</view>
  					<view class="dialog-input">
  						<text class="input-label">备注(可选):</text>
  						<textarea v-model="confirmRemark" placeholder="请输入备注信息" class="textarea"></textarea>
  					</view>
  				</view>
  				<view class="dialog-footer">
  					<view class="dialog-btn cancel-btn" @click="showConfirmDialog = false">取消</view>
  					<view class="dialog-btn confirm-btn" @click="handleConfirm">确定</view>
  				</view>
  			</view>
  		</u-popup>
  	</view>
  </template>
  
  <script>
6a231974   李宇   最新
997
998
999
1000
1001
1002
1003
1004
  	import CustomNavbar from '@/components/custom-navbar/custom-navbar.vue'
  	import request from '@/service/request.js'
  	import config from '@/common/config.js'
  
  	export default {
  		components: {
  			CustomNavbar
  		},
6983478d   李宇   最新
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
  		data() {
  			return {
  				navbarHeightRpx: 0,
  				queryMonth: '',
  				currentSalaryType: '', // 根据用户角色自动判断
  				salaryData: null,
  				loading: false,
  				showConfirmDialog: false,
  				confirmRemark: '',
  				employeeId: '', // 从用户信息获取
  				userRole: '' // 用户角色
  			}
  		},
6a231974   李宇   最新
1018
1019
1020
1021
  		computed: {
  			contentTopMargin() {
  				if (this.navbarHeightRpx > 0) {
  					return (this.navbarHeightRpx + 20) + 'rpx'
6983478d   李宇   最新
1022
  				}
6a231974   李宇   最新
1023
1024
1025
1026
1027
1028
  				return '100rpx'
  			},
  			queryMonthText() {
  				if (!this.queryMonth) return ''
  				const [year, month] = this.queryMonth.split('-')
  				return `${year}年${parseInt(month)}月`
6983478d   李宇   最新
1029
1030
  			}
  		},
6a231974   李宇   最新
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
  		onLoad() {
  			// 获取当前用户信息
  			this.getUserInfo()
  			// 初始化日期为当前年月
  			const now = new Date()
  			this.queryMonth = `${now.getFullYear()}-${String(now.getMonth() + 1).padStart(2, '0')}`
  			this.handleQuery()
  		},
  		methods: {
  			handleNavbarHeightChange(heightInfo) {
  				this.navbarHeightRpx = heightInfo.rpx || 0
  			},
  			onMonthChange(e) {
  				this.queryMonth = e.detail.value
  			},
  			async getUserInfo() {
  				try {
  					const userInfo = uni.getStorageSync('userInfo')
  					const newuserInfo = uni.getStorageSync('newuserInfo') || {}
  
  					if (userInfo && userInfo.userId) {
  						this.employeeId = userInfo.userId
  					}
  
  					// 根据用户角色判断工资类型
  					const role = newuserInfo.gw || ''
  					this.userRole = role
  
  					if (role === '健康师') {
  						this.currentSalaryType = 'healthCoach'
  					} else if (role === '店助' || role === '店助主任') {
  						this.currentSalaryType = 'assistant'
  					} else if (role === '科技老师') {
  						this.currentSalaryType = 'techTeacher'
  					} else if (role === '主任') {
  						this.currentSalaryType = 'director'
  					} else if (role === '店长') {
  						this.currentSalaryType = 'storeManager'
  					} else if (role === '大项目部老师') {
  						this.currentSalaryType = 'majorProjectTeacher'
  					} else if (role === '事业部总经理' || role === '事业部经理') {
  						this.currentSalaryType = 'businessUnitManager'
  					} else if (role === '科技部总经理') {
  						this.currentSalaryType = 'techGeneralManager'
  					} else if (role === '主管') {
  						this.currentSalaryType = 'majorProjectDirector'
  					} else {
  						// 默认健康师
  						this.currentSalaryType = 'healthCoach'
  					}
  				} catch (e) {
  					console.error('获取用户信息失败', e)
6983478d   李宇   最新
1083
  				}
6a231974   李宇   最新
1084
1085
1086
1087
1088
1089
1090
1091
  			},
  			async handleQuery() {
  				if (!this.queryMonth) {
  					uni.showToast({
  						icon: 'none',
  						title: '请选择月份'
  					})
  					return
6983478d   李宇   最新
1092
  				}
6a231974   李宇   最新
1093
  				if (!this.employeeId) {
6983478d   李宇   最新
1094
1095
  					uni.showToast({
  						icon: 'none',
6a231974   李宇   最新
1096
  						title: '未获取到员工信息'
6983478d   李宇   最新
1097
  					})
6a231974   李宇   最新
1098
  					return
6983478d   李宇   最新
1099
  				}
6a231974   李宇   最新
1100
1101
1102
1103
1104
1105
  				if (!this.currentSalaryType) {
  					uni.showToast({
  						icon: 'none',
  						title: '无法识别您的岗位类型,请联系管理员'
  					})
  					return
6983478d   李宇   最新
1106
1107
  				}
  
6a231974   李宇   最新
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
  				this.loading = true
  				this.salaryData = null
  
  				try {
  					const [year, month] = this.queryMonth.split('-').map(v => parseInt(v))
  
  					let url = ''
  					if (this.currentSalaryType === 'healthCoach') {
  						url = `/api/Extend/lqsalary/query-by-employee`
  					} else if (this.currentSalaryType === 'assistant') {
  						url = `/api/Extend/lqassistantsalary/query-by-employee`
  					} else if (this.currentSalaryType === 'techTeacher') {
  						url = `/api/Extend/lqtechteachersalary/query-by-employee`
  					} else if (this.currentSalaryType === 'director') {
  						url = `/api/Extend/lqdirectorsalary/query-by-employee`
  					} else if (this.currentSalaryType === 'storeManager') {
  						url = `/api/Extend/lqstoremanagersalary/query-by-employee`
  					} else if (this.currentSalaryType === 'majorProjectTeacher') {
  						url = `/api/Extend/lqmajorprojectteachersalary/query-by-employee`
  					} else if (this.currentSalaryType === 'businessUnitManager') {
  						url = `/api/Extend/lqbusinessunitmanagersalary/query-by-employee`
  					} else if (this.currentSalaryType === 'techGeneralManager') {
  						url = `/api/Extend/lqtechgeneralmanagersalary/query-by-employee`
  					} else if (this.currentSalaryType === 'majorProjectDirector') {
  						url = `/api/Extend/lqmajorprojectdirectorsalary/query-by-employee`
  					}
  
  					const params = {
  						Year: year,
  						Month: month,
  						EmployeeId: this.employeeId
  					}
  
  					const res = await request.get(url, params)
  
  					if (res.code === 200 && res.data) {
  						this.salaryData = res.data
  					} else {
  						uni.showToast({
  							icon: 'none',
  							title: res.msg || '查询失败'
  						})
  					}
  				} catch (error) {
  					console.error('查询工资失败', error)
  					uni.showToast({
  						icon: 'none',
  						title: '查询失败,请稍后重试'
  					})
  				} finally {
  					this.loading = false
6983478d   李宇   最新
1159
  				}
6a231974   李宇   最新
1160
1161
1162
  			},
  			async handleConfirm() {
  				if (!this.salaryData || !this.salaryData.Id) {
6983478d   李宇   最新
1163
  					uni.showToast({
6a231974   李宇   最新
1164
1165
  						icon: 'none',
  						title: '工资数据异常'
6983478d   李宇   最新
1166
  					})
6a231974   李宇   最新
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
  					return
  				}
  
  				try {
  					let url = ''
  					if (this.currentSalaryType === 'healthCoach') {
  						url = `/api/Extend/lqsalary/confirm`
  					} else if (this.currentSalaryType === 'assistant') {
  						url = `/api/Extend/lqassistantsalary/confirm`
  					} else if (this.currentSalaryType === 'techTeacher') {
  						url = `/api/Extend/lqtechteachersalary/confirm`
  					} else if (this.currentSalaryType === 'director') {
  						url = `/api/Extend/lqdirectorsalary/confirm`
  					} else if (this.currentSalaryType === 'storeManager') {
  						url = `/api/Extend/lqstoremanagersalary/confirm`
  					} else if (this.currentSalaryType === 'majorProjectTeacher') {
  						url = `/api/Extend/lqmajorprojectteachersalary/confirm`
  					} else if (this.currentSalaryType === 'businessUnitManager') {
  						url = `/api/Extend/lqbusinessunitmanagersalary/confirm`
  					} else if (this.currentSalaryType === 'techGeneralManager') {
  						url = `/api/Extend/lqtechgeneralmanagersalary/confirm`
  					} else if (this.currentSalaryType === 'majorProjectDirector') {
  						url = `/api/Extend/lqmajorprojectdirectorsalary/confirm`
  					}
  
  					const params = {
  						id: this.salaryData.Id,
  						employeeId: this.employeeId,
  						remark: this.confirmRemark || ''
  					}
  
  					const res = await request.post(url, params)
  
  					if (res.code === 200 || res === '确认成功') {
  						uni.showToast({
  							icon: 'success',
  							title: '确认成功'
  						})
  						this.showConfirmDialog = false
  						this.confirmRemark = ''
  						// 重新查询数据
  						this.handleQuery()
  					} else {
  						uni.showToast({
  							icon: 'none',
  							title: res.msg || '确认失败'
  						})
  					}
  				} catch (error) {
  					console.error('确认工资失败', error)
6983478d   李宇   最新
1217
1218
  					uni.showToast({
  						icon: 'none',
6a231974   李宇   最新
1219
  						title: '确认失败,请稍后重试'
6983478d   李宇   最新
1220
1221
  					})
  				}
6a231974   李宇   最新
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
  			},
  			formatMoney(value) {
  				if (value === null || value === undefined) return '0.00'
  				return parseFloat(value).toFixed(2)
  			},
  			formatPercent(value) {
  				if (value === null || value === undefined || value === '') return '0.00%'
  				const numValue = parseFloat(value)
  				if (isNaN(numValue)) return '0.00%'
  				return (numValue * 100).toFixed(2) + '%'
  			},
  			formatNumber(value) {
  				if (value === null || value === undefined) return '0'
  				return parseFloat(value).toString()
6983478d   李宇   最新
1236
  			}
6983478d   李宇   最新
1237
1238
  		}
  	}
6983478d   李宇   最新
1239
1240
1241
  </script>
  
  <style lang="scss" scoped>
6a231974   李宇   最新
1242
1243
1244
1245
1246
  	.page {
  		min-height: 100vh;
  		background: #f5f7fa;
  		display: flex;
  		flex-direction: column;
6983478d   李宇   最新
1247
  	}
6983478d   李宇   最新
1248
  
6a231974   李宇   最新
1249
1250
1251
1252
  	.content-wrapper {
  		flex: 1;
  		padding: 20rpx;
  		padding-bottom: 160rpx;
6983478d   李宇   最新
1253
  		display: flex;
6a231974   李宇   最新
1254
1255
1256
  		flex-direction: column;
  		overflow-y: auto;
  	}
6983478d   李宇   最新
1257
  
6a231974   李宇   最新
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
  	.warpboxss {
  		margin-bottom: 30rpx;
  		background: rgba(255, 255, 255, 0.7);
  		backdrop-filter: blur(20px) saturate(180%);
  		-webkit-backdrop-filter: blur(20px) saturate(180%);
  		padding: 30rpx;
  		border-radius: 24rpx;
  		box-shadow:
  			0 8rpx 32rpx rgba(0, 0, 0, 0.08),
  			0 2rpx 8rpx rgba(0, 0, 0, 0.04);
6983478d   李宇   最新
1268
1269
  	}
  
6a231974   李宇   最新
1270
  	.warpboxs-small-title {
6983478d   李宇   最新
1271
  		display: flex;
6a231974   李宇   最新
1272
  		justify-content: space-between;
6983478d   李宇   最新
1273
  		align-items: center;
6983478d   李宇   最新
1274
  		font-size: 30rpx;
6a231974   李宇   最新
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
  		font-weight: 600;
  		color: #1f2937;
  
  		.warpboxs-small-title-line {
  			display: inline-block;
  			background: linear-gradient(180deg, #43a047 0%, #66bb6a 100%);
  			height: 26rpx;
  			width: 10rpx;
  			margin-right: 12rpx;
  			border-radius: 18rpx;
  			box-shadow:
  				0 2rpx 8rpx rgba(67, 160, 71, 0.4),
  				0 0 12rpx rgba(67, 160, 71, 0.3),
  				inset 0 1rpx 2rpx rgba(255, 255, 255, 0.3);
  			position: relative;
  
  			&::after {
  				content: '';
  				position: absolute;
  				top: 0;
  				left: 0;
  				right: 0;
  				bottom: 0;
  				border-radius: 3rpx;
  				background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  				pointer-events: none;
  			}
6983478d   李宇   最新
1302
1303
  		}
  	}
6983478d   李宇   最新
1304
  
6a231974   李宇   最新
1305
  	.query-section {
6983478d   李宇   最新
1306
  		background: transparent;
6983478d   李宇   最新
1307
1308
1309
  		padding: 0;
  		margin-bottom: 0;
  
6a231974   李宇   最新
1310
1311
  		.form-item {
  			width: 100%;
6983478d   李宇   最新
1312
1313
  			display: flex;
  			align-items: center;
6a231974   李宇   最新
1314
  			margin-bottom: 30rpx;
6983478d   李宇   最新
1315
1316
  
  			&:last-child {
6a231974   李宇   最新
1317
  				margin-bottom: 0;
6983478d   李宇   最新
1318
1319
  			}
  
6a231974   李宇   最新
1320
1321
  			.label {
  				width: 140rpx;
6983478d   李宇   最新
1322
  				font-size: 28rpx;
6a231974   李宇   最新
1323
  				color: #333;
6983478d   李宇   最新
1324
1325
1326
  				font-weight: 500;
  			}
  
6a231974   李宇   最新
1327
  			.picker-view {
6983478d   李宇   最新
1328
  				flex: 1;
6a231974   李宇   最新
1329
1330
1331
1332
1333
1334
  				display: flex;
  				align-items: center;
  				justify-content: space-between;
  				padding: 20rpx 24rpx;
  				background: #f5f7fa;
  				border-radius: 8rpx;
6983478d   李宇   最新
1335
1336
  				font-size: 28rpx;
  				color: #333;
6a231974   李宇   最新
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
  			}
  		}
  
  		.query-btn {
  			margin-top: 30rpx;
  			display: flex;
  			align-items: center;
  			justify-content: center;
  			padding: 24rpx;
  			background: linear-gradient(135deg, #409EFF 0%, #67C23A 100%);
  			border-radius: 8rpx;
  			color: #fff;
  			font-size: 30rpx;
  			font-weight: 500;
  
  			text {
  				margin-left: 10rpx;
  			}
  		}
  	}
6983478d   李宇   最新
1357
  
6a231974   李宇   最新
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
  	.salary-detail {
  		.info-card {
  			background: transparent;
  			border-radius: 12rpx;
  			padding: 0;
  			margin-bottom: 0;
  
  			.info-row {
  				display: flex;
  				align-items: center;
  				padding: 24rpx 0;
  				border-bottom: 1rpx solid rgba(0, 0, 0, 0.05);
  
  				&:last-child {
  					border-bottom: none;
  				}
  
  				&.highlight-row {
  					background: linear-gradient(135deg, rgba(255, 243, 224, 0.5) 0%, rgba(255, 224, 178, 0.5) 100%);
  					margin: 0 -30rpx;
  					padding: 24rpx 30rpx;
  					border-radius: 12rpx;
  					border-bottom: none;
  				}
  
  				.info-label {
  					// width: 180rpx;
  					font-size: 28rpx;
  					color: #666;
  					font-weight: 500;
  				}
  
  				.info-value {
  					flex: 1;
  					font-size: 28rpx;
  					color: #333;
  					text-align: right;
  					font-weight: 500;
  
  					&.highlight {
  						color: #F56C6C;
  						font-size: 36rpx;
  						font-weight: 700;
  					}
6983478d   李宇   最新
1402
1403
1404
  				}
  			}
  		}
6a231974   李宇   最新
1405
1406
1407
1408
  
  
  
  
6983478d   李宇   最新
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
  	}
  
  	.confirm-section {
  		.confirm-btn {
  			display: flex;
  			align-items: center;
  			justify-content: center;
  			padding: 28rpx;
  			background: linear-gradient(135deg, #67C23A 0%, #409EFF 100%);
  			border-radius: 12rpx;
  			color: #fff;
  			font-size: 30rpx;
  			font-weight: 600;
  			box-shadow: 0 4rpx 16rpx rgba(64, 158, 255, 0.3);
  
  			text {
  				margin-left: 10rpx;
  			}
  		}
  	}
  
6a231974   李宇   最新
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
  	.confirm-bottom-wrapper {
  		position: fixed;
  		bottom: 0;
  		left: 0;
  		right: 0;
  		z-index: 10;
  		// padding: 20rpx 20rpx 20rpx 20rpx;
  		// background: #f5f7fa;
  		box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
  		/* iOS安全区域适配 - 先写constant兼容旧版iOS */
  		padding-bottom: 20rpx;
  		padding-bottom: calc(20rpx + constant(safe-area-inset-bottom));
  		padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
  	}
  
  	.confirm-bottom {
  		margin-bottom: 0;
  	}
  
6983478d   李宇   最新
1449
  	.confirm-status {
6a231974   李宇   最新
1450
1451
1452
1453
  		display: flex;
  		align-items: center;
  		justify-content: center;
  		gap: 12rpx;
6983478d   李宇   最新
1454
  		text-align: center;
6a231974   李宇   最新
1455
  		padding:20rpx 30rpx;
6983478d   李宇   最新
1456
1457
1458
1459
1460
1461
1462
1463
  		background: linear-gradient(135deg, rgba(232, 245, 233, 0.7) 0%, rgba(200, 230, 201, 0.7) 100%);
  		border-radius: 12rpx;
  
  		.confirmed-text {
  			font-size: 30rpx;
  			color: #43a047;
  			font-weight: 600;
  		}
6a231974   李宇   最新
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
  
  		&.waiting-status {
  			background: linear-gradient(135deg, rgba(255, 243, 224, 0.7) 0%, rgba(255, 224, 178, 0.7) 100%);
  
  			.waiting-text {
  				font-size: 28rpx;
  				color: #E6A23C;
  				font-weight: 500;
  			}
  		}
6983478d   李宇   最新
1474
  	}
6a231974   李宇   最新
1475
1476
1477
1478
  
  	.confirmed-status {
  		color: #67C23A;
  		font-weight: 600;
6983478d   李宇   最新
1479
  	}
6a231974   李宇   最新
1480
1481
1482
1483
  
  	.unconfirmed-status {
  		color: #E6A23C;
  		font-weight: 500;
6983478d   李宇   最新
1484
  	}
6983478d   李宇   最新
1485
  
6a231974   李宇   最新
1486
1487
1488
1489
1490
1491
1492
1493
  	.no-data {
  		display: flex;
  		flex-direction: column;
  		align-items: center;
  		justify-content: center;
  		padding: 100rpx 0;
  		color: #999;
  		font-size: 28rpx;
6983478d   李宇   最新
1494
  
6a231974   李宇   最新
1495
1496
1497
1498
  		text {
  			margin-top: 20rpx;
  		}
  	}
6983478d   李宇   最新
1499
  
6a231974   李宇   最新
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
  	.loading {
  		display: flex;
  		flex-direction: column;
  		align-items: center;
  		justify-content: center;
  		padding: 100rpx 0;
  		color: #999;
  		font-size: 28rpx;
  
  		text {
  			margin-top: 20rpx;
6983478d   李宇   最新
1511
1512
1513
  		}
  	}
  
6a231974   李宇   最新
1514
1515
1516
1517
1518
1519
  	.confirm-dialog {
  		padding: 40rpx;
  		background: #fff;
  		border-radius: 20rpx;
  		min-width: 600rpx;
  		max-width: 90vw;
6983478d   李宇   最新
1520
  
6a231974   李宇   最新
1521
1522
1523
1524
  		.dialog-title {
  			font-size: 32rpx;
  			font-weight: 600;
  			color: #303133;
6983478d   李宇   最新
1525
  			text-align: center;
6a231974   李宇   最新
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
  			margin-bottom: 30rpx;
  			position: relative;
  			padding-bottom: 20rpx;
  
  			&::after {
  				content: '';
  				position: absolute;
  				bottom: 0;
  				left: 50%;
  				transform: translateX(-50%);
  				width: 60rpx;
  				height: 4rpx;
  				background: linear-gradient(90deg, #409EFF 0%, #67C23A 100%);
  				border-radius: 2rpx;
  			}
6983478d   李宇   最新
1541
1542
  		}
  
6a231974   李宇   最新
1543
1544
  		.dialog-content {
  			margin-bottom: 30rpx;
6983478d   李宇   最新
1545
  
6a231974   李宇   最新
1546
1547
  			.dialog-text {
  				font-size: 28rpx;
6983478d   李宇   最新
1548
  				color: #333;
6a231974   李宇   最新
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
  				margin-bottom: 30rpx;
  				line-height: 1.6;
  				text-align: center;
  			}
  
  			.dialog-input {
  				.input-label {
  					font-size: 26rpx;
  					color: #666;
  					margin-bottom: 10rpx;
  					display: block;
  				}
  
  				.textarea {
  					width: 100%;
  					min-height: 120rpx;
  					padding: 20rpx;
  					background: #f5f7fa;
  					border-radius: 8rpx;
  					font-size: 26rpx;
  					color: #333;
  					box-sizing: border-box;
  				}
6983478d   李宇   最新
1572
1573
  			}
  		}
6983478d   李宇   最新
1574
  
6a231974   李宇   最新
1575
1576
1577
1578
1579
  		.dialog-footer {
  			display: flex;
  			justify-content: space-between;
  			gap: 20rpx;
  			margin-top: 30rpx;
6983478d   李宇   最新
1580
  
6a231974   李宇   最新
1581
1582
1583
1584
1585
1586
1587
  			.dialog-btn {
  				flex: 1;
  				padding: 24rpx;
  				text-align: center;
  				border-radius: 8rpx;
  				font-size: 28rpx;
  				font-weight: 500;
6983478d   李宇   最新
1588
  
6a231974   李宇   最新
1589
1590
1591
1592
  				&.cancel-btn {
  					background: #f5f7fa;
  					color: #606266;
  				}
6983478d   李宇   最新
1593
  
6a231974   李宇   最新
1594
1595
1596
1597
  				&.confirm-btn {
  					background: linear-gradient(135deg, #409EFF 0%, #67C23A 100%);
  					color: #fff;
  				}
6983478d   李宇   最新
1598
1599
1600
  			}
  		}
  	}
6a231974   李宇   最新
1601
  </style>