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
| import { Select } from "element-ui";
| import http from "@/utils/httpRequest";
| export const tableOption = {
| searchMenuSpan: 10,
| searchLabelWidth:120,
| columnBtn: false,
| border: true,
| selection: true,
| selection: false, //开启勾选功能
| index: false,
| indexLabel: '序号',
| stripe: true,
| menuAlign: 'center',
| menuWidth: 150,
| align: 'center',
| refreshBtn: true,
| searchSize: 'mini',
| addBtn: false,
| editBtn: false,
| delBtn: false,
| viewBtn: false,
| emptyBtn:false,
| props: {
| label: 'label',
| value: 'value'
| },
| column: [
| {
| searchslot: true,
| showColumn: false,
| type: 'select',
| label: '支付方式类型',
| prop: 'ndh',
| // dicUrl:http.adornUrl('/paymentMethodConfig/getC2cPaymentMethodType'),
| // dicMeathod:'get',
| search:true,
| hide:true
| },
| {
| label: '支付方式类型',
| prop: 'methodTypeName',
| }, {
| label: '支付方式名称',
| prop: 'methodName',
| search: true
| }, {
| slot:true,
| label: '支付方式图片',
| prop: 'methodImg'
| },{
| label: '参数名1',
| prop: 'paramName1'
| },{
| label: '参数名2',
| prop: 'paramName2'
| },{
| label: '参数名3',
| prop: 'paramName3'
| },{
| label: '参数名4',
| prop: 'paramName4'
| },{
| label: '参数名5',
| prop: 'paramName5'
| },{
| label: '参数名6',
| prop: 'paramName6'
| },{
| label: '参数名7',
| prop: 'paramName7'
| },{
| label: '参数名8',
| prop: 'paramName8'
| },{
| label: '参数名9',
| prop: 'paramName9'
| },{
| label: '参数名10',
| prop: 'paramName10'
| },{
| label: '参数名11',
| prop: 'paramName11'
| },{
| label: '参数名12',
| prop: 'paramName12'
| },{
| label: '参数名13',
| prop: 'paramName13'
| },{
| label: '参数名14',
| prop: 'paramName14'
| },{
| label: '参数名15',
| prop: 'paramName15'
| },{
| label: '创建时间',
| prop: 'createTime'
| }, {
| label: '更新时间',
| prop: 'updateTime'
| }]
| }
|
|
|