|
@@ -18,6 +18,7 @@
|
|
:appId.sync="configForm.accountId"
|
|
:appId.sync="configForm.accountId"
|
|
:multiple="false"
|
|
:multiple="false"
|
|
request="1,3"
|
|
request="1,3"
|
|
|
|
+ @select-value="handleSelectValue"
|
|
>
|
|
>
|
|
</acount-search>
|
|
</acount-search>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
@@ -1842,6 +1843,28 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
...mapGetters(['nickname', 'avatar', 'userInfo']),
|
|
...mapGetters(['nickname', 'avatar', 'userInfo']),
|
|
moment,
|
|
moment,
|
|
|
|
+ handleSelectValue(data) {
|
|
|
|
+ this.configForm.adConvertType = undefined;
|
|
|
|
+ this.configForm.adConvertId = undefined;
|
|
|
|
+ this.configForm.adAudiencePackageId = undefined;
|
|
|
|
+ this.packageMessageDetail = [];
|
|
|
|
+ this.handleClearlist();
|
|
|
|
+
|
|
|
|
+ if (this.configForm.customPerson === 'a' && this.configForm.adRetargetingTagsType === '1') {
|
|
|
|
+ this.$refs.direct.selectRightData = [];
|
|
|
|
+ this.$refs.direct.tableSelectIds = [];
|
|
|
|
+ }
|
|
|
|
+ else if (this.configForm.customPerson === 'a' && this.configForm.adRetargetingTagsType === '2') {
|
|
|
|
+ this.$refs.exclude.selectRightData = [];
|
|
|
|
+ this.$refs.exclude.tableSelectIds = [];
|
|
|
|
+ }
|
|
|
|
+ else if (this.configForm.customPerson === 'a' && this.configForm.adRetargetingTagsType === '3') {
|
|
|
|
+ this.$refs.twoway.tableSelectDirectIds = [];
|
|
|
|
+ this.$refs.twoway.tableSelectDirectData = [];
|
|
|
|
+ this.$refs.twoway.tableSelectExcludeIds = [];
|
|
|
|
+ this.$refs.twoway.tableSelectExcludeData = [];
|
|
|
|
+ }
|
|
|
|
+ },
|
|
handleAdDistrict(e) {
|
|
handleAdDistrict(e) {
|
|
const defaultValue = e.target.value;
|
|
const defaultValue = e.target.value;
|
|
if (defaultValue === 'NONE') {
|
|
if (defaultValue === 'NONE') {
|