File tree Expand file tree Collapse file tree 9 files changed +38
-23
lines changed
components/bpmnProcessDesigner/package/penal
crm/permission/components Expand file tree Collapse file tree 9 files changed +38
-23
lines changed Original file line number Diff line number Diff line change 45
45
<el-checkbox
46
46
v-model =" loopInstanceForm.asyncBefore"
47
47
label =" 异步前"
48
+ value =" 异步前"
48
49
@change =" updateLoopAsync('asyncBefore')"
49
50
/>
50
51
<el-checkbox
51
52
v-model =" loopInstanceForm.asyncAfter"
52
53
label =" 异步后"
54
+ value =" 异步后"
53
55
@change =" updateLoopAsync('asyncAfter')"
54
56
/>
55
57
<el-checkbox
56
58
v-model =" loopInstanceForm.exclusive"
57
59
v-if =" loopInstanceForm.asyncAfter || loopInstanceForm.asyncBefore"
58
60
label =" 排除"
61
+ value =" 排除"
59
62
@change =" updateLoopAsync('exclusive')"
60
63
/>
61
64
</el-form-item >
Original file line number Diff line number Diff line change 6
6
<el-checkbox
7
7
v-model =" taskConfigForm.asyncBefore"
8
8
label =" 异步前"
9
+ value =" 异步前"
10
+ @change =" changeTaskAsync"
11
+ />
12
+ <el-checkbox
13
+ v-model =" taskConfigForm.asyncAfter"
14
+ label =" 异步后"
15
+ value =" 异步后"
9
16
@change =" changeTaskAsync"
10
17
/>
11
- <el-checkbox v-model =" taskConfigForm.asyncAfter" label =" 异步后" @change =" changeTaskAsync" />
12
18
<el-checkbox
13
19
v-model =" taskConfigForm.exclusive"
14
20
v-if =" taskConfigForm.asyncAfter || taskConfigForm.asyncBefore"
15
21
label =" 排除"
22
+ value =" 排除"
16
23
@change =" changeTaskAsync"
17
24
/>
18
25
</el-form-item >
Original file line number Diff line number Diff line change 14
14
<el-checkbox
15
15
v-for =" scope in queryParams.scopes"
16
16
:key =" scope"
17
- :label =" scope"
17
+ :value =" scope"
18
18
style =" display : block ; margin-bottom : -10px "
19
19
>
20
20
{{ formatScope(scope) }}
Original file line number Diff line number Diff line change 34
34
label =" 同时添加至"
35
35
>
36
36
<el-checkbox-group v-model =" formData.toBizTypes" >
37
- <el-checkbox :label =" BizTypeEnum.CRM_CONTACT" >联系人</el-checkbox >
38
- <el-checkbox :label =" BizTypeEnum.CRM_BUSINESS" >商机</el-checkbox >
39
- <el-checkbox :label =" BizTypeEnum.CRM_CONTRACT" >合同</el-checkbox >
37
+ <el-checkbox :value =" BizTypeEnum.CRM_CONTACT" >联系人</el-checkbox >
38
+ <el-checkbox :value =" BizTypeEnum.CRM_BUSINESS" >商机</el-checkbox >
39
+ <el-checkbox :value =" BizTypeEnum.CRM_CONTRACT" >合同</el-checkbox >
40
40
</el-checkbox-group >
41
41
</el-form-item >
42
42
</el-form >
Original file line number Diff line number Diff line change 38
38
</el-form-item >
39
39
<el-form-item v-if =" bizType === BizTypeEnum.CRM_CUSTOMER" label =" 同时转移" >
40
40
<el-checkbox-group v-model =" formData.toBizTypes" >
41
- <el-checkbox :label =" BizTypeEnum.CRM_CONTACT" >联系人</el-checkbox >
42
- <el-checkbox :label =" BizTypeEnum.CRM_BUSINESS" >商机</el-checkbox >
43
- <el-checkbox :label =" BizTypeEnum.CRM_CONTRACT" >合同</el-checkbox >
41
+ <el-checkbox :value =" BizTypeEnum.CRM_CONTACT" >联系人</el-checkbox >
42
+ <el-checkbox :value =" BizTypeEnum.CRM_BUSINESS" >商机</el-checkbox >
43
+ <el-checkbox :value =" BizTypeEnum.CRM_CONTRACT" >合同</el-checkbox >
44
44
</el-checkbox-group >
45
45
</el-form-item >
46
46
</el-form >
Original file line number Diff line number Diff line change 37
37
</el-table-column >
38
38
<el-table-column label =" 插入" min-width =" 4%" >
39
39
<template #default =" scope " >
40
- <el-checkbox v-model =" scope.row.createOperation" false-label =" false" true-label =" true" />
40
+ <el-checkbox v-model =" scope.row.createOperation" false-value =" false" true-value =" true" />
41
41
</template >
42
42
</el-table-column >
43
43
<el-table-column label =" 编辑" min-width =" 4%" >
44
44
<template #default =" scope " >
45
- <el-checkbox v-model =" scope.row.updateOperation" false-label =" false" true-label =" true" />
45
+ <el-checkbox v-model =" scope.row.updateOperation" false-value =" false" true-value =" true" />
46
46
</template >
47
47
</el-table-column >
48
48
<el-table-column label =" 列表" min-width =" 4%" >
49
49
<template #default =" scope " >
50
50
<el-checkbox
51
51
v-model =" scope.row.listOperationResult"
52
- false-label =" false"
53
- true-label =" true"
52
+ false-value =" false"
53
+ true-value =" true"
54
54
/>
55
55
</template >
56
56
</el-table-column >
57
57
<el-table-column label =" 查询" min-width =" 4%" >
58
58
<template #default =" scope " >
59
- <el-checkbox v-model =" scope.row.listOperation" false-label =" false" true-label =" true" />
59
+ <el-checkbox v-model =" scope.row.listOperation" false-value =" false" true-value =" true" />
60
60
</template >
61
61
</el-table-column >
62
62
<el-table-column label =" 查询方式" min-width =" 10%" >
75
75
</el-table-column >
76
76
<el-table-column label =" 允许空" min-width =" 5%" >
77
77
<template #default =" scope " >
78
- <el-checkbox v-model =" scope.row.nullable" false-label =" false" true-label =" true" />
78
+ <el-checkbox v-model =" scope.row.nullable" false-value =" false" true-value =" true" />
79
79
</template >
80
80
</el-table-column >
81
81
<el-table-column label =" 显示类型" min-width =" 12%" >
Original file line number Diff line number Diff line change 6
6
<el-checkbox
7
7
v-for =" dict in getIntDictOptions(DICT_TYPE.TRADE_DELIVERY_TYPE)"
8
8
:key =" dict.value"
9
- :label =" dict.value"
9
+ :value =" dict.value"
10
10
>
11
11
{{ dict.label }}
12
12
</el-checkbox >
Original file line number Diff line number Diff line change 33
33
<el-form-item label =" 优惠设置" >
34
34
<template v-for =" (item , index ) in formData .rules " :key =" index " >
35
35
<el-row type =" flex" >
36
- <el-col :span =" 24" style =" font-weight : bold ; display : flex " >
36
+ <el-col :span =" 24" style =" display : flex ; font-weight : bold " >
37
37
活动层级{{ index + 1 }}
38
38
<el-button
39
39
link
45
45
删除
46
46
</el-button >
47
47
</el-col >
48
- <e -form :ref =" 'formRef' + index" :model =" item" >
48
+ <el -form :ref =" 'formRef' + index" :model =" item" >
49
49
<el-form-item
50
50
label =" 优惠门槛:"
51
51
prop =" limit"
64
64
<el-form-item label =" 优惠内容:" label-width =" 100px" style =" padding-left : 50px " >
65
65
<el-checkbox-group v-model =" activityRules[index]" style =" width : 100% " >
66
66
<el-col :span =" 24" >
67
- <el-checkbox label =" 订单金额优惠" name =" type" />
67
+ <el-checkbox label =" 订单金额优惠" value = " 订单金额优惠 " name =" type" />
68
68
<el-form-item v-if =" activityRules[index].includes('订单金额优惠')" >
69
69
减
70
70
<el-input
77
77
</el-form-item >
78
78
</el-col >
79
79
<el-col :span =" 24" >
80
- <el-checkbox v-model =" item.freeDelivery" label =" 包邮" name =" type" />
80
+ <el-checkbox
81
+ v-model =" item.freeDelivery"
82
+ label =" 包邮"
83
+ value =" 包邮"
84
+ name =" type"
85
+ />
81
86
</el-col >
82
87
<el-col :span =" 24" >
83
- <el-checkbox label =" 送积分" name =" type" />
88
+ <el-checkbox label =" 送积分" value = " 送积分 " name =" type" />
84
89
<el-form-item v-if =" activityRules[index].includes('送积分')" >
85
90
送
86
91
<el-input
95
100
<!-- 优惠券待处理 也可以参考优惠劵的SpuShowcase-->
96
101
<!-- TODO 待实现!-->
97
102
<el-col :span =" 24" >
98
- <el-checkbox label =" 送优惠券" name =" type" />
103
+ <el-checkbox label =" 送优惠券" value = " 送优惠券 " name =" type" />
99
104
</el-col >
100
105
</el-checkbox-group >
101
106
</el-form-item >
102
- </e -form >
107
+ </el -form >
103
108
</el-row >
104
109
</template >
105
110
<!-- TODO 实现:建议改成放在每一个【活动层级】的下面,有点类似主子表 -->
Original file line number Diff line number Diff line change 182
182
<el-checkbox
183
183
v-for =" dict in getIntDictOptions(DICT_TYPE.BROKERAGE_WITHDRAW_TYPE)"
184
184
:key =" dict.value"
185
- :label =" dict.value"
185
+ :value =" dict.value"
186
186
>
187
187
{{ dict.label }}
188
188
</el-checkbox >
You can’t perform that action at this time.
0 commit comments