zhaojs
2023-06-26 1775cbad790e5ae2ff0fa8620dbcb3882ab1a7f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<template>
    <view class="u-td" :style="[tdStyle]">
        <slot></slot>
    </view>
</template>
 
<script>
    /**
     * td td单元格
     * @description 表格组件一般用于展示大量结构化数据的场景(搭配u-table使用)
     * @tutorial https://www.uviewui.com/components/table.html#td-props
     * @property {String Number} width 单元格宽度百分比或者具体带单位的值,如30%, 200rpx等,一般使用百分比,单元格宽度默认为均分tr的长度(默认auto)
     * @example <u-td>二年级</u-td>
     */
    export default {
        name: "u-td",
        props: {
            // 宽度,百分比或者具体带单位的值,如30%, 200rpx等,一般使用百分比
            width: {
                type: [Number, String],
                default: 'auto'
            }
        },
        inject: ['uTable'],
        computed: {
            tdStyle() {
                let style = {};
                if (this.width != "auto") style.flex = `0 0 ${this.width}`;
                style.textAlign = this.uTable.align;
                style.fontSize = this.uTable.fontSize + 'rpx';
                style.padding = this.uTable.padding;
                style.borderBottom = `solid 1px ${this.uTable.borderColor}`;
                style.borderRight = `solid 1px ${this.uTable.borderColor}`;
                style.color = this.uTable.color;
                return style;
            }
        },
    };
</script>
 
<style lang="scss" scoped>
    @import "../../libs/css/style.components.scss";
    
    .u-td {
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: center;
        font-size: 28rpx;
        color: $u-content-color;
        align-self: stretch;
        box-sizing: border-box;
    }
 
    .u-col-1 {
        flex: 0 0 calc(100%/12);
    }
 
    .u-col-2 {
        flex: 0 0 calc(100%/12 * 2);
    }
 
    .u-col-3 {
        flex: 0 0 calc(100%/12 * 3);
    }
 
    .u-col-4 {
        flex: 0 0 calc(100%/12 * 4);
    }
 
    .u-col-5 {
        flex: 0 0 calc(100%/12 * 5);
    }
 
    .u-col-6 {
        flex: 0 0 calc(100%/12 * 6);
    }
 
    .u-col-7 {
        flex: 0 0 calc(100%/12 * 7);
    }
 
    .u-col-8 {
        flex: 0 0 calc(100%/12 * 8);
    }
 
    .u-col-9 {
        flex: 0 0 calc(100%/12 * 9);
    }
 
    .u-col-10 {
        flex: 0 0 calc(100%/12 * 10);
    }
 
    .u-col-11 {
        flex: 0 0 calc(100%/12 * 11);
    }
 
    .u-col-12 {
        flex: 0 0 calc(100%/12 * 12);
    }
</style>