| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <template>
- <view class="content ">
- <view class="flex-center">
- <image class="bannerImg" src="../../static/image/qybanner.jpg" mode="widthFix"></image>
- </view>
- <view class="flex">
- <image class="qun" src="../../static/image/teimImg.jpg" mode="widthFix"></image>
- </view>
- <view class="flex-center">
- <image class="shareImg" show-menu-by-longpress src="../../static/image/qyweichat.jpg" mode="scaleToFill"></image>
- </view>
- <view class="buttom">
- 长按二维码识别加入群聊
- </view>
- <view class="footerTottom">
- 更多社群福利
- </view>
- <view class="flex footerBox">
- <view class="item">
- <view class="line1">
- 实时领取母婴
- </view>
- <view class="line1">
- 最新技能资料
- </view>
- <view class="lineJg"></view>
- <view class="titleItem">
- 线上新技能
- </view>
- </view>
- <view class="item">
- <view class="line1">
- 全国参加举办
- </view>
- <view class="line1">
- 母婴工作交流会
- </view>
- <view class="lineJg"></view>
- <view class="titleItem">
- 线下工友会
- </view>
- </view>
- <view class="item">
- <view class="line1">
- 领取母婴品牌
- </view>
- <view class="line1">
- 厂家福利产品
- </view>
- <view class="lineJg"></view>
- <view class="titleItem">
- 母婴心福利
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState,
- mapMutations
- } from 'vuex';
- import {
- getUser
- } from '@/api/user.js';
- import { getCourseList,recommend } from "@/api/index.js"
- export default {
- data() {
- return {
-
- };
- },
- onLoad(opt) {
-
- },
- onShow() {
-
- },
- onReachBottom() {
- },
- methods: {
-
- }
- };
- </script>
- <style lang="scss" scoped>
- .qun{
- width: 600rpx;
- }
- .footerBox{
- padding: 30rpx 50rpx;
- color: #FFF;
- line-height: 1;
- .item{
- background-color:rgb(55,175,165) ;
- border-radius: 30rpx;
- padding: 40rpx 5rpx;
- width: 200rpx;
- .line1{
- font-size: 24rpx;
- padding:10rpx 0rpx;
- }
- .lineJg{
- height: 10rpx;
- background-color: #FFF;
- margin: 20rpx 0 30rpx 0;
- }
- .titleItem{
- font-size: 32rpx;
- font-weight: bold;
- padding-bottom: 10rpx;
- }
- }
- }
- .footerTottom{
- color: rgb(251,104,159);
- font-size: 32rpx;
- font-weight: bold;
- text-align-last: left;
- padding-left: 50rpx;
- }
- .buttom{
- padding: 30rpx 50rpx;
- margin: 50rpx 50rpx;
- background-image: linear-gradient(to right,rgb(239,132,43),rgb(244,153,60));
- border-radius: 100rpx;
- font-weight: bold;
- font-size: 40rpx;
- color: #FFF;
- }
- .bannerImg{
- width: 750rpx;
- }
- .content{
- background-color: #FFF;
- text-align: center;
- min-height: 100vh;
- }
- .shareImg{
- width: 350rpx;
- height: 350rpx;
- margin: 50rpx 0;
- }
- </style>
|