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
| <template>
| <basic-container>
| <avue-crud
| ref="passWordCrud"
| v-model="form"
| :data="tableData"
| :option="option"
| :page.sync="page"
| :table-loading="tableLoading"
| @on-load="getTableList"
| @refresh-change="handleRefresh"
| @size-change="sizeChange"
| @current-change="currentChange"
| @row-save="rowSaveHandler"
| @row-update="rowUpdateHandler"
| >
| <template slot="menu" slot-scope="{ row, index }">
| <el-button
| icon="el-icon-edit"
| size="small"
| type="text"
| @click="handleEdit(row, index)"
| >
| 编辑
| </el-button>
| <el-button
| icon="el-icon-delete"
| size="small"
| type="text"
| @click="handleDel(row, index)"
| >
| 删除
| </el-button>
| </template>
|
|
| <template slot="name" slot-scope="{row}">
| <el-tag>{{ row.name }}</el-tag>
| </template>
| <template slot="defaultFlag" slot-scope="{row}">
| <el-tag v-if="row.defaultFlag" type="success">是</el-tag>
| <el-tag v-if="!row.defaultFlag" type="danger">否</el-tag>
| </template>
| </avue-crud>
| </basic-container>
|
| </template>
|
| <script>
| import {refDataGrid, deleteDep, addDept, updatePasswordStrateg} from "@/api/system/password/api"
| import basicOption from "@/util/basic-option";
|
| export default {
| name: "index",
| data() {
| return {
| form: {},
| tableData: [],
| option: {
| ...basicOption,
| selection: false,
| menuWidth: 150,
| editBtn: false,
| delBtn: false,
| calcHeight: -60,
| column: [
| {
| label: '策略名称',
| prop: 'name',
| sortable: true,
| span: 24,
| labelWidth: "11%",
| rules: [{
| required: true,
| message: "请输入策略名称",
| trigger: "blur"
| }]
| },
| {
| label: '密码最小长度',
| prop: 'minLength',
| sortable: true,
| span: 12,
| labelWidth: "22%",
| rules: [{
| required: true,
| validator: (rule, value, callback) => {
| this.minValue = value * 1
| if (value == "") {
| callback(new Error('请输入密码最小长度'));
| } else if (/[^\d]/g.test(value)) {
| callback(new Error('密码最小长度的输入类型只能为数字类型'));
| } else if (this.minValue >= this.maxValue && this.maxValue != 0) {
| callback(new Error('密码最小长度不能大于密码最大长度'))
| } else {
| callback();
| }
| },
| trigger: 'blur'
| }]
| },
| {
| label: '密码最大长度',
| prop: 'maxLength',
| sortable: true,
| span: 12,
| labelWidth: "28%",
| rules: [{
| required: true,
| validator: (rule, value, callback) => {
| this.maxValue = value * 1
| if (value == "") {
| callback(new Error('请输入密码最大长度'));
| } else if (this.maxValue <= this.minValue) {
| callback(new Error('密码最大长度不能小于密码最大长度'));
| } else if (/[^\d]/g.test(value)) {
| callback(new Error('密码最大长度的输入类型只能为数字类型'));
| } else {
| callback();
| }
| },
| trigger: 'change'
| }]
| },
| {
| label: '组合方式',
| prop: 'requireCharTypeText',
| sortable: true,
| display: false,
| overHidden: true,
| labelWidth: "22%",
| },
| {
| label: '组合方式',
| prop: 'requireCharType',
| type: "checkbox",
| hide: true,
| span: 12,
| labelWidth: "22%",
| change: this.handleCheckboxChange,
| rules: [{
| required: true,
| message: "请选择组合方法",
| trigger: "blur"
| }],
| dicData: [
| {
| label: '数字',
| value: "number"
| },
| {
| label: '小写字母',
| value: "lower"
| },
| {
| label: '大写字母',
| value: "upper"
| },
| {
| label: '符号',
| value: "symbol"
| },
| ]
| },
| {
| label: '必填种类',
| prop: 'requireCharCount',
| type: 'select',
| span: 12,
| labelWidth: "28%",
| sortable: true,
| change: this.handleSelectChange,
| dicData: [{
| label: '1种',
| value: 1,
| disabled: false
| },
| {
| label: '2种',
| value: 2,
| disabled: false
| },
| {
| label: '3种',
| value: 3,
| disabled: false
| },
| {
| label: '4种',
| value: 4,
| disabled: false
| }
| ]
| },
| {
| label: '过期时间(天)',
| prop: 'validDay',
| sortable: true,
| span: 12,
| labelWidth: "22%",
| rules: [{
| required: true,
| validator: (rule, value, callback) => {
| if (value == "") {
| callback(new Error('请输入过期时间'));
| } else if (/[^\d]/g.test(value)) {
| callback(new Error('过期时间的输入类型只能为数字类型'));
| } else {
| callback();
| }
| },
| trigger: 'blur'
| }]
| },
| {
| label: '提醒时间(天)',
| prop: 'remindDay',
| sortable: true,
| span: 12,
| labelWidth: "28%",
| width: 140,
| rules: [{
| required: true,
| validator: (rule, value, callback) => {
| if (value == "") {
| callback(new Error('请输入过期时间'));
| } else if (/[^\d]/g.test(value)) {
| callback(new Error('过期时间的输入类型只能为数字类型'));
| } else {
| callback();
| }
| },
| trigger: 'blur'
| }]
| },
| {
| label: '重试次数',
| prop: 'retryTime',
| sortable: true,
| span: 12,
| labelWidth: "22%",
| rules: [{
| required: true,
| validator: (rule, value, callback) => {
| if (value == "") {
| callback(new Error('重试次数'));
| } else if (/[^\d]/g.test(value)) {
| callback(new Error('重试次数的输入类型只能为数字类型'));
| } else {
| callback();
| }
| },
| trigger: 'blur'
| }]
| },
| {
| label: '锁定时间(分钟)',
| prop: 'lockTime',
| sortable: true,
| width: 150,
| span: 12,
| labelWidth: "28%",
| rules: [{
| required: true,
| validator: (rule, value, callback) => {
| if (value == "") {
| callback(new Error('请输入锁定时间'));
| } else if (/[^\d]/g.test(value)) {
| callback(new Error('锁定时间的输入类型只能为数字类型'));
| } else {
| callback();
| }
| },
| trigger: 'blur'
| }]
| },
| {
| label: '描述',
| prop: 'description',
| overHidden: true,
| type: 'textarea',
| span: 12,
| labelWidth: "22%",
| rows: 5,
| },
| {
| label: '是否为默认策略',
| prop: 'defaultFlag',
| type: 'switch',
| labelWidth: "30%",
| value: 0,
| dicData: [{
| label: '否',
| value: 0
| }, {
| label: '是',
| value: 1
| }]
| },
| ]
| },
| page: {
| currentPage: 1,
| pageSize: 10,
| total: 0,
| pageSizes: [10, 30, 50, 100],
| },
| tableLoading: false,
| checkboxlength: "", // 添加存放多选的变量,用于下拉菜单的禁用效果和必填种类是否大于组合方式然后提示用户重新选择
| selectlength: 0, // 下拉菜单的数据变量
| checkboxlist: "", // 用于防止change时间冒泡,出现两次弹窗定义的变量
| checkboxNumber: "", // 用于首次点击编辑,判断组合方式是否小于必填种类的变量
| selectNumber: "", // 存放多选的变量,效果一样,只是用作在编辑模块
| checkboxedit: "", // 用于判断是否是编辑
| editFlag: false,
| minValue: "", // 最小长度value
| maxValue: "" // 最大长度value
| }
| },
| methods: {
| // 表格初始化请求
| getTableList() {
| this.tableLoading = true;
| refDataGrid(this.page.currentPage, this.page.pageSize).then(res => {
| this.tableData = res.data.data;
| this.page.total = res.data.total;
| this.tableLoading = false;
| })
| },
|
| // 表格头部刷新
| handleRefresh() {
| this.getTableList();
| },
|
| // 条数
| sizeChange(val) {
| this.page.pageSize = val;
| },
|
| // 页码
| currentChange(val) {
| this.page.currentPage = val;
| },
|
| // 添加
| rowSaveHandler(row, done, loading) {
| row.combinations = row.requireCharType.join(',');
| delete row.requireCharType;
| addDept(row).then(res => {
| if (res.data.code === 200) {
| this.$message.success(res.data.obj);
| this.getTableList();
| done()
| }
| }).catch(err => {
| loading()
| console.log(err);
| })
| },
|
| // 编辑按钮
| handleEdit(row, index) {
| this.$refs.passWordCrud.rowEdit(row, index);
| this.editFlag = true;
| this.checkboxNumber = row.requireCharType.split(",");
| this.selectNumber = row.requireCharCount;
| },
|
| // 修改
| rowUpdateHandler(row, index, done,loading) {
| row.combinations = row.requireCharType;
| delete row.requireCharType;
| updatePasswordStrateg(row).then(res => {
| if (res.data.code === 200) {
| this.$message.success(res.data.obj);
| this.getTableList();
| done()
| }
| }).catch(err => {
| loading()
| console.log(err);
| })
| },
|
| // 删除
| handleDel(row, index) {
| let params = {
| pwdIds: row.oid
| }
|
| this.$confirm('您确定要删除当前的密码策略吗?', '提示', {
| confirmButtonText: '确定',
| cancelButtonText: '取消',
| type: 'warning'
| }).then(() => {
| deleteDep(params).then(res => {
| if (res.data.code === 200) {
| this.$message.success(res.data.obj);
| this.getTableList();
| }
| });
| }).catch(() => {
| this.$message({
| type: 'info',
| message: '已取消删除'
| });
| });
| },
|
| // 必填种类changge事件
| handleSelectChange(val) {
| this.selectlength = val.value;
| },
|
| // 添加修改 组合方式判断逻辑
| handleCheckboxChange(val) {
| const arr = this.option.column.find(item => item.prop === 'requireCharCount'); // 找到option里面必填种类的数组
| this.checkboxlength = val.value;
| this.checkboxedit = this.checkboxlength.toString().split(",");
|
| if (val.value !== undefined && val.value !== null) {
| if (this.checkboxlist === val.value) {
| return;
| } else {
| this.checkboxlist = val.value;
| if (this.selectlength > val.value.length && val.value.length > 0) {
| // 判断如果必填种类大于组合方式清空
| this.form.requireCharCount = "";
| } else if (this.selectlength > this.checkboxedit.length && this.checkboxedit.length > 0) {
| // 修改同样逻辑
| this.form.requireCharCount = "";
| }
| }
| }
|
| // 处理 必填种类选项禁用
| if (val.value !== undefined && val.value !== null) {
| if (val.value.length === 1) {
| this.setDisabled(arr, [0]);
| } else if (val.value.length === 2) {
| this.setDisabled(arr, [0, 1]);
| } else if (val.value.length === 3) {
| this.setDisabled(arr, [0, 1, 2]);
| } else if (val.value.length === 4) {
| this.setDisabled(arr, [0, 1, 2, 3]);
| } else if (val.value.length === 0) {
| this.setDisabled(arr, [-1]);
| }
| } else if (this.checkboxNumber.length !== 0) {
| this.setDisabled(arr, [0, 1, 2, 3]);
| }
|
| // 修改同理
| if (this.editFlag) {
| if (this.checkboxedit.length === 1) {
| this.setDisabled(arr, [0]);
| } else if (this.checkboxedit.length === 2) {
| this.setDisabled(arr, [0, 1]);
| } else if (this.checkboxedit.length === 3) {
| this.setDisabled(arr, [0, 1, 2]);
| } else if (this.checkboxedit.length === 4) {
| this.setDisabled(arr, [0, 1, 2, 3]);
| } else if (this.checkboxedit.length === 0) {
| this.setDisabled(arr, [-1]);
| }
| }
| },
|
| // 过滤找到对应必填种类禁用选项
| setDisabled(arr, indices) {
| arr.dicData.forEach((item, index) => {
| item.disabled = !indices.includes(index);
| });
| },
|
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .avue-form__group--flex {
| padding-bottom: 25px !important;
| }
|
| </style>
|
|