|
@@ -312,6 +312,7 @@ import selectComponent from './selectComponent'
|
|
|
import Treeselect from '../components/Treeselect'
|
|
|
import DatePicker from '@/components/DatePicker'
|
|
|
import customColumn from '../components/customColumn.vue'
|
|
|
+import {mapGetters} from 'vuex';
|
|
|
const columnsFixd = [
|
|
|
{
|
|
|
title: '视频',
|
|
@@ -614,6 +615,7 @@ export default {
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
+ ...mapGetters(['userInfo']),
|
|
|
filterOption(input, option) {
|
|
|
return (
|
|
|
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
@@ -756,6 +758,7 @@ export default {
|
|
|
this.searchLoading=true
|
|
|
show = 0
|
|
|
postAction('/ctop/kuaishou/videoReport/list', {
|
|
|
+ userId:this.userInfo().id,
|
|
|
startDate: this.dateValue[0].format('YYYY-MM-DD'),
|
|
|
endDate: this.dateValue[1].format('YYYY-MM-DD'),
|
|
|
pageNo:this.ipagination.current,
|
|
@@ -805,6 +808,7 @@ export default {
|
|
|
}
|
|
|
downFilePost('/ctop/kuaishou/videoReport/excelV2', {
|
|
|
columns,
|
|
|
+ userId:this.userInfo().id,
|
|
|
target:this.target,
|
|
|
order:this.order,
|
|
|
startDate: this.dateValue[0].format('YYYY-MM-DD'),
|