123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <template>
- <view class="main">
- <!--轮播图-->
- <view class="banner">
- <u-swiper circular :radius="5" :indicator="true" keyName="image" :list="bannerList" :height="150" class="uni-swiper" @click="click"></u-swiper>
- </view>
- <!--通知公告-->
- <view class="notice">
- <u-notice-bar color="#848484" :text="noticeList" :step="true" direction="column" mode="link" bgColor="white" speed="300" url="/pages/notice/index"></u-notice-bar>
- </view>
- <view class="flow">
- <view class="title">操作流程</view>
- <view class="item">
- <view class="tb"><view class="icon"></view></view>
- <view class="con">
- <view class="bt">实名认证</view>
- <view class="bor" style="background: linear-gradient(to right, rgb(198 187 250), rgb(251 251 251))"></view>
- <view class="zt">未实名</view>
- </view>
- <view class="state">
- <text class="zt">已认证</text>
- <text class="icon"></text>
- </view>
- </view>
- <view class="item">
- <view class="tb"><view class="icon"></view></view>
- <view class="con">
- <view class="bt">关联企业</view>
- <view class="bor" style="background: linear-gradient(to right, #eecce0, rgb(253 253 253))"></view>
- <view class="zt">未实名</view>
- </view>
- <view class="state">
- <text class="zt">已认证</text>
- <text class="icon"></text>
- </view>
- </view>
- <view class="item">
- <view class="tb"><view class="icon"></view></view>
- <view class="con">
- <view class="bt">开始接包</view>
- <view class="bor" style="background: linear-gradient(to right, #c9f1d4, rgb(250 255 252))"></view>
- <view class="zt">未实名</view>
- </view>
- <view class="state">
- <text class="zt">已认证</text>
- <text class="icon"></text>
- </view>
- </view>
- <view class="item">
- <view class="tb"><view class="icon"></view></view>
- <view class="con">
- <view class="bt">电子签约</view>
- <view class="bor" style="background: linear-gradient(to right, #f6f6bf, rgb(246 246 246))"></view>
- <view class="zt">未实名</view>
- </view>
- <view class="state">
- <text class="zt">已认证</text>
- <text class="icon"></text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- ip: this.http.ip,
- user: {},
- bannerList: [{ image: '../../static/index.jpg' }],
- noticeList: ['承揽时代小程序上线了', '个人接包时代来临,动动手指就赚钱']
- };
- },
- onShow() {
- this.user = this.getUser();
- },
- onLoad() {
- //this.getData();
- },
- methods: {
- getData() {
- this.http.request({
- url: this.http.urls.home_list,
- success: (res) => {
- res.data.data.forEach((item) => {
- this.noticeList.push(item.title);
- });
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .main {
- padding: 15px;
- }
- .banner {
- }
- .notice {
- margin-top: 10px;
- }
- .flow {
- padding-top: 20px;
- .title {
- font-size: 15px;
- }
- .item {
- background-color: white;
- border-radius: 10px;
- padding: 20px;
- overflow: hidden;
- margin-top: 12px;
- .tb {
- .icon {
- float: left;
- padding: 13px;
- border: 1px solid $main-color;
- color: $main-color;
- border-radius: 50%;
- font-size: 23px;
- }
- }
- .con {
- float: left;
- padding-left: 20px;
- .bt {
- font-size: 18px;
- }
- .bor {
- background-color: red;
- border-radius: 20px;
- height: 9px;
- margin-top: -9px;
- width: 105px;
- margin-left: -5px;
- }
- .zt {
- font-size: 13px;
- padding-top: 3px;
- color: #909090;
- }
- }
- .state {
- float: right;
- padding-top: 11px;
- .zt {
- font-size: 13px;
- color: $main-color;
- }
- .icon {
- color: #909090;
- }
- }
- }
- }
- </style>
|