|
@@ -38,14 +38,13 @@
|
|
</div>
|
|
</div>
|
|
<!-- /MaterialRefuse/syncCreative -->
|
|
<!-- /MaterialRefuse/syncCreative -->
|
|
<a-table :columns="columns" :dataSource="dataList" bordered :loading="loading" size="middle"
|
|
<a-table :columns="columns" :dataSource="dataList" bordered :loading="loading" size="middle"
|
|
- :pagination="ipagination" :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }">
|
|
|
|
|
|
+ :pagination="ipagination" :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange, getCheckboxProps: handleCheckboxProps}">
|
|
<!-- <div slot="videoUrl" slot-scope="videoUrl">
|
|
<!-- <div slot="videoUrl" slot-scope="videoUrl">
|
|
<video class="video" :src="videoUrl" controls="controls" style="height:200px;width:112.5px">
|
|
<video class="video" :src="videoUrl" controls="controls" style="height:200px;width:112.5px">
|
|
您的浏览器不支持 video 标签。
|
|
您的浏览器不支持 video 标签。
|
|
</video>
|
|
</video>
|
|
</div> -->
|
|
</div> -->
|
|
|
|
|
|
-
|
|
|
|
<div slot="coverUrl" slot-scope="coverUrl">
|
|
<div slot="coverUrl" slot-scope="coverUrl">
|
|
<img :src="coverUrl" controls="controls" style="height:200px;width:112.5px" />
|
|
<img :src="coverUrl" controls="controls" style="height:200px;width:112.5px" />
|
|
</div>
|
|
</div>
|
|
@@ -268,8 +267,7 @@
|
|
EditableCell,
|
|
EditableCell,
|
|
Treeselect
|
|
Treeselect
|
|
},
|
|
},
|
|
-
|
|
|
|
- data: function () {
|
|
|
|
|
|
+ data() {
|
|
return {
|
|
return {
|
|
putStatus: '0',
|
|
putStatus: '0',
|
|
title: '被拒创意列表',
|
|
title: '被拒创意列表',
|
|
@@ -322,6 +320,21 @@
|
|
updateDescription: '', //广告语的字符
|
|
updateDescription: '', //广告语的字符
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ computed: {
|
|
|
|
+ rowSelectionAllDirect() {
|
|
|
|
+ return {
|
|
|
|
+ onChange: this.onSelectChange(),
|
|
|
|
+ selectedRowKeys: this.selectedRowKeys,
|
|
|
|
+ getCheckboxProps: record => ({
|
|
|
|
+ props: {
|
|
|
|
+ disabled: record.resubmit && record.resubmit === 1,
|
|
|
|
+ name: record.id,
|
|
|
|
+ // defaultChecked: this.tableSelectDirectIds.includes(record.key)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+ },
|
|
filters: {
|
|
filters: {
|
|
typeStatus(type) {
|
|
typeStatus(type) {
|
|
// 2 - 提升应用安装;
|
|
// 2 - 提升应用安装;
|
|
@@ -373,6 +386,14 @@
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ handleCheckboxProps(record) {
|
|
|
|
+ return {
|
|
|
|
+ props: {
|
|
|
|
+ disabled: record.resubmit && record.resubmit === 1,
|
|
|
|
+ name: record.id
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
changeSlide() {
|
|
changeSlide() {
|
|
this.addUser()
|
|
this.addUser()
|
|
},
|
|
},
|