123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <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-input placeholder="请输入日期" v-model="queryParam.stateDate"></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>
- <!-- 操作按钮区域 -->
- <div class="table-operator">
- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
- <a-button type="primary" icon="import">导入</a-button>
- </a-upload>
- <a target="_blank" href="http://api.tjyourong.com.cn/jeecg-boot/ureport/preview?_u=mysql:%E8%B6%A3%E7%BA%A6%E4%BC%9A%E6%97%A5%E6%8A%A5-%E5%BF%AB%E6%89%8B.ureport.xml">趣头条日报预览</a>
- </div>
- <!-- table区域-begin -->
- <div>
- <a-table
- ref="table"
- size="middle"
- bordered
- rowKey="id"
- :columns="columns"
- :dataSource="dataSource"
- :pagination="ipagination"
- :loading="loading"
- @change="handleTableChange">
- <span slot="action" slot-scope="text, record">
- <a @click="handleEdit(record)">编辑</a>
- <a-divider type="vertical" />
- <a-dropdown>
- <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
- <a-menu slot="overlay">
- <a-menu-item>
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
- <a>删除</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- </span>
- </a-table>
- </div>
- <!-- table区域-end -->
- <!-- 表单区域 -->
- <kuaishouChannelRegInfo-modal ref="modalForm" @ok="modalFormOk"></kuaishouChannelRegInfo-modal>
- </a-card>
- </template>
- <script>
- import KuaishouChannelRegInfoModal from './modules/KuaishouChannelRegInfoModal'
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- export default {
- name: "KuaishouChannelRegInfoList",
- mixins:[JeecgListMixin],
- components: {
- KuaishouChannelRegInfoModal
- },
- data () {
- return {
- description: '快手渠道注册信息表管理页面',
- // 表头
- columns: [
- {
- title: '日期',
- align:"center",
- dataIndex: 'stateDate'
- },
- {
- title: '渠道号',
- align:"center",
- dataIndex: 'channelCode'
- },
- {
- title: '注册数',
- align:"center",
- dataIndex: 'regNum'
- },
- {
- title: '资料完善率',
- align:"center",
- dataIndex: 'perfectDataRate'
- },
- {
- title: '男高占比',
- align:"center",
- dataIndex: 'maleRatio'
- },
- ],
- url: {
- list: "/ctop/kuaishouChannelRegInfo/list",
- delete: "/ctop/kuaishouChannelRegInfo/delete",
- deleteBatch: "/ctop/kuaishouChannelRegInfo/deleteBatch",
- exportXlsUrl: "ctop/kuaishouChannelRegInfo/exportXls",
- importExcelUrl: "/ctop/kuaishouChannelRegInfo/importExcel",
- },
- }
- },
- computed: {
- importExcelUrl: function(){
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
- }
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- @import '~@assets/less/common.less'
- </style>
|