|
@@ -1642,7 +1642,7 @@ li.chouzhen.first:before {
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
- <a-row :gutter="16" v-if="channelData && channelData.channel.isHaveItem">
|
|
|
+ <a-row :gutter="16" v-if="channelData && channelData.channel.isHaveItem>-1">
|
|
|
<a-col :span="16">
|
|
|
<a-form-item>
|
|
|
<span slot="label">
|
|
@@ -2696,7 +2696,7 @@ li.chouzhen.first:before {
|
|
|
id="outTable"
|
|
|
ref="accountTable"
|
|
|
rowKey="id"
|
|
|
- :scroll="{ x: 1500 }"
|
|
|
+ :scroll="{x:1400}"
|
|
|
>
|
|
|
</a-table>
|
|
|
</a-modal>
|
|
@@ -2792,17 +2792,17 @@ let interestVideoOptions = []
|
|
|
let TTcolumns = [
|
|
|
{
|
|
|
title: '渠道号',
|
|
|
- dataIndex: 'channelCode',
|
|
|
- scopedSlots: { customRender: 'channelCode' },
|
|
|
+ dataIndex: 'channel_code',
|
|
|
+ scopedSlots: { customRender: 'channel_code' },
|
|
|
align: 'center',
|
|
|
- key: 'channelCode'
|
|
|
+ key: 'channel_code'
|
|
|
},
|
|
|
{
|
|
|
title: '渠道号名称',
|
|
|
- dataIndex: 'channelName',
|
|
|
- scopedSlots: { customRender: 'channelName' },
|
|
|
+ dataIndex: 'channel_name',
|
|
|
+ scopedSlots: { customRender: 'channel_name' },
|
|
|
align: 'center',
|
|
|
- key: 'channelName'
|
|
|
+ key: 'channel_name'
|
|
|
},
|
|
|
{
|
|
|
title: '下载链接',
|
|
@@ -2814,26 +2814,26 @@ let TTcolumns = [
|
|
|
},
|
|
|
{
|
|
|
title: '调起链接',
|
|
|
- dataIndex: 'schemaUri',
|
|
|
- scopedSlots: { customRender: 'schemaUri' },
|
|
|
+ dataIndex: 'schema_uri',
|
|
|
+ scopedSlots: { customRender: 'schema_uri' },
|
|
|
align: 'center',
|
|
|
- key: 'schemaUri',
|
|
|
+ key: 'schema_uri',
|
|
|
width: 300
|
|
|
},
|
|
|
{
|
|
|
title: '第三方点击监测链接',
|
|
|
- dataIndex: 'clickTrackUrl',
|
|
|
- scopedSlots: { customRender: 'clickTrackUrl' },
|
|
|
+ dataIndex: 'click_track_url',
|
|
|
+ scopedSlots: { customRender: 'click_track_url' },
|
|
|
align: 'center',
|
|
|
- key: 'clickTrackUrl',
|
|
|
+ key: 'click_track_url',
|
|
|
width: 300
|
|
|
},
|
|
|
{
|
|
|
title: '第三方actionBar监测链接',
|
|
|
- dataIndex: 'actionbarClickUrl',
|
|
|
- scopedSlots: { customRender: 'actionbarClickUrl' },
|
|
|
+ dataIndex: 'actionbar_click_url',
|
|
|
+ scopedSlots: { customRender: 'actionbar_click_url' },
|
|
|
align: 'center',
|
|
|
- key: 'actionbarClickUrl',
|
|
|
+ key: 'actionbar_click_url',
|
|
|
width: 300
|
|
|
}
|
|
|
]
|
|
@@ -3688,10 +3688,13 @@ export default {
|
|
|
if (res.success) {
|
|
|
Promise.all([formProjectData, formOptimizeData, formMaterialData])
|
|
|
.then(res => {
|
|
|
+ console.log(res, this.formInformaData)
|
|
|
if (
|
|
|
!this.showCreativeData ||
|
|
|
this.showCheckPerson.length === 0 ||
|
|
|
- this.multipleBidData.length === 0
|
|
|
+ this.multipleBidData.length === 0 ||
|
|
|
+ !this.formInformaData.campaignName ||
|
|
|
+ !this.formInformaData.groupName
|
|
|
) {
|
|
|
this.$message.error('请填写完整')
|
|
|
return
|