|
@@ -46,7 +46,7 @@
|
|
button-style="solid"
|
|
button-style="solid"
|
|
@change="handleAccountMode"
|
|
@change="handleAccountMode"
|
|
>
|
|
>
|
|
- <a-radio-button value="1">不限</a-radio-button>
|
|
|
|
|
|
+ <a-radio-button value="1">不限预算</a-radio-button>
|
|
<a-radio-button value="2">指定预算</a-radio-button>
|
|
<a-radio-button value="2">指定预算</a-radio-button>
|
|
</a-radio-group>
|
|
</a-radio-group>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
@@ -123,7 +123,7 @@
|
|
<p class="rock-title">投放内容</p>
|
|
<p class="rock-title">投放内容</p>
|
|
<a-form-model-item label="投放目标">
|
|
<a-form-model-item label="投放目标">
|
|
<a-radio-group :disabled="modalTitle === 'edit'" v-model="configForm.launchTarget" button-style="solid">
|
|
<a-radio-group :disabled="modalTitle === 'edit'" v-model="configForm.launchTarget" button-style="solid">
|
|
- <a-radio-button value="OCPM">转量化</a-radio-button>
|
|
|
|
|
|
+ <a-radio-button value="OCPM">转化量</a-radio-button>
|
|
<a-radio-button value="CPC" disabled>点击量</a-radio-button>
|
|
<a-radio-button value="CPC" disabled>点击量</a-radio-button>
|
|
<a-radio-button value="CPM" disabled>展示量</a-radio-button>
|
|
<a-radio-button value="CPM" disabled>展示量</a-radio-button>
|
|
</a-radio-group>
|
|
</a-radio-group>
|
|
@@ -306,10 +306,10 @@
|
|
<div v-if="configForm.adDownloadUrl && configForm.adAndroidVersion === 'a'" class="position-radio-change">
|
|
<div v-if="configForm.adDownloadUrl && configForm.adAndroidVersion === 'a'" class="position-radio-change">
|
|
<p>安卓版本</p>
|
|
<p>安卓版本</p>
|
|
<a-radio-group v-model="configForm.androidChangeValue">
|
|
<a-radio-group v-model="configForm.androidChangeValue">
|
|
- <a-radio :style="radioStyle" value="8.0">Andriod 8.0以上</a-radio>
|
|
|
|
- <a-radio :style="radioStyle" value="7.1">Andriod 7.1以上</a-radio>
|
|
|
|
- <a-radio :style="radioStyle" value="7.0">Andriod 7.0以上</a-radio>
|
|
|
|
- <a-radio :style="radioStyle" value="6.0">Andriod 6.0以上</a-radio>
|
|
|
|
|
|
+ <a-radio :style="radioStyle" value="8.0">Andriod 8.0及以上</a-radio>
|
|
|
|
+ <a-radio :style="radioStyle" value="7.1">Andriod 7.1及以上</a-radio>
|
|
|
|
+ <a-radio :style="radioStyle" value="7.0">Andriod 7.0及以上</a-radio>
|
|
|
|
+ <a-radio :style="radioStyle" value="6.0">Andriod 6.0及以上</a-radio>
|
|
</a-radio-group>
|
|
</a-radio-group>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -912,7 +912,7 @@ export default {
|
|
},
|
|
},
|
|
handleCampaignCnt(e) {
|
|
handleCampaignCnt(e) {
|
|
const finallyResult = e * this.configForm.campaignAdCnt;
|
|
const finallyResult = e * this.configForm.campaignAdCnt;
|
|
- if (finallyResult >= 500) {
|
|
|
|
|
|
+ if (finallyResult > 500) {
|
|
this.campaignStatus = true;
|
|
this.campaignStatus = true;
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
@@ -921,7 +921,7 @@ export default {
|
|
},
|
|
},
|
|
handleCampaignAdCnt(e) {
|
|
handleCampaignAdCnt(e) {
|
|
const finallyResult = e * this.configForm.campaignCnt;
|
|
const finallyResult = e * this.configForm.campaignCnt;
|
|
- if (finallyResult >= 500) {
|
|
|
|
|
|
+ if (finallyResult > 500) {
|
|
this.campaignStatus = true;
|
|
this.campaignStatus = true;
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
@@ -1072,6 +1072,7 @@ export default {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
handleConvertTypeChange(e) {
|
|
handleConvertTypeChange(e) {
|
|
|
|
+ this.configForm.adConvertId = '';
|
|
this.toolConvertList.forEach(item => {
|
|
this.toolConvertList.forEach(item => {
|
|
if (item.convert_type === e) {
|
|
if (item.convert_type === e) {
|
|
this.optimizationOption = item.external_actions;
|
|
this.optimizationOption = item.external_actions;
|
|
@@ -1398,7 +1399,7 @@ export default {
|
|
}
|
|
}
|
|
this.configForm.creativeLabel = [];
|
|
this.configForm.creativeLabel = [];
|
|
if (this.creativeTag.length > 20) {
|
|
if (this.creativeTag.length > 20) {
|
|
- this.creativeTag.splice(0, 20);
|
|
|
|
|
|
+ this.creativeTag = this.creativeTag.slice(0, 20);
|
|
this.$message.error('最多创建20个');
|
|
this.$message.error('最多创建20个');
|
|
}
|
|
}
|
|
},
|
|
},
|