|
@@ -3,22 +3,73 @@
|
|
|
<div class="home-head">
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="12">
|
|
|
- <div class="home-head-left">渔安街道党组织
|
|
|
- <div></div>
|
|
|
+ <div class="home-head-left">
|
|
|
+ <div class="head-left-top">
|
|
|
+ <div class="head-left-top-title">渔安街道党组织</div>
|
|
|
+ <div class="head-left-top-subtitle">上次登录时间:2021-11-04 10:23</div>
|
|
|
+ </div>
|
|
|
+ <div class="head-left-middle">
|
|
|
+ <div class="head-left-middle_forward">
|
|
|
+ <div class="head-left-middle_forward-avatar">
|
|
|
+ <img
|
|
|
+ :src="require('@/assets/images/head-left-middle-avatar.jpg')"
|
|
|
+ @error="imgViewerOnerror"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="head-left-middle_forward-name">张旭光</div>
|
|
|
+ </div>
|
|
|
+ <div class="head-left-middle_afterward">
|
|
|
+ <img :src="require('@/assets/images/home-head-img.png')" @error="imgViewerOnerror" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<div class="home-head-right">
|
|
|
<el-row :gutter="10">
|
|
|
- <el-col :span="6">正式党员数</el-col>
|
|
|
- <el-col :span="6">预备党员数</el-col>
|
|
|
- <el-col :span="6">发展党员数</el-col>
|
|
|
- <el-col :span="6">积极分子数</el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <div class="home-head-right_item">
|
|
|
+ <div class="home-head-right_item-title">正式党员数</div>
|
|
|
+ <div class="home-head-right_item-content">
|
|
|
+ <div class="formal">258</div>
|
|
|
+ <div>人</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <div class="home-head-right_item">
|
|
|
+ <div class="home-head-right_item-title">预备党员数</div>
|
|
|
+ <div class="home-head-right_item-content">
|
|
|
+ <div class="prep">258</div>
|
|
|
+ <div>人</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <div class="home-head-right_item">
|
|
|
+ <div class="home-head-right_item-title">发展党员数</div>
|
|
|
+ <div class="home-head-right_item-content">
|
|
|
+ <div class="develop">591</div>
|
|
|
+ <div>人</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="6">
|
|
|
+ <div class="home-head-right_item">
|
|
|
+ <div class="home-head-right_item-title">积极分子数</div>
|
|
|
+ <div class="home-head-right_item-content">
|
|
|
+ <div class="positive">591</div>
|
|
|
+ <div>人</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
+
|
|
|
+ <div class="home-main"></div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -37,6 +88,165 @@ export default {
|
|
|
<style scoped lang="scss">
|
|
|
.home {
|
|
|
&-head {
|
|
|
+ &-left {
|
|
|
+ padding: 15px 20px;
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 10px;
|
|
|
+
|
|
|
+ .head-left-top {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ &-title {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 37px;
|
|
|
+ font-size: 26px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #de0010;
|
|
|
+ line-height: 37px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-subtitle {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 37px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #737373;
|
|
|
+ line-height: 20px;
|
|
|
+ opacity: 0.7;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .head-left-middle {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ margin-top: 12px;
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ &_forward {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ &-avatar {
|
|
|
+ img {
|
|
|
+ width: 58px;
|
|
|
+ height: 58px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &-name {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ margin-left: 15px;
|
|
|
+ height: 58px;
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #363636;
|
|
|
+ line-height: 28px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &_afterward {
|
|
|
+ margin-top: 10px;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 67px;
|
|
|
+ height: 67px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &-right {
|
|
|
+ &_item {
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ &-title {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ height: 20px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #585858;
|
|
|
+ line-height: 20px;
|
|
|
+ opacity: 0.8;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-content {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+
|
|
|
+ div {
|
|
|
+ &:last-child {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ height: 59px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #939393;
|
|
|
+ line-height: 20px;
|
|
|
+ opacity: 0.8;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .formal {
|
|
|
+ height: 59px;
|
|
|
+ font-size: 42px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #f75d5d;
|
|
|
+ line-height: 59px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .prep {
|
|
|
+ height: 59px;
|
|
|
+ font-size: 42px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #f7a25d;
|
|
|
+ line-height: 59px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .develop {
|
|
|
+ height: 59px;
|
|
|
+ font-size: 42px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #3b98e0;
|
|
|
+ line-height: 59px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .positive {
|
|
|
+ height: 59px;
|
|
|
+ font-size: 42px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #57ba4d;
|
|
|
+ line-height: 59px;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &-main {
|
|
|
+ padding: 20px 20px;
|
|
|
+ background: #ffffff;
|
|
|
+ border-radius: 10px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|