mirror of
https://gitee.com/TSpecific/tuniao-ui.git
synced 2026-06-07 03:53:57 +08:00
83 lines
2.9 KiB
Vue
83 lines
2.9 KiB
Vue
<template>
|
|
<view class="vip-components-table__basic">
|
|
|
|
<!-- 顶部自定义导航 -->
|
|
<tn-nav-bar fixed>基础表格</tn-nav-bar>
|
|
|
|
<view :style="{paddingTop: vuex_custom_bar_height + 'px'}">
|
|
|
|
<demo-title title="默认表格">
|
|
<tn-table>
|
|
<tn-tr>
|
|
<tn-td height="80rpx" :fontSize="30" :bold="true" fontColor="#01BEFF" alignItems="center">图鸟UI 2月开发进度</tn-td>
|
|
</tn-tr>
|
|
<tn-tr>
|
|
<tn-td :span="8">页面模板</tn-td>
|
|
<tn-td :span="16" :ellipsis="true" padding="0" :borderRight="false">
|
|
<tn-tr>
|
|
<tn-td :span="8">博客页面</tn-td>
|
|
<tn-td :span="16" alignItems="right">2天</tn-td>
|
|
</tn-tr>
|
|
<tn-tr>
|
|
<tn-td :span="8">炫酷首页</tn-td>
|
|
<tn-td :span="16" alignItems="right">3天</tn-td>
|
|
</tn-tr>
|
|
<tn-tr borderWidth="0">
|
|
<tn-td :span="8" borderWidth="1rpx">会员需求</tn-td>
|
|
<tn-td :span="16" :ellipsis="true" padding="0" :borderRight="false">
|
|
<tn-tr>
|
|
<tn-td :span="12" borderWidth="1rpx">功能首页</tn-td>
|
|
<tn-td :span="12" borderWidth="1rpx" alignItems="right">3天</tn-td>
|
|
</tn-tr>
|
|
<tn-tr borderWidth="0">
|
|
<tn-td :span="12" borderWidth="1rpx">短视频页面</tn-td>
|
|
<tn-td :span="12" borderWidth="1rpx" alignItems="right">3天</tn-td>
|
|
</tn-tr>
|
|
</tn-td>
|
|
</tn-tr>
|
|
</tn-td>
|
|
</tn-tr>
|
|
<tn-tr>
|
|
<tn-td :span="8">组件开发</tn-td>
|
|
<tn-td :span="16" :ellipsis="true" padding="0" :borderRight="false">
|
|
<tn-tr>
|
|
<tn-td :span="8">免费组件</tn-td>
|
|
<tn-td :span="16" alignItems="right">2天</tn-td>
|
|
</tn-tr>
|
|
<tn-tr borderWidth="0">
|
|
<tn-td :span="8" borderWidth="1rpx">会员组件</tn-td>
|
|
<tn-td :span="16" alignItems="right" borderWidth="1rpx">3天</tn-td>
|
|
</tn-tr>
|
|
</tn-td>
|
|
</tn-tr>
|
|
<tn-tr>
|
|
<tn-td :bold="true" :span="8">合计</tn-td>
|
|
<tn-td alignItems="right" :span="16">16天</tn-td>
|
|
</tn-tr>
|
|
</tn-table>
|
|
</demo-title>
|
|
|
|
<view class="tn-padding-bottom-lg"></view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import demoTitle from '@/libs/components/demo-title.vue'
|
|
export default {
|
|
name: 'VipComponentsComplexTable',
|
|
components: { demoTitle },
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.vip-components-table__complex {
|
|
background-color: $tn-bg-gray-color;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|