123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <style lang="scss" scoped>
- .search-bar {
- display: flex;
- align-items: center;
- }
- .search-box p {
- display: inline-block;
- border: 1px solid #f2f2f2;
- border-radius: 5px;
- margin-right: 10px;
- padding: 5px 10px;
- cursor: pointer;
- }
- </style>
- <style>
- /* .data-display-statistics .ant-card-body {
- padding: 0 15px;
- } */
- .data-display-statistics .ant-col-6 {
- margin: 10px 0;
- }
- .data-display-statistics .ant-col-6 .ant-card-body {
- display: flex;
- justify-content: center;
- }
- .data-display-statistics .ant-col-6 p,
- .data-display-statistics .ant-col-6 span {
- text-align: center;
- line-height: 40px;
- font-size: 30px;
- font-weight: 600;
- color: red;
- margin: 0;
- }
- .search-box .ant-card-body {
- padding: 5px 15px;
- }
- .data-display-statistics .ant-col-6 .ant-card-body .styleElse {
- line-height: 60px;
- height: 40px;
- font-size: 16px;
- font-weight: 400;
- margin-left: 10px;
- }
- .ant-modal-wrap .yincang .ant-modal-content .ant-modal-footer {
- display: none !important;
- }
- .yincang .ant-col-6 p {
- text-align: left;
- color: red;
- font-size: 16px;
- font-weight: 500;
- }
- .ant-table-thead div {
- font-weight: 700;
- }
- .tool-tip {
- position: absolute;
- top: 65px;
- right: 10px;
- }
- th div {
- white-space: nowrap;
- }
- </style>
- <template>
- <div class="data-statistics">
- <a-row class="image-list-heading vm-panel">
- <a-row type="flex" align="middle" justify="space-between" class="panel-body">
- <div class="search-bar" style="width:100%">
- <span>账户选择:</span>
- <a-select
- v-model="projectId"
- style="width:500px"
- showSearch
- optionFilterProp="children"
- :filterOption="filterOption"
- >
- <a-select-option :value="item.projectId" v-for="item of dataElse" :key="item.id">
- {{ item.projectName }} {{
- item.mediaId == "1" ? '头条' :item.mediaId == "2"? '快手':item.mediaId == "3"?'头条内广':'快手内广'
- }} {{ item.advertiserName }}
- </a-select-option>
- </a-select>
- <span style="margin-left:10px">日期选择:</span>
- <a-date-picker v-model="statDate" format="YYYY-MM-DD" />
- <span style="margin-left:10px">返点比例:</span>
- <a-input-number
- :min="1"
- :max="10"
- :step="0.01"
- v-model="discount"
- placeholder="请输入折扣"
- style="width:100px"
- />
- <a-button type="primary" style="margin:10px" @click="addUser">搜索</a-button>
- <a-button
- type="primary"
- icon="reload"
- @click="getDataReset"
- style="background-color:#67c23a;border-color:#67c23a"
- >刷新</a-button
- >
- </div>
- </a-row>
- </a-row>
- <a-row :gutter="10" style="margin-top:10px">
- <a-col :span="24">
- <a-card
- style="width:100%"
- :tabList="tabListNoTitle"
- :activeTabKey="noTitleKey"
- @tabChange="key => onTabChange(key, 'noTitleKey')"
- >
- <div style="display:flex;margin-bottom:15px">
- <!-- <a-select style="width: 120px" v-model="statHour" @change="getElseData" allowClear>
- <a-select-option v-for="item of 24" :key="item - 1" :value="item - 1">{{ item - 1 }}</a-select-option>
- </a-select> -->
- <a-button type="primary" @click="exportExcel">导出</a-button>
- </div>
- <a-table
- size="middle"
- :columns="columns"
- :dataSource="data"
- bordered
- id="outTable"
- :pagination="false"
- :scroll="{ x: true }"
- :loading="loading"
- >
- </a-table>
- </a-card>
- </a-col>
- </a-row>
- </div>
- </template>
- <script>
- import ARow from 'ant-design-vue/es/grid/Row'
- import ACol from 'ant-design-vue/es/grid/Col'
- import countTo from 'vue-count-to'
- import moment from 'moment'
- import { getDailyReport } from '@api/statistics'
- import { getAction, postAction, downFile, downFilePost } from '@/api/manage'
- import axios from 'axios'
- import lifting from '../components/lifting'
- import timeCheck from '../components/timeCheck'
- import Treeselect from '../components/Treeselect.vue'
- import { mapGetters } from 'vuex'
- // import { JeecgListMixin } from '@/mixins/ipagination'
- var length = 0
- var active = 1
- const columns = [
- {
- title: '投放设备',
- dataIndex: 'systemType',
- scopedSlots: { customRender: 'systemType' },
- align: 'center'
- },
- {
- title: '分类',
- dataIndex: 'authName',
- scopedSlots: { customRender: 'authName' },
- align: 'center'
- },
- {
- title: '现金花费',
- dataIndex: 'charge',
- align: 'center'
- },
- {
- title: '账户激活量',
- dataIndex: 'activation',
- align: 'center'
- },
- {
- title: '激活成本',
- dataIndex: 'activationCost',
- align: 'center',
- scopedSlots: { customRender: 'activationCost' }
- },
- // {
- // title: '预估成本',
- // dataIndex: 'estimatedCost',
- // align: 'center',
- // scopedSlots: { customRender: 'estimatedCost' }
- // }
- ]
- const columnsGroup = columns
- export default {
- name: 'data-display-statistics',
- components: {
- ACol,
- ARow,
- countTo,
- lifting,
- timeCheck,
- Treeselect
- },
- // mixins: [JeecgListMixin],
- data: function() {
- return {
- statDate: moment(new Date()),
- title: '账户数据展示',
- show: true,
- data: [],
- dataAll: null,
- columns: columns,
- options: [],
- list: [],
- appId: [],
- tabListNoTitle: [
- {
- key: 'day',
- tab: '安卓'
- },
- {
- key: 'group',
- tab: 'ios'
- }
- ],
- noTitleKey: 'day',
- discount: 1.06,
- date: '',
- loading: false,
- dataElse: [],
- projectId: 50
- }
- },
- filters: {
- formatDate: function(value) {
- let date = new Date(value)
- let y = date.getFullYear()
- let MM = date.getMonth() + 1
- MM = MM < 10 ? '0' + MM : MM
- let d = date.getDate()
- d = d < 10 ? '0' + d : d
- let h = date.getHours()
- h = h < 10 ? '0' + h : h
- let m = date.getMinutes()
- m = m < 10 ? '0' + m : m
- let s = date.getSeconds()
- s = s < 10 ? '0' + s : s
- return y + '-' + MM + '-' + d
- },
- toFixtwo: function(value) {
- if (value) {
- return value.toFixed(2)
- } else {
- return 0.0
- }
- },
- getBo: function(value) {
- if (value) {
- return (value * 100).toFixed(2) + '%'
- } else {
- return '0.00%'
- }
- }
- },
- methods: {
- moment,
- filterOption(input, option) {
- return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- },
- ...mapGetters(['nickname', 'avatar', 'userInfo']),
- getParticipateList() {
- getAction('/ctop/projectMember/participateList', {
- userId: this.userInfo().id
- }).then(res => {
- if (res.code == 0) {
- this.dataElse = res.result
- }
- })
- },
- onTabChange(key, type) {
- console.log(key, type)
- this[type] = key
- this.data = []
- if (key == 'day') {
- this.columns = columns
- this.data = this.dataAll.android.map((item, index) => {
- return {
- ...item,
- key: index
- }
- })
- } else {
- this.columns = columnsGroup
- this.data = this.dataAll.ios.map((item, index) => {
- return {
- ...item,
- key: index
- }
- })
- }
- // this.ipagination.total = this.data.length
- // this.ipagination.current = 1
- },
- disabledDate(current) {
- return current && current > moment().subtract(1, 'day')
- },
- getDataReset() {
- this.addUser()
- },
- addUser() {
- var that = this
- // if (this.appId.length > 0 && this.date != '') {
- that.getDailyReport()
- // } else {
- // this.$message.error('请选择账户及时间')
- // }
- },
- getDailyReport() {
- var params = {}
- params.projectId = this.projectId
- params.disCount = this.discount
- params.statDate = this.statDate.format('YYYY-MM-DD')
- this.data = []
- this.loading = true
- postAction('/ctop/yiche/report/hourReport', params).then(res => {
- if (res.success) {
- this.loading = false
- this.dataAll = res.result
- console.log(res)
- if (this.noTitleKey == 'day') {
- if (res.result.android) {
- this.data = res.result.android.map((item, index) => {
- return {
- ...item,
- key: index
- }
- })
- } else {
- this.data = []
- }
- } else {
- if (res.result.ios) {
- this.data = res.result.ios.map((item, index) => {
- return {
- ...item,
- key: index
- }
- })
- } else {
- this.data = []
- }
- }
- // this.ipagination.total = this.data.length
- }
- })
- },
- getDate(value) {
- if (value) {
- let date = new Date(value)
- let y = date.getFullYear()
- let MM = date.getMonth() + 1
- MM = MM < 10 ? '0' + MM : MM
- let d = date.getDate()
- d = d < 10 ? '0' + d : d
- this.date = y + '-' + MM + '-' + d
- } else {
- let date = new Date()
- let y = date.getFullYear()
- let MM = date.getMonth() + 1
- MM = MM < 10 ? '0' + MM : MM
- let d = date.getDate()
- d = d < 10 ? '0' + d : d
- this.date = y + '-' + MM + '-' + d
- }
- },
- 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/exportHourReport', params).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 = name + '-时报' //下载后文件名
- document.body.appendChild(downloadElement)
- downloadElement.click() //点击下载
- document.body.removeChild(downloadElement) //下载完成移除元素
- window.URL.revokeObjectURL(href) //释放掉blob对象
- })
- }
- },
- watch: {},
- distoryed() {},
- mounted: function() {
- this.getParticipateList()
- }
- }
- </script>
|