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
<template>
<div class="app-container">
<!-- 搜索工作栏 -->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item :label="$t('城市名称')" prop="cityName">
<el-input v-model="queryParams.cityName" :placeholder="$t('请输入城市名称')" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item :label="$t('关键词')" prop="keywords">
<el-input v-model="queryParams.keywords" :placeholder="$t('请输入关键词')" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleQuery">{{$t('搜索')}}</el-button>
<el-button icon="el-icon-refresh" @click="resetQuery">{{$t('重置')}}</el-button>
</el-form-item>
</el-form>
<!-- 操作工具栏 -->
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
v-hasPermi="['ecw:node:create']">{{$t('新增')}}</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
v-hasPermi="['ecw:node:export']">{{$t('导出')}}</el-button>
</el-col> -->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<!-- 列表 -->
<el-table v-loading="loading" :data="list">
<el-table-column :label="$t('排序')" align="center" prop="aorder" />
<el-table-column :label="$t('网点编号')" align="center" prop="number" />
<el-table-column :label="$t('网点名称')" align="center" :prop="$l('title')" />
<el-table-column :label="$t('网点地址')" align="center" :prop="$l('address')" />
<el-table-column prop="adminId" :label="$t('负责人')" align="center">
<template slot-scope="scope">
<div>
<span>{{ scope.row.adminId ? scope.row.adminName : $t('未设置') }}</span>
<br>
<el-button v-if="!scope.row.adminId" type="text" size="mini" @click="setAdminClick(scope.row)">{{$t('设置主管')}}</el-button>
</div>
</template>
</el-table-column>
<el-table-column prop="status" :label="$t('状态')" width="100">
<template slot-scope="scope">
<el-switch v-model="scope.row.status" :active-value="CommonStatusEnum.ENABLE" :inactive-value="CommonStatusEnum.DISABLE" @change="handleStatusChange(scope.row)" />
</template>
</el-table-column>
<el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button size="mini" type="text" @click="warehouse(scope.row)"
v-hasPermi="['ecw:node:delete']">{{$t('仓库')}}</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
v-hasPermi="['ecw:node:update']">{{$t('修改')}}</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
@pagination="getList"/>
<!-- 设置主管对话框 -->
<el-dialog :title="$t('设置主管')" :visible.sync="setAdminOpen" width="900px" append-to-body>
<el-table :data="userList">
<el-table-column :label="$t('序号')" type="index" width="50" />
<el-table-column :label="$t('用户名')" align="center" prop="username" />
<el-table-column :label="$t('姓名')" align="center" prop="nickname" />
<el-table-column :label="$t('手机号')" align="center" prop="mobile" />
<el-table-column prop="loginDate" :label="$t('最近操作')" align="center">
<template slot-scope="scope">
<span>{{ new Date(scope.row.loginDate).format('yyyy-MM-dd hh:mm:ss')}}</span>
<br>
<span>{{scope.row.loginIp}}</span>
</template>
</el-table-column>
<el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="setAdmin(scope.row)"
>{{$t('设为主管')}}</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination v-show="userTotal > 0" :total="userTotal" :page.sync="userQueryParams.pageNo" :limit.sync="userQueryParams.pageSize"
@pagination="getUserList"/>
</el-dialog>
<!-- 对话框(添加 / 修改) -->
<el-dialog :title="title" :visible.sync="open" width="900px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item :label="$t('所在地区')" prop="area">
<el-select v-model="form.zhou" :placeholder="$t('请选择大洲')" @change="changeContinents">
<el-option
v-for="item in continentsList"
:key="item.id"
:label="$l(item, 'title')"
:value="item.id">
</el-option>
</el-select>
<el-select v-model="form.guojia" :placeholder="$t('请选择国家')" @change="changeCountry" v-if="form.zhou">
<el-option
v-for="item in countryList"
:key="item.id"
:label="$l(item, 'title')"
:value="item.id">
</el-option>
</el-select>
<el-select v-model="form.sheng" :placeholder="$t('请选择省')" @change="changeProvince" v-if="form.guojia">
<el-option
v-for="item in provinceList"
:key="item.id"
:label="$l(item, 'title')"
:value="item.id">
</el-option>
</el-select>
<el-select v-model="form.shi" :placeholder="$t('请选择城市')" @change="changeCity" v-if="form.sheng">
<el-option
v-for="item in cityList"
:key="item.id"
:label="$l(item, 'title')"
:value="item.id">
</el-option>
</el-select>
</el-form-item>
<el-form-item :label="$t('排序')" prop="aorder">
<el-input v-model="form.aorder" :placeholder="$t('请输入排序')" />
</el-form-item>
<el-form-item :label="$t('网点编号')" prop="number">
<el-input v-model="form.number" :placeholder="$t('请输入网点编号')" />
</el-form-item>
<el-form-item :label="$t('网点名称')" prop="titleZh">
<el-input v-model="form.titleZh" :placeholder="$t('请输入网点名称')" />
</el-form-item>
<el-form-item :label="$t('英文名称')" prop="titleEn">
<el-input v-model="form.titleEn" :placeholder="$t('请输入英文名称')" />
</el-form-item>
<el-form-item :label="$t('副名称')" prop="titlesZh">
<el-input v-model="form.titlesZh" :placeholder="$t('请输入副名称')" />
</el-form-item>
<el-form-item :label="$t('英文副名称')" prop="titlesEn">
<el-input v-model="form.titlesEn" :placeholder="$t('请输入英文副名称')" />
</el-form-item>
<el-form-item :label="$t('网点地址')" prop="addressZh">
<el-input v-model="form.addressZh" :placeholder="$t('请输入网点地址')" />
</el-form-item>
<el-form-item :label="$t('英文地址')" prop="addressEn">
<el-input v-model="form.addressEn" :placeholder="$t('请输入英文地址')" />
</el-form-item>
<el-form-item :label="$t('网点属性')" prop="tradeType">
<el-select v-model="form.tradeType" :placeholder="$t('请选择')">
<el-option v-for="dict in regionTypeDatas" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select>
</el-form-item>
<el-form-item :label="$t('服务内容')" prop="checkList">
<el-checkbox-group v-model="form.checkList">
<el-checkbox v-for="dict in transportDatas" :label="dict.value" :key="dict.value" :value="dict.value" name="freight"> {{$l(dict, 'label')}}</el-checkbox>
</el-checkbox-group>
</el-form-item>
<el-form-item :label="$t('网点详情')" prop="contentZh">
<editor v-model="form.contentZh" :min-height="150"/>
</el-form-item>
<el-form-item :label="$t('英文详情')" prop="contentEn">
<editor v-model="form.contentEn" :min-height="150"/>
</el-form-item>
<el-form-item :label="$t('上班时间')" prop="worktime">
<el-input v-model="form.worktime" :placeholder="$t('请输入上班时间')" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">{{$t('确定')}}</el-button>
<el-button @click="cancel">{{$t('取消')}}</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { createNode, updateNode, deleteNode, getNode, getNodePage, exportNodeExcel } from "@/api/ecw/node";
import { getListTree } from "@/api/ecw/region";
import { getDictDatas, DICT_TYPE } from '@/utils/dict';
import {CommonStatusEnum} from '@/utils/constants'
import {listUser} from "@/api/system/user";
import Editor from '@/components/Editor';
export default {
name: "Node",
components: {
Editor,
},
data() {
const areaCheck = (rule, value, callback) => {
if(!this.form.zhou) {
callback(new Error(this.$t('请选择大洲')));
} else if(!this.form.guojia){
callback(new Error(this.$t('请选择国家/地区')));
} else if(!this.form.sheng){
callback(new Error(this.$t('请选择省市')));
} else {
callback();
}
};
return {
// 遮罩层
loading: true,
// 导出遮罩层
exportLoading: false,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
//洲际列表
continentsList:[],
//国家列表
countryList:[],
//省信息列表
provinceList: [],
//市信息列表
cityList: [],
// 服务网点列表
list: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
//社否显示设置主管
updateRow:null,
userList:[],
userTotal: 0,
setAdminOpen: false,
userQueryParams: {
pageNo: 1,
pageSize: 10
},
dateRangeCreateTime: [],
// 查询参数
queryParams: {
pageNo: 1,
pageSize: 10
},
// 表单参数
form: {
checkList:[],
},
// 表单校验
rules: {
area: [{ validator:areaCheck, required: true, trigger: "blur" }],
aorder: [{ required: true, message: this.$t("排序不能为空"), trigger: "blur" }],
number: [{ required: true, message: this.$t("网点编号不能为空"), trigger: "blur" }],
titleZh: [{ required: true, message: this.$t("网点名称不能为空"), trigger: "blur" }],
titleEn: [{ required: true, message: this.$t("英文名称不能为空"), trigger: "blur" }],
titlesZh: [{ required: true, message: this.$t("副名称不能为空"), trigger: "blur" }],
titlesEn: [{ required: true, message: this.$t("英文副名称不能为空"), trigger: "blur" }],
addressZh: [{ required: true, message: this.$t("网点地址不能为空"), trigger: "blur" }],
addressEn: [{ required: true, message: this.$t("英文地址不能为空"), trigger: "blur" }],
contentZh: [{ required: true, message: this.$t("网点详情不能为空"), trigger: "blur" }],
contentEn: [{ required: true, message: this.$t("英文详情不能为空"), trigger: "blur" }],
worktime: [{ required: true, message: this.$t("上班时间不能为空"), trigger: "blur" }],
tradeType: [{ required: true, message: this.$t('请选择网点属性'), trigger: 'change' }],
checkList: [
{ type: 'array', required: true, message: this.$t('请至少选择一个服务内容'), trigger: 'change' }
],
},
// 枚举
CommonStatusEnum: CommonStatusEnum,
// 数据字典
statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS),
regionTypeDatas: getDictDatas(DICT_TYPE.ECW_REGION_TYPE),
transportDatas: getDictDatas(DICT_TYPE.ECW_TRANSPORT_TYPE)
};
},
created() {
this.getList();
this.getContinentsList();
},
watch: {
'form.zhou'(newV, oldV) {
if(oldV && oldV != newV) {
this.form.guojia = null;
this.form.sheng = null;
this.form.shi = null;
}
},
'form.guojia'(newV, oldV) {
if(oldV && oldV != newV) {
this.form.sheng = null;
this.form.shi = null;
}
},
'form.sheng'(newV, oldV) {
if(oldV && oldV != newV) {
this.form.shi = null;
}
}
},
methods: {
/** 查询列表 */
getList() {
this.loading = true;
// 处理查询参数
let params = {...this.queryParams};
this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
// 执行查询
getNodePage(params).then(response => {
this.list = response.data.list;
this.total = response.data.total;
this.loading = false;
});
},
//跳转仓库
warehouse(row) {
let nodeId = row.id;
this.$router.push({
path:'/node/warehouse-list',
query: {
nodeId:nodeId
}
})
},
//获取用户列表
getUserList() {
listUser(this.userQueryParams).then(response => {
this.userList = response.data.list;
this.userTotal = response.data.total;
});
},
//设置主管
setAdminClick(row) {
this.updateRow = row;
this.setAdminOpen = true;
this.getUserList();
},
setAdmin(user) {
this.updateRow.adminId = user.id;
updateNode(this.updateRow).then(() => {
this.$set(this.updateRow, 'adminName', user.nickname);
this.$modal.msgSuccess(this.$t("设置成功"));
this.setAdminOpen = false;
}).catch(function() {
this.$modal.msgSuccess(this.$t("设置失败"));
});
},
getContinentsList() {
this.queryParams.treeType = 0;
getListTree(this.queryParams).then(response => {
this.continentsList = response.data;
});
},
changeContinents(zhou) {
for(let index in this.continentsList) {
let continent = this.continentsList[index];
if(continent.id == zhou) {
this.countryList = continent.children;
return;
}
}
},
changeCountry(countryId) {
for(let index in this.countryList) {
let country = this.countryList[index];
if(country.id == countryId) {
this.provinceList = country.children;
return;
}
}
},
changeProvince(provinceId) {
for(let index in this.provinceList) {
let province = this.provinceList[index];
if(province.id == provinceId) {
this.cityList = province.children;
return;
}
}
},
changeCity(cityId) {
for(let index in this.cityList) {
let city = this.cityList[index];
if(city.id == cityId) {
return;
}
}
},
handleStatusChange(row) {
let text = row.status === CommonStatusEnum.ENABLE ? this.$t("启用") : this.$t("停用");
this.$modal.confirm(this.$t('确认要{action}编号为{id}的数据吗?', {action: text, id: row.id})).then(function() {
return updateNode(row);
}).then(() => {
this.$modal.msgSuccess(text + ' ' + this.$t("成功"));
}).catch(function() {
row.status = row.status === CommonStatusEnum.ENABLE ? CommonStatusEnum.DISABLE
: CommonStatusEnum.ENABLE;
});
},
/** 取消按钮 */
cancel() {
this.open = false;
this.reset();
},
/** 表单重置 */
reset() {
this.form = {
id: undefined,
number: undefined,
zhou: undefined,
guojia: undefined,
sheng: undefined,
shi: undefined,
titleZh: undefined,
titleEn: undefined,
titlesZh: undefined,
titlesEn: undefined,
contentZh: undefined,
contentEn: undefined,
addressZh: undefined,
addressEn: undefined,
tradeType: undefined,
freight: undefined,
worktime: undefined,
adminId: undefined,
aorder: undefined,
checkList: []
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNo = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.dateRangeCreateTime = [];
this.resetForm("queryForm");
this.handleQuery();
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = this.$t("添加服务网点");
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id;
getNode(id).then(response => {
this.form = response.data;
this.changeContinents(response.data.zhou);
this.changeCountry(response.data.guojia);
this.changeProvince(response.data.sheng);
let ckList = response.data.freight.split(',');
this.$set(this.form, 'checkList', ckList);
this.open = true;
this.title = this.$t("修改服务网点");
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (!valid) {
return;
}
console.log(this.form);
// return;
//逗号拼接运输方式
var freight = ''
for(let i = 0; i < this.form.checkList.length; i++) {
freight += this.form.checkList[i] + ','
}
freight = freight.substring(0, freight.length - 1);
this.form.freight = freight;
// 修改的提交
if (this.form.id != null) {
updateNode(this.form).then(response => {
this.$modal.msgSuccess(this.$t("修改成功"));
this.open = false;
this.getList();
});
return;
}
// 添加的提交
createNode(this.form).then(response => {
this.$modal.msgSuccess(this.$t("新增成功"));
this.open = false;
this.getList();
});
});
},
/** 删除按钮操作 */
handleDelete(row) {
const id = row.id;
this.$modal.confirm(this.$t('是否确认删除服务网点编号为{id}的数据项?', {id})).then(function() {
return deleteNode(id);
}).then(() => {
this.getList();
this.$modal.msgSuccess(this.$t("删除成功"));
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
// 处理查询参数
let params = {...this.queryParams};
params.pageNo = undefined;
params.pageSize = undefined;
this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
// 执行导出
this.$modal.confirm(this.$t('是否确认导出所有服务网点数据项?')).then(() => {
this.exportLoading = true;
return exportNodeExcel(params);
}).then(response => {
this.$download.excel(response, '${table.classComment}.xls');
this.exportLoading = false;
}).catch(() => {});
}
}
};
</script>