File tree Expand file tree Collapse file tree 4 files changed +6
-41
lines changed Expand file tree Collapse file tree 4 files changed +6
-41
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ export enum DICT_TYPE {
184
184
PROMOTION_CONDITION_TYPE = 'promotion_condition_type' , // 营销的条件类型枚举
185
185
PROMOTION_BARGAIN_RECORD_STATUS = 'promotion_bargain_record_status' , // 砍价记录的状态
186
186
PROMOTION_COMBINATION_RECORD_STATUS = 'promotion_combination_record_status' , // 拼团记录的状态
187
- BANNER_POSITION = 'banner_position ' , // banner 定位
187
+ PROMOTION_BANNER_POSITION = 'promotion_banner_position ' , // banner 定位
188
188
189
189
// ========== CRM - 客户管理模块 ==========
190
190
CRM_RECEIVABLE_CHECK_STATUS = 'crm_receivable_check_status' ,
Original file line number Diff line number Diff line change @@ -109,59 +109,24 @@ const props = defineProps({
109
109
const promotionTypes = ref <DictDataType []>([
110
110
{
111
111
dictType: ' promotionTypes' ,
112
- label: ' 秒杀活动 ' ,
112
+ label: ' 秒杀 ' ,
113
113
value: 1 ,
114
114
colorType: ' warning' ,
115
115
cssClass: ' '
116
116
},
117
117
{
118
118
dictType: ' promotionTypes' ,
119
- label: ' 砍价活动 ' ,
119
+ label: ' 砍价 ' ,
120
120
value: 2 ,
121
121
colorType: ' warning' ,
122
122
cssClass: ' '
123
123
},
124
124
{
125
125
dictType: ' promotionTypes' ,
126
- label: ' 拼团活动 ' ,
126
+ label: ' 拼团 ' ,
127
127
value: 3 ,
128
128
colorType: ' warning' ,
129
129
cssClass: ' '
130
- },
131
- {
132
- dictType: ' promotionTypes' ,
133
- label: ' 限时折扣' ,
134
- value: 4 ,
135
- colorType: ' warning' ,
136
- cssClass: ' '
137
- },
138
- {
139
- dictType: ' promotionTypes' ,
140
- label: ' 满减送' ,
141
- value: 5 ,
142
- colorType: ' warning' ,
143
- cssClass: ' '
144
- },
145
- {
146
- dictType: ' promotionTypes' ,
147
- label: ' 会员折扣' ,
148
- value: 6 ,
149
- colorType: ' warning' ,
150
- cssClass: ' '
151
- },
152
- {
153
- dictType: ' promotionTypes' ,
154
- label: ' 优惠劵' ,
155
- value: 7 ,
156
- colorType: ' warning' ,
157
- cssClass: ' '
158
- },
159
- {
160
- dictType: ' promotionTypes' ,
161
- label: ' 积分' ,
162
- value: 8 ,
163
- colorType: ' warning' ,
164
- cssClass: ' '
165
130
}
166
131
])
167
132
Original file line number Diff line number Diff line change 45
45
<el-form-item label =" 定位" prop =" position" >
46
46
<el-radio-group v-model =" formData.position" >
47
47
<el-radio
48
- v-for =" dict in getIntDictOptions(DICT_TYPE.BANNER_POSITION )"
48
+ v-for =" dict in getIntDictOptions(DICT_TYPE.PROMOTION_BANNER_POSITION )"
49
49
:key =" dict.value"
50
50
:label =" dict.value"
51
51
>
Original file line number Diff line number Diff line change 76
76
</el-table-column >
77
77
<el-table-column align =" center" label =" 定位" prop =" position" >
78
78
<template #default =" scope " >
79
- <dict-tag :type =" DICT_TYPE.BANNER_POSITION " :value =" scope.row.position" />
79
+ <dict-tag :type =" DICT_TYPE.PROMOTION_BANNER_POSITION " :value =" scope.row.position" />
80
80
</template >
81
81
</el-table-column >
82
82
<el-table-column align =" center" label =" 跳转地址" prop =" url" />
You can’t perform that action at this time.
0 commit comments