Skip to content

Commit 427c2d5

Browse files
committed
MALL:修复营销的商品范围枚举不正确的问题
1 parent 87d1047 commit 427c2d5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/utils/constants.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,15 +248,15 @@ export const CouponTemplateTakeTypeEnum = {
248248
*/
249249
export const PromotionProductScopeEnum = {
250250
ALL: {
251-
scope: 10,
251+
scope: 1,
252252
name: '通用劵'
253253
},
254254
SPU: {
255-
scope: 20,
255+
scope: 2,
256256
name: '商品劵'
257257
},
258258
CATEGORY: {
259-
scope: 30,
259+
scope: 3,
260260
name: '品类劵'
261261
}
262262
}

src/views/pay/app/components/channel/WeixinChannelForm.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
<template #append>%</template>
1919
</el-input>
2020
</el-form-item>
21-
<el-form-item label-width="180px" label="公众号 APPID" prop="config.appId">
21+
<el-form-item label-width="180px" label="微信 APPID" prop="config.appId">
2222
<el-input
2323
v-model="formData.config.appId"
24-
placeholder="请输入公众号 APPID"
24+
placeholder="请输入微信 APPID"
2525
clearable
2626
:style="{ width: '100%' }"
2727
/>

0 commit comments

Comments
 (0)