Browse Source

wanda-adm:feat > 扩展优化组件,添加分页

shaun-sheep 4 years ago
parent
commit
3d1bd64b5c

+ 2 - 2
src/components/public/adm-btn.vue

@@ -4,7 +4,7 @@
 
 <script lang="ts">
 import { Component, Vue, Prop } from "vue-property-decorator";
-
+//按钮默认样式,文字
 interface Btn {
     type: string
     title: string
@@ -14,7 +14,7 @@ interface Btn {
     name: 'adm-btn'
 })
 export default class extends Vue {
-    @Prop({ type: Object }) btnMsg: Btn
+    @Prop({ type: Object, default: '' }) btnMsg ?: Btn
 }
 </script>
 

+ 14 - 60
src/components/public/adm-multi-table.vue

@@ -11,7 +11,7 @@
             width="80"
             align="center"
 
-           >
+        >
             <template slot-scope="scope">
                 <span
                     class="el-icon-edit el-input__icon"
@@ -20,7 +20,7 @@
                 </span>
             </template>
         </el-table-column>
-        <el-table-column label="配送信息" >
+        <el-table-column label="基础信息台账">
             <el-table-column
                 prop="province"
                 label="省份"
@@ -38,7 +38,7 @@
             </el-table-column>
 
         </el-table-column>
-        <el-table-column label="地址信息">
+        <el-table-column :label="currentHeader">
             <el-table-column
                 prop="province"
                 label="省份"
@@ -60,64 +60,18 @@
     </el-table>
 </template>
 
