|
|
@@ -0,0 +1,85 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <!--顶部显示-->
|
|
|
+ <el-breadcrumb class="heading">
|
|
|
+ <el-breadcrumb-item :to="{ path: '/' }">平台首页</el-breadcrumb-item>
|
|
|
+ <el-breadcrumb-item>大港油田公司市场管理信息统计表</el-breadcrumb-item>
|
|
|
+ </el-breadcrumb>
|
|
|
+
|
|
|
+ <!--内框顶部显示-->
|
|
|
+ <el-card class="box-card" style="height: calc(100vh - 115px);position:relative">
|
|
|
+ <div slot="header">
|
|
|
+ <span>
|
|
|
+ <i class="icon icon-table2"></i> 大港油田公司市场管理信息统计表
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!--内框表格显示-->
|
|
|
+ <el-table id="rebateSetTable" :data="entityList" size="mini" border height="calc(100vh - 243px)" style="width: 100%"
|
|
|
+ @sort-change="orderby" >
|
|
|
+ <!--内框表格剩余栏显示-->
|
|
|
+ <el-table-column label="日期" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="准入管理">
|
|
|
+ <el-table-column label="新准入" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="增项" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="年审" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="变更" width="100px" sortable align="center"></el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="目录管理">
|
|
|
+ <el-table-column label="自建项目" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="优势项目" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="关联交易" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="战略合作" width="100px" sortable align="center"></el-table-column>
|
|
|
+ <el-table-column label="特殊业务" width="100px" sortable align="center"></el-table-column>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <!-- 分页 -->
|
|
|
+ <el-pagination
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-sizes="[10, 15, 20, 25]"
|
|
|
+ :page-size="size"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="currentItemCount"
|
|
|
+ ></el-pagination>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+<script>
|
|
|
+import api from '@/api/oilsupplier/select'
|
|
|
+
|
|
|
+export default {
|
|
|
+ created () {
|
|
|
+
|
|
|
+ },
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ // 定义列表数据
|
|
|
+ entityList: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ methods: {
|
|
|
+
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style>
|
|
|
+.eldialog .el-input__inner {
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+.eldialog .el-textarea__inner {
|
|
|
+ border: none;
|
|
|
+ resize: none;
|
|
|
+ height: 70px;
|
|
|
+}
|
|
|
+</style>
|
|
|
+
|