|
@@ -48,8 +48,8 @@
|
|
/>
|
|
/>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
<a-form-item class="form-handle-btn">
|
|
<a-form-item class="form-handle-btn">
|
|
- <a-button type="default" class="reset-class" @click="handleResetList">重置</a-button>
|
|
|
|
- <a-button type="primary" class="reset-class" @click="handleQueryList">查询</a-button>
|
|
|
|
|
|
+ <a-button type="default" class="reset-class" icon="reload" @click="handleResetList">重置</a-button>
|
|
|
|
+ <a-button type="primary" class="reset-class" icon="search" @click="handleQueryList">查询</a-button>
|
|
<a-button type="primary" @click="handleAddAccountConfig">新增文案</a-button>
|
|
<a-button type="primary" @click="handleAddAccountConfig">新增文案</a-button>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-row>
|
|
</a-row>
|
|
@@ -330,7 +330,6 @@ export default {
|
|
this.$message.error('请选择账户');
|
|
this.$message.error('请选择账户');
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- // this.editShowAccountList
|
|
|
|
let paramsData = new FormData();
|
|
let paramsData = new FormData();
|
|
paramsData.append('accountIds', [...this.advertisingAccount, ...this.editShowAccountList]);
|
|
paramsData.append('accountIds', [...this.advertisingAccount, ...this.editShowAccountList]);
|
|
if (this.copywritingType === 'add') {
|
|
if (this.copywritingType === 'add') {
|
|
@@ -353,6 +352,9 @@ export default {
|
|
postAction(url, data).then(result => {
|
|
postAction(url, data).then(result => {
|
|
if (result.code === 200) {
|
|
if (result.code === 200) {
|
|
this.$message.success(result.message);
|
|
this.$message.success(result.message);
|
|
|
|
+ this.advertisingAccount = [];
|
|
|
|
+ this.fileList = [];
|
|
|
|
+ this.editShowAccountList = [];
|
|
this.causeVisible = false;
|
|
this.causeVisible = false;
|
|
this.currencyPag = {
|
|
this.currencyPag = {
|
|
page: 1,
|
|
page: 1,
|
|
@@ -367,7 +369,6 @@ export default {
|
|
console.log(error, 'eeee');
|
|
console.log(error, 'eeee');
|
|
}).finally(() => {
|
|
}).finally(() => {
|
|
this.confirmLoading = false;
|
|
this.confirmLoading = false;
|
|
- this.editShowAccountList = [];
|
|
|
|
});
|
|
});
|
|
},
|
|
},
|
|
handleCauseCancel() {
|
|
handleCauseCancel() {
|
|
@@ -477,7 +478,7 @@ export default {
|
|
},
|
|
},
|
|
handleLaunchData(date, dateString) {
|
|
handleLaunchData(date, dateString) {
|
|
this.configForm.launchDateRange = dateString;
|
|
this.configForm.launchDateRange = dateString;
|
|
- },
|
|
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|