-<script>
-export default {
-    name: 'adm-multi-table',
-    data() {
-        return {
-            tableData: [{
-                date: '2016-05-03',
-                name: '王小虎',
-                province: '上海',
-                city: '普陀区',
-                address: '上海市普陀区金沙江路 1518 弄',
-                zip: 200333
-            }, {
-                date: '2016-05-02',
-                name: '王小虎',
-                province: '上海',
-                city: '普陀区',
-                address: '上海市普陀区金沙江路 1518 弄',
-                zip: 200333
-            }, {
-                date: '2016-05-04',
-                name: '王小虎',
-                province: '上海',
-                city: '普陀区',
-                address: '上海市普陀区金沙江路 1518 弄',
-                zip: 200333
-            }, {
-                date: '2016-05-01',
-                name: '王小虎',
-                province: '上海',
-                city: '普陀区',
-                address: '上海市普陀区金沙江路 1518 弄',
-                zip: 200333
-            }, {
-                date: '2016-05-08',
-                name: '王小虎',
-                province: '上海',
-                city: '普陀区',
-                address: '上海市普陀区金沙江路 1518 弄',
-                zip: 200333
-            }, {
-                date: '2016-05-06',
-                name: '王小虎',
-                province: '上海',
-                city: '普陀区',
-                address: '上海市普陀区金沙江路 1518 弄',
-                zip: 200333
-            }, {
-                date: '2016-05-07',
-                name: '王小虎',
-                province: '上海',
-                city: '普陀区',
-                address: '上海市普陀区金沙江路 1518 弄',
-                zip: 200333
-            }]
-        }
-    }
+<script lang="ts">
+import { Vue, Component, Prop, Emit } from "vue-property-decorator";
+@Component({
+    name: 'adm-multi-table'
+})
+export default class extends Vue {
+    // 表格数据
+    @Prop({ default: [] }) tableData ?: []
+    // 当前页头文字
+    @Prop({ default: '' }) currentHeader ?: string
 }
+
 </script>
 
 <style scoped lang="scss">

+ 6 - 6
src/components/public/adm-pagination.vue

@@ -1,16 +1,16 @@
 <template>
     <el-pagination
+        class="adm-pagination"
         :current-page="currentPage"
-        :page-sizes=""
-        :page-size=""
+        :page-sizes="paginationList.sizes"
+        :page-size="paginationList.size"
         layout="total,sizes,prev,pager,next,jumper"
-        :total=""
+        :total="paginationList.total"
     />
-
-
 </template>
 
 <script lang="ts">
+// 当前页,总数,范围
 interface Pagination {
     size: number
     total: number
@@ -22,7 +22,7 @@ import { Vue, Component, Emit, Prop } from "vue-property-decorator";
     name: 'adm-pagination'
 })
 export default class extends Vue {
-    @Prop({ type: Object }) paginationList: Pagination
+    @Prop({ type: Object, default: {} }) paginationList ?: Pagination
 
     @Emit('currentPage')
     currentPage(val: number) {

+ 1 - 0
src/components/public/adm-search.vue

@@ -15,6 +15,7 @@ import { Vue, Component, Emit } from "vue-property-decorator";
     name: 'adm-search'
 })
 export default class extends Vue {
+    // 搜索内容
     private input = ''
 
     @Emit('SearchValue')

+ 2 - 0
src/components/public/adm-select.vue

@@ -23,7 +23,9 @@ import { Vue, Component, Emit } from "vue-property-decorator";
     name: 'adm-select'
 })
 export default class extends Vue {
+    // 初始化值
     private value = ''
+    // 下拉数据
     private sortOptions = [{
         value: '选项1',
         label: '黄金糕'

+ 2 - 1
src/components/public/adm-statistics.vue

@@ -16,7 +16,8 @@ import { Vue, Component, Prop } from "vue-property-decorator";
     name: "adm-statistics"
 })
 export default class extends Vue {
-    @Prop({ type: Object }) statisticsMsg: Statistics;
+    // 统计文字,总数
+    @Prop({ type: Object, default: {} }) statisticsMsg ?: Statistics;
 }
 </script>
 

+ 5 - 3
src/components/public/adm-tabs.vue

@@ -4,6 +4,7 @@
     </el-tabs>
 </template>
 <script lang="ts">
+// tabs 数组
 interface Pane {
     [index: number]: number
 }
@@ -14,11 +15,12 @@ import { Vue, Component, Prop, Emit } from "vue-property-decorator";
 })
 export default class extends Vue {
     private activeName = '0'
-    @Prop({ type: Array }) paneMsg?: Pane
+
+    @Prop({ type: Array, default: [] }) paneMsg?: Pane
 
     @Emit('paneValue')
-    private handleClick(tab:any) {
-        return tab.index
+    private handleClick(tab: any) {
+        return tab
     }
 }
 </script>

+ 1 - 0
src/views/maintain/components/index.ts

@@ -4,4 +4,5 @@ export { default as AdmBtn } from "@/components/public/adm-btn.vue"
 export { default as AdmTabs } from "@/components/public/adm-tabs.vue"
 export { default as AdmMultiTable } from "@/components/public/adm-multi-table.vue"
 export { default as Statistics } from "@/components/public/adm-statistics.vue"
+export { default as Pagination } from "@/components/public/adm-pagination.vue"
 

+ 70 - 5
src/views/maintain/device/index.vue

@@ -10,18 +10,19 @@
         <div class="content">
             <admTabs :paneMsg="paneMsg" @paneValue="paneValue"/>
             <div class="table">
-                <admMultiTable/>
+                <admMultiTable :currentHeader="currentHeader" :tableData="tableData"/>
+                <Pagination :paginationList="paginationList"/>
             </div>
         </div>
     </div>
 </template>
 <script lang="ts">
 import { Vue, Component } from "vue-property-decorator";
-import { Statistics, AdmSelect, AdmSearch, AdmBtn, AdmTabs, AdmMultiTable } from '../components/index'
+import { Statistics, AdmSelect, AdmSearch, AdmBtn, AdmTabs, AdmMultiTable, Pagination } from '../components/index'
 
 @Component({
     name: 'adm-device',
-    components: { Statistics, AdmSelect, AdmSearch, AdmBtn, AdmTabs, AdmMultiTable }
+    components: { Statistics, AdmSelect, AdmSearch, AdmBtn, AdmTabs, AdmMultiTable, Pagination }
 })
 export default class extends Vue {
     private statisticsMsg = {
@@ -34,11 +35,69 @@ export default class extends Vue {
         title: '添加设备'
     }
     private paneMsg = ['设计阶段维护', '施工阶段维护', '运维阶段维护']
+    private paginationList = {
+        size: 1,
+        sizes: [10, 20.50, 100],
+        total: 200
+    }
+    private currentHeader = this.paneMsg[0]
+    private tableData = [{
+        date: '2016-05-03',
+        name: '王小虎',
+        province: '上海',
+        city: '普陀区',
+        address: '上海市普陀区金沙江路 1518 弄',
+        zip: 200333
+    }, {
+        date: '2016-05-02',
+        name: '王小虎',
+        province: '上海',
+        city: '普陀区',
+        address: '上海市普陀区金沙江路 1518 弄',
+        zip: 200333
+    }, {
+        date: '2016-05-04',
+        name: '王小虎',
+        province: '上海',
+        city: '普陀区',
+        address: '上海市普陀区金沙江路 1518 弄',
+        zip: 200333
+    }, {
+        date: '2016-05-01',
+        name: '王小虎',
+        province: '上海',
+        city: '普陀区',
+        address: '上海市普陀区金沙江路 1518 弄',
+        zip: 200333
+    }, {
+        date: '2016-05-08',
+        name: '王小虎',
+        province: '上海',
+        city: '普陀区',
+        address: '上海市普陀区金沙江路 1518 弄',
+        zip: 200333
+    }, {
+        date: '2016-05-06',
+        name: '王小虎',
+        province: '上海',
+        city: '普陀区',
+        address: '上海市普陀区金沙江路 1518 弄',
+        zip: 200333
+    }, {
+        date: '2016-05-07',
+        name: '王小虎',
+        province: '上海',
+        city: '普陀区',
+        address: '上海市普陀区金沙江路 1518 弄',
+        zip: 200333
+    }]
+
 
 // 维护阶段 tabs
-    paneValue(val: number) {
+    paneValue(val: any) {
         console.log(val)
-        switch (val) {
+        this.currentHeader = val.label
+        switch (val.index) {
             case 0:
                 break;
             case 1:
@@ -106,6 +165,12 @@ $margin: 12px;
 
 
     }
+
+    .adm-pagination {
+        right: 40px;
+        position: absolute;
+        bottom: 30px;
+    }
 }
 </style>
 <style>