|
@@ -1324,6 +1324,7 @@ export default {
|
|
creativeThirdIndustryIds: [{required: true, message: '请选择', trigger: 'change'}]
|
|
creativeThirdIndustryIds: [{required: true, message: '请选择', trigger: 'change'}]
|
|
},
|
|
},
|
|
configForm: {
|
|
configForm: {
|
|
|
|
+ adAppType: '',
|
|
adDirectionalFlag: 'add',
|
|
adDirectionalFlag: 'add',
|
|
adInterestActionMode: 'UNLIMITED',
|
|
adInterestActionMode: 'UNLIMITED',
|
|
creativeDisplayMode: 'CREATIVE_DISPLAY_MODE_CTR',
|
|
creativeDisplayMode: 'CREATIVE_DISPLAY_MODE_CTR',
|
|
@@ -1442,9 +1443,17 @@ export default {
|
|
},
|
|
},
|
|
NewAdExternalUrl() {
|
|
NewAdExternalUrl() {
|
|
return this.configForm.adExternalUrl;
|
|
return this.configForm.adExternalUrl;
|
|
|
|
+ },
|
|
|
|
+ NewPlatformLoadingType() {
|
|
|
|
+ return this.platformLoadingType;
|
|
}
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
|
|
+ NewPlatformLoadingType(newVal, oldVal) {
|
|
|
|
+ if (newVal) {
|
|
|
|
+ this.configForm.adAppType = newVal;
|
|
|
|
+ }
|
|
|
|
+ },
|
|
NewAdExternalUrl(newVal, oldVal) {
|
|
NewAdExternalUrl(newVal, oldVal) {
|
|
if (newVal && this.configForm.accountId) {
|
|
if (newVal && this.configForm.accountId) {
|
|
const paramsData = {
|
|
const paramsData = {
|
|
@@ -1935,6 +1944,7 @@ export default {
|
|
this.configForm.adDownloadUrl = '';
|
|
this.configForm.adDownloadUrl = '';
|
|
this.configForm.adPackage = '';
|
|
this.configForm.adPackage = '';
|
|
this.configForm.adConvertId = '';
|
|
this.configForm.adConvertId = '';
|
|
|
|
+ this.configForm.adAppType = '';
|
|
this.$refs.ruleForm.clearValidate(['adDownloadUrl']);
|
|
this.$refs.ruleForm.clearValidate(['adDownloadUrl']);
|
|
this.$refs.ruleForm.clearValidate(['adPackage']);
|
|
this.$refs.ruleForm.clearValidate(['adPackage']);
|
|
}
|
|
}
|
|
@@ -2013,6 +2023,7 @@ export default {
|
|
this.configForm.adPackage = detailData.adPackage || '';
|
|
this.configForm.adPackage = detailData.adPackage || '';
|
|
this.configForm.adConvertType = detailData.adConvertType || '';
|
|
this.configForm.adConvertType = detailData.adConvertType || '';
|
|
this.configForm.adDistrict = detailData.adDistrict || 'NONE';
|
|
this.configForm.adDistrict = detailData.adDistrict || 'NONE';
|
|
|
|
+ this.configForm.adAppType = detailData.adAppType;
|
|
if (detailData.adDownloadType === 'DOWNLOAD_URL') {
|
|
if (detailData.adDownloadType === 'DOWNLOAD_URL') {
|
|
this.handleGetPackage();
|
|
this.handleGetPackage();
|
|
}
|
|
}
|