12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022 |
- <template>
- <div class="vsummary">
- <div class="xiangmuxuanze" >
- <span>项目选择:</span>
- <Treeselect :appId.sync="appId" request="2,4" style="display: inline-block;position: relative;top: 10px;"/>
- </div>
- <div class="timeDiv">
- <div style='display:flex;align-items: center;'>
- <span>时间范围:</span>
- <span @click="opendate">
- <DatePicker :openOptions='openOptions' :parentDate='dateValue' left='-100px'></DatePicker>
- </span>
- </div>
- <a-button type="primary" @click="searchRes">查询</a-button>
- </div>
- <!-- <div style="margin:15px 0" class="btndiv">
- <a-button type="primary" @click="customColumns">自定义列</a-button>
- <a-button type="default" style="float:right" @click="exportExcel" id="mybtn" v-show="exportExcelIsOk">导出报表</a-button>
- </div> -->
- <!-- <a-modal v-model="visible" title="自定义列" on-ok="handleOk" width="65%">
- <template slot="footer">
- <a-button key="back" @click="handleCancel">取消</a-button>
- <a-button key="submit" type="primary" :loading="loading" @click="handleOk">应用</a-button>
- </template>
- <a-input-search placeholder="输入要添加的列的名称" style="width: 40%" enter-button @search="onSearch" />
- <div class="zhuti">
- <div class="addlist">
- <p>可添加的列</p>
- <div class="selectionList">
- <selectComponent
- :showCol="listNum"
- @getshowlist="getshowlist"
- :fixedCol="columnsFixd"
- />
- </div>
- </div>
- <div class="listNum">
- <p>已选{{listNum.length}}列</p>
- <a-button id="btn" type="link" @click="clearAllList">清空全部</a-button>
- <ul class="selectlist">
- <li v-for="(item,index) in listNum" :key="index">
- <span v-if=" index <4">
- <a-icon type="lock" />
- <span class="listText">{{item.title}}</span>
- </span>
- <span v-else-if=" index >=4">
- <a-icon type="menu" style="color:#ccc" />
- <span class="listText">{{item.title}}</span>
- <a-icon
- type="close"
- @click="deleteCol(item,index)"
- id="closeStyle"
- style="fontSize:12px;"
- />
- </span>
- </li>
- </ul>
- </div>
- </div>
- </a-modal> -->
-
- <a-modal v-model="relevantPeopleVisible" title="相关人员" :footer="null" :centered='true'>
- <p>编导:{{relevantPeopleData.planName || '暂无数据'}}</p>
- <p>剪辑:{{relevantPeopleData.clipName || '暂无数据'}}</p>
- <p>拍摄:{{relevantPeopleData.shotName || '暂无数据'}}</p>
- </a-modal>
- <a-modal v-model="Videovisible" title="视频详情" @ok="videoOk" :footer="null" width="50%">
- <video
- @click.stop
- class="video"
- :src="videoUrl"
- controls="controls"
- style="height:600px;width:100%"
- >您的浏览器不支持 video 标签。</video>
- </a-modal>
- <!-- 报表区域 -->
- <div class="tableBox">
- <div class="tableTop">
- <!-- <a-tooltip>
- <template slot="title">
- 日期选择具体某一天之后,这里可以查看具体的时间段数据哦~
- </template>
- <a-select placeholder="请选择具体时间段" style="width: 160px" @change="timeChange" v-model='timeDefaultValue' label-in-value class="selectTime" v-show="dateValue[0].format('YYYY-MM-DD')==dateValue[1].format('YYYY-MM-DD')" :disabled='accountId.length==0'>
- <a-select-option v-for="(i,index) in 24 " :key="index" :value="index" >{{index>=10 ? `00:00-${index}:59` :`00:00-0${index}:59`}}</a-select-option>
- </a-select>
- </a-tooltip> -->
- <a-button type="primary" @click="customColumns">自定义列</a-button>
- <a-button type="default" style="float:right" @click="exportExcel" id="mybtn" v-show="exportExcelIsOk">导出报表</a-button>
- <!-- <a-button type='primary' class="export" @click="exportExcel">导出报表</a-button>
- <a-button type='primary' class="add" @click="customColumns" >自定义列</a-button> -->
- </div>
- <!-- <a-table
- size="middle"
- :columns="columns"
- :dataSource="tableData"
- bordered
- id="outTable"
- :pagination="false"
- :scroll="{ x: scrollX }"
- :loading="loading"
- ref="accountTable"
- :width="tableWidth"
- @change="sort"
- style="word-break: break-all;font-size:16px;font-weight:600"
- >
- <span slot="ctr" slot-scope="ctr">{{ ctr | toPercentage }}</span>
- <span slot="cost" slot-scope="cost">{{ cost | decimalsHandle }}</span>
- <span slot="clickMaterial" slot-scope="clickMaterial">{{ clickMaterial | formatCurrency }}</span>
- <span slot="showMaterial" slot-scope="showMaterial">{{ showMaterial | formatCurrency }}</span>
- <span slot="convertMaterial" slot-scope="convertMaterial">{{ convertMaterial | formatCurrency }}</span>
- <span slot="play25FeedBreak" slot-scope="play25FeedBreak">{{ play25FeedBreak | formatCurrency }}</span>
- <span slot="play50FeedBreak" slot-scope="play50FeedBreak">{{ play50FeedBreak | formatCurrency }}</span>
- <span slot="play75FeedBreak" slot-scope="play75FeedBreak">{{ play75FeedBreak | formatCurrency }}</span>
- <span slot="play100FeedBreak" slot-scope="play100FeedBreak">{{ play100FeedBreak | formatCurrency }}</span>
- <span slot="nextDayOpen" slot-scope="nextDayOpen">{{ nextDayOpen | formatCurrency }}</span>
- <span slot="downloadFinish" slot-scope="downloadFinish">{{ downloadFinish | formatCurrency }}</span>
- <span slot="downloadStart" slot-scope="downloadStart">{{ downloadStart | formatCurrency }}</span>
- <span slot="likeMaterial" slot-scope="likeMaterial">{{ likeMaterial | formatCurrency }}</span>
- <span slot="shareMaterial" slot-scope="shareMaterial">{{ shareMaterial | formatCurrency }}</span>
- <span slot="register" slot-scope="register">{{ register | formatCurrency }}</span>
- <span slot="follow" slot-scope="follow">{{ follow | formatCurrency }}</span>
- <span slot="formCount" slot-scope="formCount">{{ formCount | formatCurrency }}</span>
- <span slot="formCountCost" slot-scope="formCountCost">{{ formCountCost | decimalsHandle }}</span>
- <span slot="aClick" slot-scope="aClick">{{ aClick | formatCurrency }}</span>
- <span slot="photoShow" slot-scope="photoShow">{{ photoShow | formatCurrency }}</span>
- <span slot="photoClick" slot-scope="photoClick">{{ photoClick | formatCurrency }}</span>
- <span slot="bClick" slot-scope="bClick">{{ bClick | formatCurrency }}</span>
- <span slot="active" slot-scope="active">{{ active | formatCurrency }}</span>
- <span slot="submit" slot-scope="submit">{{ submit | formatCurrency }}</span>
- <span slot="eventCreditGrantLandingPage" slot-scope="eventCreditGrantLandingPage">{{ eventCreditGrantLandingPage | formatCurrency }}</span>
- <span slot="submitCost" slot-scope="submitCost">{{ submitCost | decimalsHandle }}</span>
- <span slot="eventCreditGrantLandingPageCost" slot-scope="eventCreditGrantLandingPageCost">{{ eventCreditGrantLandingPageCost | decimalsHandle }}</span>
- <span slot="submitRate" slot-scope="submitRate">{{ submitRate | toPercentage }}</span>
- <span slot="eventCreditGrantLandingPageRate" slot-scope="eventCreditGrantLandingPageRate">{{ eventCreditGrantLandingPageRate | toPercentage }}</span>
- <span
- slot="play25FeedBreakRate"
- slot-scope="play25FeedBreakRate"
- >{{ play25FeedBreakRate | toPercentage }}</span>
- <span slot="playOverRate" slot-scope="playOverRate">{{ playOverRate | toPercentage }}</span>
-
- <span slot="convertRate" slot-scope="convertRate">{{ convertRate | toPercentage }}</span>
- <span slot="nextDayOpenRate" slot-scope="nextDayOpenRate">{{ nextDayOpenRate | toPercentage }}</span>
- <span slot="ctr" slot-scope="ctr">{{ ctr | toPercentage }}</span>
- <span slot="cpc" slot-scope="cpc">{{ cpc | decimalsHandle }}</span>
- <span slot="cpm" slot-scope="cpm">{{ cpm | decimalsHandle }}</span>
- <span slot="activeRate" slot-scope="activeRate">{{ activeRate | toPercentage }}</span>
- <span
- slot="installFinishRate"
- slot-scope="installFinishRate"
- >{{ installFinishRate | toPercentage }}</span>
- <span slot="validPlayRate" slot-scope="validPlayRate">{{ validPlayRate | toPercentage }}</span>
- <span slot="activePayCost" slot-scope="activePayCost">{{ activePayCost | decimalsHandle }}</span>
- <span slot="nextDayOpenCost" slot-scope="nextDayOpenCost">{{ nextDayOpenCost | decimalsHandle }}</span>
- <span slot="validPlayCost" slot-scope="validPlayCost">{{ validPlayCost | decimalsHandle }}</span>
- <span slot="activeCost" slot-scope="activeCost">{{ activeCost | decimalsHandle }}</span>
- <span
- slot="gameAddictionCost"
- slot-scope="gameAddictionCost"
- >{{ gameAddictionCost | decimalsHandle }}</span>
- <span
- slot="downloadFinishCost"
- slot-scope="downloadFinishCost"
- >{{ downloadFinishCost | decimalsHandle }}</span>
- <span
- slot="downloadStartCost"
- slot-scope="downloadStartCost"
- >{{ downloadStartCost | decimalsHandle }}</span>
- <span
- slot="installFinishCost"
- slot-scope="installFinishCost"
- >{{ installFinishCost | decimalsHandle }}</span>
- <span slot="convertCost" slot-scope="convertCost">{{ convertCost | decimalsHandle }}</span>
-
- <span
- slot="downloadStartRate"
- slot-scope="downloadStartRate"
- >{{ downloadStartRate | toPercentage }}</span>
- <span
- slot="downloadFinishRate"
- slot-scope="downloadFinishRate"
- >{{ downloadFinishRate | toPercentage }}</span>
- <span slot="activeRate" slot-scope="activeRate">{{ activeRate | toPercentage }}</span>
- <span
- slot="activeRegisterRate"
- slot-scope="activeRegisterRate"
- >{{ activeRegisterRate | toPercentage }}</span>
- <span
- slot="gameAddictionRate"
- slot-scope="gameAddictionRate"
- >{{ gameAddictionRate | toPercentage }}</span>
- <span slot="nextDayOpenRate" slot-scope="nextDayOpenRate">{{ nextDayOpenRate | toPercentage }}</span>
-
-
- </a-table> -->
- <a-table
- size="middle"
- :columns="columns"
- :dataSource="data"
- bordered
- id="outTable"
- :pagination="ipagination"
- :scroll="{ x: scrollX }"
- :loading="loading"
- ref="vSummaryTable"
- :width="tableWidth"
- @customHeaderCell="customHeaderCell(columns)"
- @change="sort"
- style="word-break: break-all;"
- >
- <div slot="videoU" slot-scope="test,records">
- <img
- :src="records.coverUrl"
- alt
- style="width:80px"
- @click="openVideo(records.url)"
- @load="loadShow"
- />
- </div>
- <span slot="ctr" slot-scope="ctr">{{ ctr | toPercentage }}</span>
- <span
- slot="play25FeedBreakRate"
- slot-scope="play25FeedBreakRate"
- >{{ play25FeedBreakRate | toPercentage }}</span>
- <span slot="playOverRate" slot-scope="playOverRate">{{ playOverRate | toPercentage }}</span>
- <!-- 新加数据 -->
- <span slot="convertRate" slot-scope="convertRate">{{ convertRate | toPercentage }}</span>
- <span slot="nextDayOpenRate" slot-scope="nextDayOpenRate">{{ nextDayOpenRate | toPercentage }}</span>
- <span slot="ctr" slot-scope="ctr">{{ ctr | toPercentage }}</span>
- <span slot="cpc" slot-scope="cpc">{{ cpc | tofixed }}</span>
- <span slot="cpm" slot-scope="cpm">{{ cpm | tofixed }}</span>
- <span slot="activeRate" slot-scope="activeRate">{{ activeRate | toPercentage }}</span>
- <span
- slot="installFinishRate"
- slot-scope="installFinishRate"
- >{{ installFinishRate | toPercentage }}</span>
- <span slot="validPlayRate" slot-scope="validPlayRate">{{ validPlayRate | tofixed }}</span>
- <span slot="activePayCost" slot-scope="activePayCost">{{ activePayCost | tofixed }}</span>
- <span slot="nextDayOpenCost" slot-scope="nextDayOpenCost">{{ nextDayOpenCost | tofixed }}</span>
- <span slot="validPlayCost" slot-scope="validPlayCost">{{ validPlayCost | tofixed }}</span>
- <span slot="activeCost" slot-scope="activeCost">{{ activeCost | tofixed }}</span>
- <span
- slot="gameAddictionCost"
- slot-scope="gameAddictionCost"
- >{{ gameAddictionCost | tofixed }}</span>
- <span
- slot="downloadFinishCost"
- slot-scope="downloadFinishCost"
- >{{ downloadFinishCost | tofixed }}</span>
- <span
- slot="downloadStartCost"
- slot-scope="downloadStartCost"
- >{{ downloadStartCost | tofixed }}</span>
- <span
- slot="installFinishCost"
- slot-scope="installFinishCost"
- >{{ installFinishCost | tofixed }}</span>
- <span slot="convertCost" slot-scope="convertCost">{{ convertCost | tofixed }}</span>
- <!-- -->
- <span
- slot="downloadStartRate"
- slot-scope="downloadStartRate"
- >{{ downloadStartRate | toPercentage }}</span>
- <span
- slot="downloadFinishRate"
- slot-scope="downloadFinishRate"
- >{{ downloadFinishRate | toPercentage }}</span>
- <span slot="activeRate" slot-scope="activeRate">{{ activeRate | toPercentage }}</span>
- <span
- slot="activeRegisterRate"
- slot-scope="activeRegisterRate"
- >{{ activeRegisterRate | toPercentage }}</span>
- <span
- slot="gameAddictionRate"
- slot-scope="gameAddictionRate"
- >{{ gameAddictionRate | toPercentage }}</span>
- <span slot="nextDayOpenRate" slot-scope="nextDayOpenRate">{{ nextDayOpenRate | toPercentage }}</span>
- <span slot="cpm" slot-scope="cpm">{{ cpm | tofixed }}</span>
- <span slot="statDatetime" slot-scope>{{ timedata[0]+'~'+timedata[1]}}</span>
- <span slot="operation" slot-scope="text,record">
- <a href="javascript:;" @click.stop="showRelevantPeople(record)">查看相关人员</a>
- </span>
- </a-table>
- </div>
- <customColumn :visible='visible' :listNum='listNum' :fiexColumn='columnsFixd' :mediaType='2' @closeCustomColumn='closeCustomColumn' @changeColumn='changeColumn' />
- </div>
- </template>
- <script>
- import moment from 'moment'
- import { JeecgListMixin } from '@/mixins/ipagination'
- import { getAction, postAction, downFile, downFilePost } from '@/api/manage'
- import selectComponent from './selectComponent'
- import Treeselect from '../components/Treeselect'
- import DatePicker from '@/components/DatePicker'
- import customColumn from '../components/customColumn.vue'
- const columnsFixd = [
- {
- title: '视频',
- dataIndex: 'videoU',
- align: 'center',
- width: 100,
- fixed: 'left',
- key: 'videoU',
- scopedSlots: { customRender: 'videoU' }
- },
- {
- title: '视频ID',
- dataIndex: 'signature',
- align: 'center',
- width: 120,
- fixed: 'left'
- },
- {
- title: '项目名称',
- dataIndex: 'projectName',
- align: 'center',
- width: 100,
- fixed: 'left'
- },
- {
- title:'相关人员',
- dataIndex:'operation',
- key:'operation',
- scopedSlots: { customRender: 'operation' },
- align: 'center',
- width:100,
- fixed: 'left'
- },
- {
- title: '上传时间',
- dataIndex: 'materialUploadTime',
- scopedSlots: { customRender: 'materialUploadTime' },
- align: 'center',
- sorter: () => {}
- },
- {
- title: '消耗',
- dataIndex: 'cost',
- scopedSlots: { customRender: 'cost' },
- align: 'center',
- sorter: () => {}
- },
- {
- title: '点击数',
- dataIndex: 'clickMaterial',
- align: 'center',
- scopedSlots: { customRender: 'clickMaterial' },
- sorter: () => {}
- // (a, b) => a.clickMaterial - b.clickMaterial
- },
- {
- title: '点击率',
- dataIndex: 'ctr',
- align: 'center',
- scopedSlots: { customRender: 'ctr' },
- sorter: () => {}
- },
- {
- title: '展示数',
- dataIndex: 'showMaterial',
- align: 'center',
- scopedSlots: { customRender: 'showMaterial' },
- sorter: () => {}
- },
- {
- title: '25%进度播放率',
- dataIndex: 'play25FeedBreakRate',
- align: 'center',
- scopedSlots: { customRender: 'play25FeedBreakRate' },
- sorter:() => {}
- },
- {
- title: '播完率',
- dataIndex: 'playOverRate',
- align: 'center',
- tip: '表示广告在投放期内的预估花费金额。当天数据可能会有波动,次日稳定',
- scopedSlots: { customRender: 'playOverRate' },
- sorter: () => {}
- },
- {
- title: '转化数',
- dataIndex: 'convertMaterial',
- align: 'center',
- scopedSlots: { customRender: 'convertMaterial' },
- sorter: () => {}
- },
- {
- title: '转化率',
- dataIndex: 'convertRate',
- align: 'center',
- scopedSlots: { customRender: 'convertRate' },
- sorter: () => {}
- }
- ]
- let show = 0
- export default {
- data() {
- return {
- type:0,
- dateValue:[moment(),moment()],
- openOptions:false,
- relevantPeopleVisible:false,
- relevantPeopleData:{},
- roleCode: localStorage.getItem('roleCode'),
- //下拉选择框的数据
- projectArr:[],
- selectValue:'',
- appId:[],
- //设置表格的列宽
- tableWidth: '',
- //gudinglie
- columnsFixd: columnsFixd,
- //是否打开视频
- Videovisible: false,
- videoUrl: '',
- //是否显示导出按钮
- exportExcelIsOk: true,
- consumeValue: 0,
- columns: [...columnsFixd],
- addColumns: [],
- data: [],
- totalSelect: 0,
- daysFlag: false,
- dateRange: [],
- dataElse: [],
- loading: false,
- visible: false,
- //自定义列的搜索框
- searchInput: '',
- //弹出框中现实的选中列数
- scrollX: 0,
- listNum: [],
- //
- form: [],
- videoID: '',
- timedata: []
- }
- },
- mixins: [JeecgListMixin],
- components: {
- selectComponent,
- Treeselect,
- DatePicker,
- customColumn,
- },
- methods: {
- closeCustomColumn(){
- this.visible=false;
- },
- //自定义之后修改父元素表头
- changeColumn(val){
- this.columns=[...val];
- if(this.columns.length> this.columnsFixd.length){
- this.scrollX=2000+200*(this.columns.length-this.columnsFixd.length)
- }else{
- this.scrollX=2000
- }
- },
- // 日期的开关
- //打开日期框
- opendate(){
- this.openOptions=!this.openOptions;
- // console.log(this.openOptions)
- },
- opendateClose(){
- this.openOptions=false;
- // console.log(this.openOptions)
- },
- // 查看相关人员
- showRelevantPeople(record){
- this.relevantPeopleVisible=true;
- console.log(record)
- getAction('/ctop/materialAscription/getDetail',{
- code:record.signature
- }).then(res=>{
- console.log(res);
- this.relevantPeopleData=[];
- if(res.result&&res.success){
- this.relevantPeopleData=res.result
- }
-
- })
- },
- sort(pagination, filters, sorter, { currentDataSource }){
- console.log(pagination, filters, sorter)
- if(sorter.order == 'ascend'){
- this.HttpPost(sorter.columnKey+'+')
- }else if(sorter.order == 'descend'){
- this.HttpPost(sorter.columnKey+'-')
- }
- },
- moment,
- //select切换---项目
- selectChange(key){
- this.selectValue=key;
- },
- //打开视频
- openVideo(val) {
- this.Videovisible = true
- this.videoUrl = val
- },
- videoOk() {
- this.Videovisible = false
- },
- disabledDate(current) {
- // console.log(current)
- return current && current > moment().subtract(1, 'day')
- },
- consumeOnChange() {},
- //查询按钮
- searchRes() {
- this.date = []
-
- this.HttpPost()
-
- },
- //网络请求table数据函数
- HttpPost(sort){
- this.loading=true;
- show = 0
- postAction('/toutiao/videoReportDaily/videoInfoListTotal', {
- startDate: this.dateValue[0].format('YYYY-MM-DD'),
- endDate: this.dateValue[1].format('YYYY-MM-DD'),
- pageNo:this.ipagination.current,
- pageSize:this.ipagination.pageSize,
- accountIds:this.appId,
- sort:sort?sort:''
- }).then(res => {
- let resArr = []
-
- if (res.success) {
- // let result = res.result
- // this.data.push({ ...result, key: 1 })
- // result.map((item, index) => {
- // item.key = index
- // })
- this.data = res.result.list.map((item,index)=>{
- return {
- ...item,
- key:index
- }
- })
- this.ipagination.total = res.result.total
- this.loading = false
-
- }else{
- this.loading = false
- }
- })
- },
- //导出报表
- exportExcel() {
- // var params = {}
- // params.projectId = this.projectId
- // params.disCount = this.discount
- // params.statDate = this.statDate.format('YYYY-MM-DD')
- // var name = this.dataElse.filter(item => {
- // return item.projectId == this.projectId
- // })[0].projectName
- // downFilePost('/ctop/yiche/report/exportDailyReport', params).then(res => {
- // let blob = new Blob([res], {
- // type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
- let column = this.columns.map((item, index) => {
- return item.dataIndex
- })
- let columns=['url',...column]
-
- downFilePost('/toutiao/videoReportDaily/bytedanceVideoInfoListTotalExportExcel', {
- columns,
- signature: this.videoID,
- startDate: this.timedata[0],
- endDate: this.timedata[1],
- cost: this.consumeValue,
- accountIds:this.appId,
- }).then(res => {
- let blob = new Blob([res], {
- type:'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
- })
- let downloadElement = document.createElement('a')
- let href = window.URL.createObjectURL(blob) //创建下载的链接
- downloadElement.href = href
- downloadElement.download = this.statDate.format('YYYY-MM-DD') + '视频汇总.xlsx' //下载后文件名
- document.body.appendChild(downloadElement)
- downloadElement.click() //点击下载
- document.body.removeChild(downloadElement) //下载完成移除元素
- window.URL.revokeObjectURL(href) //释放掉blob对象
- })
- },
- //日期选择回调
- dateChange(data, dataString) {
- if (data.length) {
- this.timedata = dataString
- this.dateRange[0] = data[0]
- this.totalSelect = (data[1]._d - data[0]._d) / (24 * 60 * 60 * 1000) + 1
- this.daysFlag = true
- if (this.totalSelect > 92) {
- this.$message.error('时间跨度太长啦,选小一点好嘛?')
- this.daysFlag = false
- this.dateRange = []
- }
- } else {
- this.daysFlag = false
- this.dateRange = []
- }
- },
- //弹出框打开,自定义列
- customColumns() {
- this.visible = true
- this.listNum = [...this.columns]
- },
-
- //设置头部单元格属性
- customHeaderCell(columns) {
- // console.log(columns)
- },
- tableHandle() {
- // this.listNum = [...this.columns]
- // console.log(this.listNum.length, this.columns)
- if (this.listNum.length >= 9 || this.columns.length >= 9) {
- this.tableWidth = 160
- this.scrollX = this.columns.length * 160
- // console.log(this.scrollX)
- } else {
- this.scrollX = 2000
- }
- },
- //弹出框确定
- handleOk(e) {
- this.loading = false
- this.visible = false
- if (this.listNum.length >= 10) {
- let newlist = this.listNum.slice(columnsFixd.length)
- console.log(newlist)
- this.columns = [...columnsFixd, ...newlist]
- } else {
- this.columns = [...this.listNum]
- }
- if (this.listNum.length == 4) {
- // console.log(this.listNum.length)
- this.scrollX = 0
- this.columns.map((item, index) => {
- item.width = 500
- })
- // console.log(1)
- } else {
- this.columns.map((item, index) => {
- if (index == 2 || index == 0) {
- item.width = 150
- } else if (index == 1 || index == 2) {
- item.width = 100
- }
- })
- // console.log(2)
- }
- this.tableHandle()
- },
- //弹出框取消按钮
- handleCancel(e) {
- this.visible = false
- },
- loadShow(){
- show++
- if(this.data.length>0){
- if(show == (this.data.length*2)){
- this.data = [...this.data]
- }
- }
- },
- //弹出框里的搜索框
- onSearch(value) {
- console.log(value)
- },
- //清空全部按钮的事件
- clearAllList() {
- this.listNum = [...columnsFixd]
- console.log(this.$refs.vSummaryTable)
- },
- //li展示里的关闭按钮 删除当前被选中的这一个列
- deleteCol(item, index) {
- this.listNum = this.listNum.filter((item1, num) => {
- return num != index
- })
- },
- //从自定义列拿选择的项
- getshowlist(val) {
- var arr = []
- // console.log(val)
- if (val.length) {
- if (val.flag) {
- let newArr = val.arr
- newVal.map((item, index) => {
- // if(JSON.stringify(this.listNum).indexOf(JSON.stringify(item))==-1){
- // this.listNum.push(item); // 进行动态的操作
- // }
- var result = this.listNum.some(items => {
- if (items.dataIndex == item.dataIndex) {
- return true
- }
- })
- // console.log(result)
- if (result) {
- newArr.splice(index, 1)
- }
- })
- this.listNum = [...this.listNum, ...newArr]
- } else {
- //取消全选 清楚listNum中的val里的值
- val.arr.map((item, index) => {
- var result = this.listNum.some(items => {
- if (items.dataIndex == item.dataIndex) {
- return true
- }
- })
- // console.log(result)
- if (result) {
- this.listNum.splice(index, 1)
- }
- })
- }
- } else {
- arr = this.listNum.filter((item, index) => {
- return item.dataIndex == val.dataIndex
- })
- }
- if (arr.length) {
- var index
- this.listNum.map((item, ind) => {
- if (item.dataIndex == val.dataIndex) {
- index = ind
- }
- })
- console.log(index)
- this.listNum.splice(index, 1)
- } else {
- this.listNum.push(val)
- }
- }
- },
- watch:{
- 'ipagination.current':function(n,o){
- console.log(n,o)
- this.HttpPost()
- }
- },
- activated() {
- console.log('activated')
- // this.getParticipateList()
- this.statDate = moment().subtract(1, 'day')
- moment().format('YYYY-MM-DD_HH:mm')
- postAction('/toutiao/videoReportDaily/getColumnJson', {
- columnType: 1
- }).then(res => {
- // console.log(res)
- if (res.success) {
- // console.log(JSON.parse(res.result))
- if(res.result){
- let columns = JSON.parse(res.result)
- if (columns.length) {
- if (columns.length >= columnsFixd.length) {
- columns.map((item, index) => {
- if (index > columnsFixd.length - 1) {
- item.sorter = function(a, b) {
- return a[item.dataIndex] - b[item.dataIndex]
- }
- }
- })
- columns = columns.slice(columnsFixd.length)
- this.columns = [...columnsFixd, ...columns]
- this.tableHandle()
- }
- // console.log(this.columns)
- }
- }
-
- }
- })
- this.tableHandle();
- },
- deactivated() {
- let arr = JSON.stringify(this.columns)
- // console.log(arr)
- postAction('/toutiao/videoReportDaily/saveOrUpdateColumnJson', {
- json: arr,
- columnType: 1
- }).then(res => {
- // console.log(res)
- })
- },
- filters: {
- toPercentage(val) {
- return (val * 100).toFixed(2) + '%'
- // return val
- },
- toshowTime(val) {
- // console.log(val, this.timedata)
- // return this.timedata[0] + '~' + this.timedata[1]
- return val
- },
- tofixed(val) {
- return Number(val).toFixed(2)
- }
- },
- mounted() {
- this.columns = [...columnsFixd]
- // console.log('mounted')
- //请求自定义列的数据
- postAction('/toutiao/videoReportDaily/videoInfoListTotalExportExcelPermission').then(res => {
- console.log(res)
- if (res.success) {
- if (res.result) {
- this.exportExcelIsOk = true
- } else {
- this.exportExcelIsOk = false
- }
- }
- })
- //进入页面默认展示昨天到今天的数据
- this.dateRange=[moment().subtract(7,'days'),moment()]
- this.timedata=[moment().subtract(7,'days').format('YYYY-MM-DD'),moment().format('YYYY-MM-DD')]
- // this.loading=true;
-
- this.HttpPost()
-
- }
- }
- </script>
- <style lang="less">
- // .ant-table .ant-table-fixed-left .ant-table-thead {
- // height: 108px !important ;
- // }
- .vsummary{
- .ant-table .ant-table-thead .ant-table-header-column .ant-table-column-title {
- // display:block;
- white-space: normal;
- word-break: break-all;
- }
- }
- </style>
- <style lang="scss" scoped>
- .vsummary {
- width: 100%;
- height: 100%;
- background: white;
- padding: 15px 30px;
- .tableBox{
- background-color: #fff;
- margin: 15px 0px;
- padding: 15px 0px;
- .tableTop{
- position: relative;
- padding-bottom: 15px;
- border-bottom: 1px solid #e0e0e0;
- .selectTime{
- margin-right: 20px;
- }
- .add{
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- }
- }
- .xiangmuxuanze{
- margin-bottom: 20px;
- display: flex;
- align-items: center;
- }
- .timeDiv {
- display: flex;
- justify-content: space-between;
- }
- span {
- margin-left: 5px;
- }
- .myinput {
- width: 40%;
- }
- .addlist {
- float: left;
- width: 70%;
- border: 1px solid #eee;
- .selectionList {
- padding: 10px 15px;
- height: 450px;
- overflow: auto;
- .leibie {
- .leiName {
- font-size: 26px;
- text-align: left;
- }
- }
- .jutixiang {
- display: inline-block;
- width: 32%;
- box-sizing: border-box;
- padding: 10px 3px;
- }
- }
- }
- .listNum {
- float: right;
- width: 28%;
- border: 1px solid #eee;
- position: relative;
- }
- .zhuti {
- margin-top: 15px;
- overflow: hidden;
- p {
- height: 40px;
- line-height: 20px;
- padding: 10px 15px;
- background: rgb(249, 250, 253);
- border-bottom: 1px solid #eee;
- }
- #btn {
- position: absolute;
- right: 0;
- top: 5px;
- }
- .selectlist {
- width: 100%;
- list-style: none;
- margin: 0;
- height: 450px;
- padding: 0 15px 10px;
- overflow: auto;
- li {
- width: 100%;
- padding: 5px 8px;
- margin: 6px 0;
- border-radius: 10px;
- background: rgb(248, 248, 248);
- height: 32px;
- position: relative;
- span {
- width: 80%;
- height: 100%;
- display: inline-block;
- margin: 0 10px;
- // overflow:hidden;
- // text-overflow:ellipsis;
- // white-space: nowrap;
- }
- .listText {
- position: absolute;
- top: 2;
- left: 10;
- width: 40%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- #closeStyle {
- position: absolute;
- top: 9px;
- right: 7px;
- }
- }
- }
-
- }
- </style>
|