企业信息

This commit is contained in:
zdx
2020-12-31 16:10:36 +08:00
parent 3855eb456f
commit f9f71e1c19
75 changed files with 425 additions and 357 deletions

View File

@@ -1,4 +1,7 @@
// components/videoList/videoList.js
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
Component({
/**
* 组件的属性列表

View File

@@ -1,3 +1,7 @@
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
.active_content {
background-color: #fff;
margin: 20rpx;

View File

@@ -1,4 +1,7 @@
// components/enterprise/enterprise.js
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
Component({
/**
* 组件的属性列表

View File

@@ -1,4 +1,7 @@
/* components/enterprise/enterprise.wxss */
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
/* title */
image{
height: auto;

View File

@@ -1,10 +1,14 @@
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
Component({
/**
* 组件的属性列表
*/
properties: {
info:{
type:Object
info: {
type: Object
}
},
@@ -21,4 +25,4 @@ Component({
methods: {
}
})
})

View File

@@ -1,16 +1,21 @@
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
/* 企业视频*/
.enterprise_content{
font-size:29rpx ;
.enterprise_content {
font-size: 29rpx;
color: #333;
margin: 0 30rpx;
border-radius: 12rpx;
background-color: #fff;
box-shadow: 0 0 14rpx rgba(0, 0, 0, 0.3);
margin-top: 20rpx;
padding:30rpx 20rpx 20rpx 20rpx;
padding: 30rpx 20rpx 20rpx 20rpx;
}
.enterprise_content .content{
.enterprise_content .content {
position: relative;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
@@ -23,7 +28,7 @@
}
/* 播放 */
.content .play{
.content .play {
background-color: rgba(0, 0, 0, 0.3);
width: 100%;
height: calc(100% - 10rpx);
@@ -36,7 +41,8 @@
align-items: center;
box-sizing: border-box;
}
.content .play image{
.content .play image {
width: 102rpx;
height: 102rpx;
}

View File

@@ -1,4 +1,7 @@
// components/videoList/videoList.js
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
Component({
/**
* 组件的属性列表

View File

@@ -1,3 +1,7 @@
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
.active_content {
/* height: 600rpx; */
background-color: #fff;
@@ -98,17 +102,17 @@
.active_bottom .right {
font-size: 28rpx;
color:#378fff;
color: #378fff;
padding: 30rpx;
}
.active_bottom .left{
.active_bottom .left {
margin-left: 20rpx;
}
.has_more{
.has_more {
color: #999;
font-size: 26rpx;
text-align: center;
padding: 30rpx ;
padding: 30rpx;
}

View File

@@ -1,9 +1,13 @@
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
Component({
/**
* 组件的属性列表
*/
properties: {
info:Object
info: Object
},
/**
@@ -17,12 +21,12 @@ Component({
* 组件的方法列表
*/
methods: {
// 跳转到员工名片详情
goCard(e) {
console.log(e.currentTarget.dataset.cardid);
wx.navigateTo({
url: '/pages/card/index?cardid='+e.currentTarget.dataset.cardid,
})
}
// 跳转到员工名片详情
goCard(e) {
console.log(e.currentTarget.dataset.cardid);
wx.navigateTo({
url: '/pages/card/index?cardid=' + e.currentTarget.dataset.cardid,
})
}
}
})
})

View File

@@ -1,4 +1,8 @@
.personal_list{
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
.personal_list {
display: flex;
flex-direction: row;
justify-content: flex-start;
@@ -9,7 +13,7 @@
padding: 20rpx 30rpx;
}
.personal_header{
.personal_header {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
@@ -17,34 +21,34 @@
border: solid 2rpx #f7f7f7;
}
.personal_nickname{
.personal_nickname {
width: 100%;
font-size: 32rpx;
color: #333;
font-weight: 600;
margin-top: 10rpx;
white-space: nowrap;
overflow:hidden;
overflow: hidden;
text-overflow: ellipsis;
}
.personal_job{
.personal_job {
width: 100%;
font-size: 26rpx;
color: #666;
font-weight: normal;
white-space: nowrap;
overflow:hidden;
overflow: hidden;
text-overflow: ellipsis;
margin-top: 6rpx;
padding-left: 10rpx;
}
.personal_left{
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
box-sizing: border-box;
margin-left: 30rpx;
.personal_left {
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
box-sizing: border-box;
margin-left: 30rpx;
}

View File

@@ -1,4 +1,7 @@
// components/videoList/videoList.js
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
Component({
/**
* 组件的属性列表

View File

@@ -1,3 +1,7 @@
/**
* Web二雪
* 趁时光不老 努力活成自己想要成为的样子
*/
.project_content {
background-color: #fff;
margin: 20rpx;
@@ -99,20 +103,23 @@
/* 滚动菜单 */
.scroll_menu{
.scroll_menu {
/* background-color: #fff; */
/* box-shadow: 0 0rpx 10px rgba(0, 0, 0, 0.1); */
font-size: 26rpx;
}
.scroll-view_H{
.scroll-view_H {
white-space: nowrap;
color: #666;
}
.scroll-view-item{
.scroll-view-item {
height: 90rpx;
line-height: 90rpx;
}
.scroll-view-item_H{
.scroll-view-item_H {
display: inline-block;
/* width: 25%; */
padding: 0 30rpx;
@@ -122,15 +129,16 @@
/* border-top: solid 10rpx #fff;
border-bottom: solid 10rpx #fff; */
}
.scroll_view_select{
.scroll_view_select {
/* border-bottom: solid 4rpx #378fff; */
color: #378fff;
font-weight: 600;
}
.has_more{
.has_more {
color: #999;
font-size: 26rpx;
text-align: center;
padding: 30rpx ;
padding: 30rpx;
}