123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <view>
- <view class="search">
- <view class="box">
- <view class="icon">
- <uni-icons type="search" size="14" color="#BBBBBB"></uni-icons>
- </view>
- <view class="text">搜索</view>
- </view>
- </view>
-
- <view class="content">
- <view class="title">
- <view class="icon">
- <image src="./icon/title_icon.png" mode=""></image>
- </view>
- <view class="text">国家能源集团枣泉煤矿</view>
- </view>
- <view class="section">
- <view class="box">
- <view class="item">
- <view class="left">
- <view class="icon">
- <image src="./icon/open.png" mode=""></image>
- </view>
- <view class="text">党群工作部 (9)</view>
- </view>
- <view class="right">
- <uni-icons type="eye"></uni-icons>
- </view>
- </view>
- </view>
- </view>
- <view class="section">
- <view class="box">
- <view class="item">
- <view class="left">
- <view class="icon">
- <image src="./icon/close.png" mode=""></image>
- </view>
- <view class="text">生产技术部 (10)</view>
- </view>
- <view class="right">
- <uni-icons type="eye"></uni-icons>
- </view>
- </view>
- </view>
- <view class="inner_list">
- <view class="item" v-for="item in 6">
- <view class="icon">杨</view>
- <view class="text">杨名一 部长</view>
- </view>
- </view>
- </view>
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- onLoad() {
- // 获取部门
- this.get_section_getGroupList()
- },
- methods:{
- get_section_getGroupList(){
- this.$api.section_getGroupList({
-
- }).then((res)=>{
- console.log(res)
- })
- }
-
- }
-
- }
- </script>
- <style lang="scss">
- page{
- background-color: #F3F8F7;
- }
- .search{
- margin-bottom: 20rpx;
- background-color: #FFFFFF;
- box-sizing: border-box;
- padding: 25rpx 30rpx;
-
- .box{
- height: 60rpx;
- background-color: #F4F4F4;
- border-radius: 50rpx;
-
- display: flex;
- align-items: center;
-
- box-sizing: border-box;
- padding: 0 25rpx;
- .icon{
- margin-right: 10rpx;
- }
- .text{
- font-size: 24rpx;
- color: #BBBBBB;
- }
- }
- }
-
- .content{
- background-color: #FFFFFF;
- .title{
- height: 95rpx;
- display: flex;
- align-items: center;
-
- box-sizing: border-box;
- padding: 0 36rpx;
- border-bottom: 1rpx solid #F3F8F7;
- .icon{
- image{
- width: 48rpx;
- height: 36rpx;
- }
- }
- .text{
- margin-left: 20rpx;
- font-size: 36rpx;
- font-weight: 700;
- }
- }
- .section{
- box-sizing: border-box;
- padding: 0 20rpx;
-
- .box{
-
- .item{
- height: 95rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
-
- margin-left: 20rpx;
- border-bottom: 1rpx solid #F3F8F7;
-
- .left{
- display: flex;
- align-items: center;
- .icon{
- line-height: 95rpx;
- width: 90rpx;
- text-align: center;
- image{
- width: 24rpx;
- height: 24rpx;
- }
- }
- .text{
- font-size: 28rpx;
- }
- }
- .right{
- line-height: 95rpx;
- width: 90rpx;
- text-align: center;
- }
- }
- }
- .inner_list{
- .item{
- height: 95rpx;
-
- display: flex;
- align-items: center;
-
- margin-left: 108rpx;
- border-bottom: 1rpx solid #F3F8F7;
- .icon{
- width: 35rpx;
- text-align: center;
- line-height: 35rpx;
- border-radius: 50%;
- border: 1rpx solid #00A1E9;
-
- font-size: 24rpx;
- color: #00A1E9;
- }
- .text{
- margin-left: 18rpx;
- font-size: 28rpx;
-
- }
- }
- }
- }
- }
- </style>
|