|
|
@@ -81,6 +81,20 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="分享首页视频积分" prop="integralShareHomeVideo">
|
|
|
+ <el-tooltip class="item" effect="dark" content="分享首页视频单次赠送积分" placement="top-end">
|
|
|
+ <el-input-number v-model="form11.integralShareHomeVideo" />
|
|
|
+ </el-tooltip>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="分享首页视频单日上限" prop="integralShareHomeVideoDailyLimit">
|
|
|
+ <el-input-number v-model="form11.integralShareHomeVideoDailyLimit" :min="1" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
@@ -146,10 +160,17 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="点播课留言积分" prop="integralComment">
|
|
|
+ <el-form-item label="完课评价积分(非转化素材)" prop="integralComment">
|
|
|
<el-input-number v-model="form11.integralComment" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="12">
|
|
|
+ <el-form-item label="完课评价积分(转化素材)" prop="integralCommentProduct">
|
|
|
+ <el-input-number v-model="form11.integralCommentProduct" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="积分有效天数" prop="integralExpireDays">
|
|
|
<el-input-number v-model="form11.integralExpireDays" />
|
|
|
@@ -279,6 +300,7 @@ const DEFAULT_TASK_DISPLAY_ROWS = [
|
|
|
{ code: 'DOWNLOAD_APP', name: '首次下载APP', typeLabel: '新手', defaultScopes: ['app'], tip: '仅 APP 端可完成' },
|
|
|
{ code: 'FIRST_PURCHASE', name: '首次完成购物', typeLabel: '新手', defaultScopes: ['app', 'mini'], tip: '全渠道首购奖励' },
|
|
|
{ code: 'SHARE', name: '分享得积分', typeLabel: '每日', defaultScopes: ['app', 'mini'], tip: 'APP+小程序合计日限' },
|
|
|
+ { code: 'SHARE_HOME_VIDEO', name: '分享首页视频', typeLabel: '每日', defaultScopes: ['app', 'mini'], tip: '分享首页视频,默认每日5次' },
|
|
|
{ code: 'COURSE', name: '学习首页课程', typeLabel: '每日', defaultScopes: ['app'], tip: '默认仅 APP 展示' },
|
|
|
{ code: 'BROWSE_MALL', name: '浏览商城60秒', typeLabel: '每日', defaultScopes: ['app', 'mini'], tip: '浏览商城任务' },
|
|
|
{ code: 'INVITE', name: '邀好友享积分', typeLabel: '每日', defaultScopes: ['app', 'mini'], tip: '邀请新用户' },
|
|
|
@@ -316,6 +338,7 @@ export default {
|
|
|
integralNewTask: null,
|
|
|
integralRatio: null,
|
|
|
integralShare: null,
|
|
|
+ integralShareHomeVideo: 10,
|
|
|
integralFollow: null,
|
|
|
integralCourse: null,
|
|
|
integralProduct: null,
|
|
|
@@ -329,10 +352,12 @@ export default {
|
|
|
integralFirstPurchase: 20,
|
|
|
integralInviteDailyLimit: 3,
|
|
|
integralShareDailyLimit: 5,
|
|
|
+ integralShareHomeVideoDailyLimit: 5,
|
|
|
integralCourseDailyLimit: 5,
|
|
|
integralProductDailyLimit: 1,
|
|
|
integralProductBrowseSeconds: 60,
|
|
|
integralComment: 100,
|
|
|
+ integralCommentProduct: 150,
|
|
|
integralExpireDays: 90,
|
|
|
integralExpireLaunchDate: null,
|
|
|
taskDisplayScope: {},
|
|
|
@@ -416,10 +441,13 @@ export default {
|
|
|
integralFirstPurchase: 20,
|
|
|
integralInviteDailyLimit: 3,
|
|
|
integralShareDailyLimit: 5,
|
|
|
+ integralShareHomeVideo: 10,
|
|
|
+ integralShareHomeVideoDailyLimit: 5,
|
|
|
integralCourseDailyLimit: 5,
|
|
|
integralProductDailyLimit: 1,
|
|
|
integralProductBrowseSeconds: 60,
|
|
|
integralComment: 100,
|
|
|
+ integralCommentProduct: 150,
|
|
|
integralExpireDays: 90,
|
|
|
taskDisplayScope: {},
|
|
|
logTypeDisplayScope: {}
|