| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <transition
- appear
- name="animate__animated animate__move"
- enter-active-class="animate__slideInLeft"
- leave-active-class="animate__slideOutLeft"
- >
- <div class="widget-ParticipationUnits">
- <div class="head">
- <div class="title">
- <div class="icon"></div>
- <span class="site-info">参建单位</span>
- </div>
- </div>
- <div class="content-info"></div>
- </div>
- </transition>
- </template>
- <script lang="ts">
- import { Vue, Component, Prop, Watch } from 'vue-property-decorator'
- //参建单位模块
- @Component({ name: 'ParticipationUnits' })
- export default class ParticipationUnits extends Vue {}
- </script>
- <style lang='scss' scoped>
- .animate__slideInLeft,
- .animate__slideOutLeft {
- animation-duration: 3s; //动画持续时间
- animation-delay: 0s; //动画延迟时间
- }
- .widget-ParticipationUnits {
- $size10: 0.052083rem /* 10/192 */;
- $size20: 0.104167rem /* 20/192 */;
- z-index: 2;
- //position
- top: 2.197917rem /* 422/192 */;
- bottom: 1.5625rem /* 300/192 */;
- margin-left: $size20 /* 20/192 */;
- left: 0rem /* 0/192 */;
- position: absolute;
- //size
- height: calc(100% - 3.489583rem /* 670/192 */);
- width: 2.083333rem /* 400/192 */;
- color: #eee;
- .head {
- height: 0.166667rem /* 32/192 */;
- width: 100%;
- background: linear-gradient(-90deg, rgba(43, 167, 255, 0.2) 0%, rgba(43, 167, 255, 0.08) 100%);
- font-family: Source Han Sans CN-HEAVY;
- .title {
- width: 100%;
- height: 100%;
- display: flex;
- font-weight: 400;
- align-items: center;
- .icon {
- height: 0.166667rem /* 32/192 */;
- width: 0.34375rem /* 66/192 */;
- background: url('~@/views/groupPage/images/模块图标/参建单位.png') no-repeat center center;
- background-size: 100% 100%;
- }
- span {
- flex: 1;
- font-weight: bold;
- font-size: 0.083333rem /* 16/192 */;
- color: #ffffff;
- padding: 0.041667rem /* 8/192 */;
- background: linear-gradient(0deg, #9bd2fa 0%, #ffffff 100%);
- background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- }
- }
- .content-info {
- width: 100%;
- height: calc(100% - 0.166667rem);
- overflow: hidden;
- display: flex;
- flex-flow: row wrap;
- }
- }
- </style>
|