freight-manage.vue
16 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
<!-- 运费管理 -->
<template>
<div class="dashboard-container waybill-list customer-list-box">
<div
class="app-container"
style="
padding-top: 0px;
"
>
<div
v-loading="listLoading"
:class="{ 'loading-box': listLoading }"
element-loading-text="加载中"
style="margin-top: 20px"
>
<el-card
v-show="dataList && dataList.length > 0"
shadow="never"
class="table-card-box"
>
<el-button
style="margin-bottom: 20px"
type="warning"
@click="handleAddModels()"
>新增模板</el-button>
<el-table
:key="tableKey"
ref="multipleTable"
:data="dataList"
fit
style="width: 100%; margin-bottom: 30px"
stripe
:header-cell-style="{ background: 'rgba(250,252,255,1)' }"
>
<div
v-show="(!dataList || dataList.length <= 0) && !listLoading"
slot="empty"
>
<img
src="@/icons/pic-kong.png"
alt="img"
style="margin-top: 20px;width: 25%;height: 25%;"
>
<p
style="
margin-top: -20px;
padding-bottom: 0px;
"
>这里空空如也</p>
</div>
<el-table-column
align="left"
label="模板类型"
min-width="140"
>
<template slot-scope="scope">
<span>{{
templateTypeList.filter(
(item) => item.value === scope.row.templateType
)[0].label
}}</span>
</template>
</el-table-column>
<el-table-column
align="left"
label="运送类型"
min-width="140"
>
<template slot-scope="scope">
<span>{{
transportTypeList.filter(
(item) => item.value === scope.row.transportType
)[0].label
}}</span>
</template>
</el-table-column>
<el-table-column
align="left"
label="关联城市"
min-width="140"
>
<template slot-scope="scope">
<span>{{
getAssociatedCityList(scope.row.associatedCityList)
}}</span>
</template>
</el-table-column>
<el-table-column
align="left"
label="首重"
min-width="160"
prop="firstWeight"
>
</el-table-column>
<el-table-column
align="left"
label="续重"
min-width="160"
prop="continuousWeight"
>
</el-table-column>
<el-table-column
align="left"
label="轻抛系数"
min-width="160"
prop="lightThrowingCoefficient"
>
</el-table-column>
<el-table-column
align="center"
fixed="right"
label="操作"
width="165"
class-name="small-padding fixed-width waybillDispatch"
>
<template slot-scope="scope">
<el-link
type="primary"
:underline="false"
@click="handleEdit(scope.row)"
>编辑</el-link>
<el-divider direction="vertical" />
<el-link
type="danger"
:underline="false"
@click="handleDelete(scope.row.id)"
>删除</el-link>
</template>
</el-table-column>
</el-table>
</el-card>
<el-dialog
:title="type === 'add' ? '新增模板' : '编辑模板'"
:visible.sync="dialogVisible"
width="600px"
:before-close="handleClose"
class="add-form-dialog"
>
<el-form
ref="dataForm"
:rules="ruleInline"
:model="formBase"
label-position="right"
label-width="130px"
style="width: 100%"
>
<el-form-item
label="模板类型"
prop="templateType"
>
<el-select
v-model="formBase.templateType"
value-key="templateType"
placeholder="请选择模板类型"
clearable
style="width: 100%"
>
<el-option
v-for="item in templateTypeList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item
label="运送类型"
prop="transportType"
>
<el-select
v-model="formBase.transportType"
value-key="transportType"
placeholder="请选择运送类型"
clearable
style="width: 100%"
>
<el-option
v-for="item in transportTypeList"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item
label="关联城市"
prop="associatedCityList"
>
<span v-if="formBase.templateType !== 3">全国</span>
<el-checkbox-group
v-else
v-model="formBase.associatedCityList"
@change="handleCheckedCitiesChange"
>
<el-checkbox
v-for="city in associatedCityList.filter(
(item) => item.value !== 1
)"
:key="city.value"
:label="city.value"
>{{ city.label }}</el-checkbox>
</el-checkbox-group>
</el-form-item>
<el-form-item
label="首重价格"
prop="firstWeight"
>
<el-input
v-model="formBase.firstWeight"
placeholder="请输入首重价格"
>
<span
slot="suffix"
style="
color: #20232a;
font-weight: 400;
font-size: 14px;
font-family: PingFangSC, PingFangSC-Regular;
margin-right: 14px;
"
>元</span>
</el-input>
</el-form-item>
<el-form-item
label="续重价格"
prop="continuousWeight"
>
<el-input
v-model="formBase.continuousWeight"
placeholder="请输入续重价格"
>
<span
slot="suffix"
style="
color: #20232a;
font-weight: 400;
font-size: 14px;
font-family: PingFangSC, PingFangSC-Regular;
margin-right: 14px;
"
>元</span>
</el-input>
</el-form-item>
<el-form-item
label="轻抛系数"
prop="lightThrowingCoefficient"
>
<el-input
v-model="formBase.lightThrowingCoefficient"
placeholder="请输入轻抛系数"
maxlength="10"
>
</el-input>
</el-form-item>
</el-form>
<div
slot="footer"
class="dialog-footer"
style="text-align: center"
>
<el-button
class="save-btn"
@click="createData"
>确认</el-button>
<el-button
class="cancel-btn"
@click="handleClose"
>取消</el-button>
</div>
</el-dialog>
<el-card
v-show="(!dataList || dataList.length <= 0) && !listLoading"
class="table-empty-box"
shadow="never"
>
<empty></empty>
</el-card>
</div>
</div>
</div>
</template>
<script>
import {
freightManageList,
freightManageOperate,
freightManageDelete
} from '@/api/transit'
export default {
data() {
return {
type: 'add',
waybillSearchFormData: {
page: 1,
pageSize: 10
},
ruleInline: {
templateType: [
{ required: true, message: '模板类型不能为空', trigger: 'blur' }
],
transportType: [
{ required: true, message: '运送类型不能为空', trigger: 'blur' }
],
associatedCityList: [
{ required: true, message: '关联城市不能为空', trigger: 'blur' }
],
firstWeight: [
{
required: true,
validator: (rule, value, callback) => {
if (value) {
const reg = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
if (!reg.test(Number(value))) {
callback(
new Error('只能输入数字类型,最多保留两位小数,请重新输入')
)
} else {
callback()
}
} else {
callback(new Error('首重价格不能为空'))
}
},
trigger: 'blur'
}
],
continuousWeight: [
{
required: true,
validator: (rule, value, callback) => {
if (value) {
const reg = /^(([1-9]{1}\d*)|(0{1}))(\.\d{1,2})?$/
if (!reg.test(value)) {
callback(
new Error('只能输入数字类型,最多保留两位小数,请重新输入')
)
} else {
callback()
}
} else {
callback(new Error('续重价格不能为空'))
}
},
trigger: 'blur'
}
],
lightThrowingCoefficient: [
{
required: true,
validator: (rule, value, callback) => {
if (value) {
const reg = /^[1-9]+[0-9]*$/
if (!reg.test(value)) {
callback(new Error('只能输入正整数,请重新输入'))
} else {
callback()
}
} else {
callback(new Error('轻抛系数不能为空'))
}
},
trigger: 'blur'
}
]
},
// 关联城市
associatedCityList: [
{
value: 1,
label: '全国'
},
{
value: 2,
label: '京津冀'
},
{
value: 3,
label: '江浙沪'
},
{
value: 4,
label: '川渝'
},
{
value: 5,
label: '黑吉辽'
}
],
// 模板类型
templateTypeList: [
{
value: 1,
label: '同城寄'
},
{
value: 2,
label: '省内寄'
},
{
value: 3,
label: '经济区互寄'
},
{
value: 4,
label: '跨省'
}
],
// 运送类型
transportTypeList: [
{
value: 1,
label: '普快'
}
],
dialogVisible: false,
tableKey: 0,
dataList: [],
formBase: {
id: '',
templateType: '',
transportType: '',
associatedCityList: [1],
firstWeight: '',
continuousWeight: '',
lightThrowingCoefficient: ''
},
listLoading: false
}
},
mounted() {
this.getList()
},
methods: {
// 删除运费模板
handleDelete(id) {
this.$confirm('确定要删除吗?', '删除确认', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(() => {
freightManageDelete(id).then((res) => {
if (String(res.code) === '200') {
this.$message.success('删除成功')
this.getList()
} else {
this.$message.error(res.msg)
}
})
})
.catch(() => {
this.$message({
type: 'info',
message: '已取消'
})
})
},
// 新增或修改运费模板
createData() {
this.$refs['dataForm'].validate(async (valid) => {
if (
// 经济区互寄必须要选择关联城市
this.formBase.templateType === 3 &&
this.formBase.associatedCityList.length === 1 &&
this.formBase.associatedCityList[0] === 1
) {
return this.$message({
message: '请选择关联城市',
type: 'error'
})
}
if (valid) {
const data = {
id: this.formBase.id,
templateType: this.formBase.templateType,
transportType: this.formBase.transportType,
associatedCityList: this.formBase.associatedCityList,
firstWeight: this.formBase.firstWeight,
continuousWeight: this.formBase.continuousWeight,
lightThrowingCoefficient: this.formBase.lightThrowingCoefficient
}
await freightManageOperate(data).then((res) => {
if (String(res.code) === '200') {
this.$message({
message: '操作成功!',
type: 'success'
})
this.handleClose()
this.getList()
} else {
this.$message({
message: res.msg,
type: 'error'
})
}
})
} else {
this.$message.error('*号为必填项!')
}
})
},
// 新增模板
handleAddModels() {
this.dialogVisible = true
this.formBase = {
templateType: '',
transportType: '',
associatedCityList: [1],
firstWeight: '',
continuousWeight: '',
lightThrowingCoefficient: ''
}
this.type = 'add'
},
// 关闭弹窗
handleClose() {
this.dialogVisible = false
this.formBase = {
templateType: '',
transportType: '',
associatedCityList: [],
firstWeight: '',
continuousWeight: '',
lightThrowingCoefficient: ''
}
},
// 更改关联城市
handleCheckedCitiesChange(value) {
this.formBase.associatedCityList = value.filter((item) => item !== 1)
},
// 编辑运费模板
handleEdit(row) {
this.dialogVisible = true
this.type = 'edit'
const arr = row.associatedCityList.map((item) => {
return Number(item)
})
this.formBase = Object.assign({}, row, { associatedCityList: arr })
},
// 获取运费模板列表
async getList() {
this.listLoading = true
const { data: res } = await freightManageList()
this.listLoading = false
// 获取数据给dataList
this.dataList = res
},
// 处理返回的关联城市的value数组转化为城市名称
getAssociatedCityList(list) {
return this.associatedCityList
.filter((item) => {
return list.findIndex((item1) => item1 === String(item.value)) !== -1
})
.map((item) => item.label)
.join(',')
}
}
}
</script>
<style lang="scss" scoped rel="stylesheet/scss">
.waybill-list {
.el-dialog__wrapper {
/deep/ .el-dialog__body {
padding-left: 0px;
}
}
}
</style>