|
|
@@ -373,6 +373,16 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</template>
|
|
|
+ <el-row :gutter="20">
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="使用方式">
|
|
|
+ <el-radio-group v-model="form.useMethod">
|
|
|
+ <el-radio value="点击使用按钮">点击使用按钮</el-radio>
|
|
|
+ <el-radio value="复制使用链接">复制使用链接</el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="使用地址">
|
|
|
@@ -708,6 +718,7 @@ export default {
|
|
|
smsTemplateId: '',
|
|
|
smsTemplate: '',
|
|
|
successButtonText: '',
|
|
|
+ useMethod: '点击使用按钮',
|
|
|
claimLinkType: 'h5地址',
|
|
|
claimLink: '',
|
|
|
claimMiniAppId: '',
|
|
|
@@ -808,7 +819,8 @@ export default {
|
|
|
rongshuProduct: f.rongshuProduct || '',
|
|
|
stockCount: (f.isPlatformExchange === '是' && f.productType === '微信立减金') ? f.stockCount : null,
|
|
|
merchantName: f.merchantName || '',
|
|
|
- jumpMethod: isNotPlatform ? f.externalJumpMethod : '-',
|
|
|
+ useMethod: f.useMethod || '点击使用按钮',
|
|
|
+ jumpMethod: isNotPlatform ? f.externalJumpMethod : '-',
|
|
|
jumpLink: isNotPlatform ? f.externalLink : '-',
|
|
|
exchangeMethod: isNotPlatform
|
|
|
? (f.externalJumpMethod === '有' ? '第三方(详情页跳转)' : '第三方(列表跳转)')
|