码迷,mamicode.com
首页 > 其他好文 > 详细

Vue中table表头合并的用法

时间:2018-10-15 14:32:33      阅读:453      评论:0      收藏:0      [点我收藏+]

标签:result   container   rowspan   pre   ade   table   ble   style   class   

<div class="panel-container">
    <div>
        <table class="table-head" width="80%">
            <thead>
                <tr>
                    <th class="headerTable" rowspan="2">名称</th>
                    <th rowspan="2">性别</th>
                    <th colspan="2">回来时间</th>
                    <th colspan="2">出去时间</th>
                </tr>
                <tr class="num">
                    <th>准时度</th>
                    <th>准时率</th>
                    <th>准时度</th>
                    <th>准时率</th>
                </tr>
            </thead>
        </table>
    </div>
    <div class="timeBody">
        <table>
            <tbody>
                <tr v-for="(item, index) in list" :key="index">
                    <td :title="item.name">{{item.name}}</td>
                    <td>{{item.sex}}</td>
                    <td>{{item.outTotal}}</td>
                    <td>{{item.outPer}}</td>
                    <td>{{item.inTotal}}</td>
                    <td>{{item.inPer}}</td>
                </tr>
            </tbody>
        </table>
    </div>
</div>
<script>
    export default {
        data() {
            return {
                list: [{
                    name: ‘地名1‘,
                    result: ‘1‘,
                    outTotal: ‘12‘,
                    outPer: ‘30%‘,
                    inTotal: ‘16‘,
                    inPer: ‘34%‘
                },{
                    name: ‘地名2‘,
                    result: ‘1‘
                    outTotal: ‘12‘,
                    outPer: ‘30%‘,
                    inTotal: ‘16‘,
                    inPer: ‘34%‘
                },{
                    name: ‘地名3‘,
                    result: ‘0‘,
                    outTotal: ‘12‘,
                    outPer: ‘30%‘,
                    inTotal: ‘16‘,
                    inPer: ‘34%‘
                }]
            }
        }
    }
</script>

 

Vue中table表头合并的用法

标签:result   container   rowspan   pre   ade   table   ble   style   class   

原文地址:https://www.cnblogs.com/minozMin/p/9790084.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!