zhangxiaoxu123456
2021-12-17 4d4a844ef624dde8667b314d353599297f6cb8d9
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
<template>
    <view class="zhidu-wrap">
        <navigator url="zhiduDetails/zhiduDetails" hover-class="navigator-hover">
            <view class="zhidu-line">
                <view class="zhidu-name">
                    公司规章制度公司规章制度公司规章制度公司规章制度
                </view>
                <text class="zhidu-date">2020.06.08</text>
            </view>
        </navigator>
        <view class="zhidu-line">
            <view class="zhidu-name">
                员工日常行为
            </view>
            <text class="zhidu-date">2020.06.08</text>
        </view>
        <view class="zhidu-line">
            <view class="zhidu-name">
                人事异动
            </view>
            <text class="zhidu-date">2020.06.08</text>
        </view>
        <view class="zhidu-line">
            <view class="zhidu-name">
                薪酬福利
            </view>
            <text class="zhidu-date">2020.06.08</text>
        </view>
    </view>
</template>
 
<script>
</script>
 
<style lang="scss" scoped>
    .zhidu-wrap{
        width: 100%;
        padding: 0 30rpx;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    .zhidu-line{
        display: flex;
        justify-content: space-between;
        background-color: #fff;
        padding: 20rpx 30rpx;
        box-sizing: border-box;
        border-radius: 10rpx;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        margin-top: 30rpx;
        height: 118rpx;
        display: flex;
        align-items: center;
        .zhidu-name{
            width: 80%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #33404d;
            font-size: 30rpx;
            max-width: 80%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .zhidu-date{
            color: #939393;
            font-size: 24rpx;
        }
    }
</style>