shikeying
2023-04-17 e3f49adba47498466684325b8a897de585738c55
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
<template>
  <el-link
    v-if="site==='operation'&&show"
    style="padding: 0 10px"
    :icon="myIcon"
    :loading="loading"
    :plain="myPlain"
    :size="mySize"
    :type="myType"
    @click="click"
  >{{ myName }}
  </el-link>
  <el-button
    v-else-if="show"
    :icon="myIcon"
    :loading="loading"
    :plain="myPlain"
    :size="mySize"
    :type="myType"
    @click="click"
  >{{ myName }}
  </el-button>
</template>
<script>
export default {
  name: 'MyButtonV2',
  props: {
    checkPermission: { // 按钮权限
      type: String,
      default: ''
    },
    site: { // filter 搜索条,tools 工具条,operation 操作栏,form 表单
      type: String,
      default: ''
    },
    type: {// 按钮类型
      type: String,
      default: ''
    },
    name: {// 按钮名称
      type: String,
      default: ''
    },
    icons: {// 图标
      type: String,
      default: null
    }
  },
  data() {
    return {
      filter: {// 搜索条上的按钮名称集合
        size: 'mini',
        plain: false,
        other: {
          '搜索': {
            type: 'primary',
            icon: 'el-icon-search'
          },
          '重置': {
            type: '',
            icon: 'el-icon-refresh'
          },
          '完结': {
            type: 'warning',
            icon: 'el-icon-warning-outline'
          },
          '进入系统': {
            type: '',
            icon: 'el-icon-login'
          }
        }
      },
      tools: {// 工具条上的按钮集合
        size: 'mini',
        plain: false,
        type: 'default',
        other: {
          '添加': {
            icon: 'el-icon-edit-outline'
          },
          '批量删除': {
            icon: 'el-icon-delete'
          },
          '批量启用': {
            icon: 'el-icon-refresh'
          },
          '导入': {
            icon: 'el-icon-upload2'
          },
          '导入模板下载': {
            icon: 'el-icon-download'
          },
          '批量导入': {
            icon: 'el-icon-upload2'
          },
          '导出': {
            icon: 'el-icon-download'
          },
          '批量下架': {
            icon: 'el-icon-edit-outline'
          },
          '批量延期': {
            icon: 'el-icon-date'
          },
          '查重': {
            icon: 'el-icon-s-help'
          },
          '打印': {
            icon: 'el-icon-printer'
          },
          '导出EXCEL': {
            icon: 'el-icon-download'
          },
          '导出EXCEL(不分页)': {
            icon: 'el-icon-download'
          },
          '导出EXCEL(分页)': {
            icon: 'el-icon-download'
          },
          '导出WORD': {
            icon: 'el-icon-download'
          },
          '导出PDF': {
            icon: 'el-icon-download'
          }
        }
      },
      operation: {// 操作栏上的按钮集合
        size: 'mini',
        plain: true,
        other: {
          '编辑': {
            type: 'success'
          },
          '处理': {
            type: 'primary'
          },
          '审批': {
            type: 'success'
          },
          '事务反馈': {
            type: 'primary'
          },
          '发布': {
            type: 'primary'
          },
          '删除': {
            type: 'primary'
          },
          '权限': {
            type: 'warning'
          },
          '角色': {
            type: 'info'
          },
          '重置密码': {
            type: 'warning'
          },
          '组织架构': {
            type: 'danger'
          },
          '人员': {
            type: 'success'
          },
          '上架': {
            type: 'success'
          },
          '下架': {
            type: 'danger'
          },
          '延期': {
            type: 'warning'
          },
          '备件需求': {
            type: 'warning'
          },
          '维修/改造': {
            type: 'success'
          },
          '备注': {
            type: 'warning'
          },
          '沟通记录': {
            type: 'success'
          },
          '查看备注': {
            type: 'info'
          },
          '查看沟通记录': {
            type: 'success'
          },
          '启用': {
            type: 'success'
          },
          '禁用': {
            type: 'warning'
          },
          '启用黑名单': {
            type: 'success'
          },
          '加入黑名单': {
            type: 'danger'
          },
          '授权用户': {
            type: 'danger'
          },
          '查看': {
            type: 'success'
          },
          '查看详情': {
            type: 'info'
          },
          '记录': {
            type: 'primary'
          },
          '设置利润率': {
            type: 'success'
          },
          '审核': {
            type: 'success'
          },
          '采购': {
            type: 'success'
          },
          '质检确认': {
            type: 'success'
          },
          '关联客户经理': {
            type: 'primary'
          },
          '处理确认': {
            type: 'primary'
          },
          '详情': {
            type: 'success'
          },
          '委外加工': {
            type: 'primary'
          },
          '制造进度': {
            type: 'warning'
          },
          '入库确认': {
            type: 'warning'
          },
          '定价': {
            type: 'danger'
          },
          '虚拟入库': {
            type: 'primary'
          },
          '受理审核': {
            type: 'primary'
          },
          '查看记录': {
            type: 'info'
          },
          '关联该商品': {
            type: 'info'
          },
          '议价处理': {
            type: 'warning'
          },
          '分期审批': {
            type: 'success'
          },
          '签合同': {
            type: 'success'
          },
          '设计': {
            type: 'primary'
          },
          '测量': {
            type: 'success'
          },
          '开票': {
            type: 'success'
          },
          '受理确认': {
            type: 'success'
          },
          '售后处理': {
            type: 'success'
          },
          '确认支付': {
            type: 'warning'
          },
          '上传发票': {
            type: 'primary'
          },
          '确认收款': {
            type: 'warning'
          },
          '收款详细': {
            type: 'success'
          },
          '预览': {
            type: 'warning'
          }
        }
      },
      form: { // 表单上的按钮
        size: 'small',
        plain: false,
        other: {
          '提交': {
            type: 'primary'
          },
          '发布': {
            type: 'primary'
          },
          '关闭': {
            type: 'default'
          },
          '保存': {
            type: 'primary'
          },
          '取消': {
            type: 'default'
          },
          '重置': {
            type: 'default'
          },
          '暂存': {
            type: 'warning'
          },
          '查询': {
            type: 'primary'
          },
          '关联该用户': {
            type: 'success'
          },
          '确认': {
            type: 'primary'
          },
          '确定': {
            type: 'primary'
          },
          '报价': {
            type: 'success'
          },
          '下一步': {
            type: 'primary'
          },
          '上一步': {
            type: 'default'
          },
          '选择': {
            type: 'primary'
          },
          '驳回': {
            type: 'primary'
          },
          '通过': {
            type: 'success'
          }
        }
      },
      text: { // 表单上的按钮
        size: 'mini',
        type: 'text',
        icon: '',
        other: {
          '添加': {
            icon: 'el-icon-circle-plus-outline'
          }
        }
      },
      loading: false,
      myType: this.type, // 按钮类型
      myName: this.name, // 按钮名称
      myIcon: this.icon, // 按钮图标
      mySize: this.size, // 按钮大小
      myPlain: this.plain, // 是否朴素按钮
      show: true // 是否显示
    }
  },
  created() {
    // console.log(this.$store.getters.permissions);
    if (this.checkPermission != '') {
      let userPermission = this.$store.getters.permissions;
      if(userPermission.indexOf("*:*:*") >= 0){
        // 有所有权限
        this.show = true;
      } else if(userPermission.indexOf(this.checkPermission) < 0){
        this.show = false
        return
      }
    }
    this.myName = this.name
    if (this.site == 'filter') {
      this.mySize = this.filter.size
      this.myPlain = this.filter.plain
      this.myType = (this && this.type) || this.filter.other[this.myName].type
      this.myIcon = this.filter.other[this.myName].icon
    } else if (this.site == 'tools') {
      this.mySize = this.tools.size
      this.myPlain = this.tools.plain
      this.myType = (this && this.type) || this.tools.type
      if (this.icons != null) {
        this.myIcon = this.icons
      } else {
        this.myIcon = this.tools.other[this.myName].icon
      }
    } else if (this.site == 'operation') {
      this.mySize = this.operation.size
      this.myPlain = this.operation.plain
      this.myType = this.type || (this.operation.other[this.myName] ? this.operation.other[this.myName].type : '')
    } else if (this.site == 'form') {
      this.mySize = this.form.size
      this.myPlain = this.form.plain
      this.myType = (this && this.type) || this.form.other[this.myName].type
    } else if (this.site == 'text') {
      this.mySize = this.text.size
      this.myType = (this && this.type) || this.text.type
      this.myIcon = this.text.other[this.myName].icon
    } else {
      this.mySize = 'mini'
      this.myPlain = false
      this.myType = 'text'
    }
  },
  methods: {
    click() {
      if (this.site == 'form') {
        this.loading = true
      }
      this.$emit('click')
      setTimeout(() => {
        this.loading = false
      }, 1500)// 1.5秒内不能重复点击
    }
  }
}
</script>