<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>
|