Przeglądaj źródła

添加数据导入页面

syh 5 lat temu
rodzic
commit
4620edc404

+ 153 - 0
src/views/report/BytedancePlanDailyReportList.vue

@@ -0,0 +1,153 @@
+<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" :format='YYYY-MM-DD'/>
+            </a-form-item>
+          </a-col>
+          <a-col :md="6" :sm="8">
+            <a-form-item label="渠道号">
+              <a-input placeholder="请输入渠道号" v-model="queryParam.advertiserId"></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>
+
+          <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 -->
+
+    <!-- 表单区域 -->
+    <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'
+  import moment from 'moment'
+</style>

Plik diff jest za duży
+ 467 - 0
src/views/report/modules/BytedancePlanDailyReportModal.vue