123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <a-card :bordered="false">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="24">
- <a-col :md="6" :sm="8">
- <a-form-item label="日期">
- <a-date-picker v-model="queryParam.statDatetime"/>
- </a-form-item>
- </a-col>
- <!-- <a-col :md="6" :sm="8">
- <a-form-item label="渠道号">
- <a-input placeholder="请输入渠道号" v-model="queryParam.planCode"></a-input>
- </a-form-item>
- </a-col> -->
- <a-col :md="6" :sm="8" >
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- table区域-begin -->
- <div>
- <a-table
- ref="table"
- size="middle"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
- @change="handleTableChange">
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit(record)">作业帮数据同步</a>
- </span>
- </a-table>
- </div>
- <!-- table区域-end -->
- <!-- 表单区域 -->
- <bytedancePlanDailyReport-modal ref="modalForm" @ok="modalFormOk"></bytedancePlanDailyReport-modal>
- </a-card>
- </template>
- <script>
- import BytedancePlanDailyReportModal from './modules/BytedancePlanDailyReportModal'
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- export default {
- name: "BytedancePlanDailyReportList",
- mixins:[JeecgListMixin],
- components: {
- BytedancePlanDailyReportModal
- },
- data () {
- return {
- description: '头条计划日报管理页面',
- // 表头
- columns: [
- {
- title: '渠道号',
- align:"center",
- dataIndex: 'planCode'
- },
- {
- title: '数据日期',
- align:"center",
- dataIndex: 'statDatetime'
- },
- {
- title: '展示量',
- align:"center",
- dataIndex: 'showNum'
- },
- {
- title: '点击量',
- align:"center",
- dataIndex: 'click'
- },
- {
- title: '总花费',
- align:"center",
- dataIndex: 'cost'
- },
- {
- title: '计划名称',
- align:"center",
- dataIndex: 'adName'
- },
- {
- title: '成单量',
- align:"center",
- dataIndex: 'orderNum'
- },
- {
- title: '登录线索数',
- align:"center",
- dataIndex: 'registNum'
- },
- {
- title: '操作',
- dataIndex: 'action',
- align:"center",
- scopedSlots: { customRender: 'action' },
- }
- ],
- url: {
- list: "/ctop/bytedancePlanDailyReport/list",
- delete: "/ctop/bytedancePlanDailyReport/delete",
- deleteBatch: "/ctop/bytedancePlanDailyReport/deleteBatch",
- exportXlsUrl: "ctop/bytedancePlanDailyReport/exportXls",
- importExcelUrl: "ctop/bytedancePlanDailyReport/importExcel",
- },
- }
- },
- computed: {
- importExcelUrl: function(){
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
- }
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less'
- </style>
|