From f6efc465e8f5633313afc8da54c17988722073eb Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Sat, 14 Sep 2024 15:55:07 +0800
Subject: [PATCH] fix: 审核页面逻辑调整、滚动调整
---
gz-wxparty/pages/homePage/index.wxml | 42 +++++++++++++++++++++++++++++-------------
1 files changed, 29 insertions(+), 13 deletions(-)
diff --git a/gz-wxparty/pages/homePage/index.wxml b/gz-wxparty/pages/homePage/index.wxml
index a2364af..d5b1cf4 100644
--- a/gz-wxparty/pages/homePage/index.wxml
+++ b/gz-wxparty/pages/homePage/index.wxml
@@ -6,16 +6,32 @@
<!-- 幻灯片 -->
<view class="homePage-main">
- <swiper autoplay="{{ true }}" class="swiper" indicator-dots="{{ true }}">
- <swiper-item wx:for="{{ banner }}" wx:key="index">
- <image class="swiper-item" src="{{ item }}" />
- </swiper-item>
- </swiper>
+ <view class="swiper-bg">
+ <swiper autoplay="{{ true }}" class="swiper" indicator-dots="{{ true }}">
+ <swiper-item class="swiper-main">
+ <view class="swiper-main-image">
+ <image class="swiper-item" src="{{ imgUrl }}Banner1.png" />
+ <image class="swiper-item1" src="{{ imgUrl }}banner4.png" />
+ </view>
+ </swiper-item>
+ <swiper-item class="swiper-main">
+ <view class="swiper-main-image">
+ <image class="swiper-item" src="{{ imgUrl }}Banner2.png" />
+ <image class="swiper-item2" src="{{ imgUrl }}banner3.png" />
+ </view>
+ </swiper-item>
+ </swiper>
+ <view class="swiper-head">
+ <view class="mediate">
+ <view>你好,{{userInfo.trueName||'游客'}}</view>
+ <view bindtap="_handleGoPage" data-url="../../pages/me/index" wx:if="{{userInfo.realStatus===1}}" class="public-color">个人中心</view>
+ <view wx:else bindtap="handleNavigateTo" data-url="../../pages/realNameAuthentication/index" data-type="register" class="public-color">实名认证</view>
+ </view>
+ </view>
+ </view>
<view class="main">
- <view class="mediate">
- <view>你好,{{userInfo.trueName||'游客'}}</view>
- <view bindtap="_handleGoPage" data-url="../../pages/me/index" wx:if="{{userInfo.realStatus===1}}" class="public-color">个人中心</view>
- <view wx:else bindtap="handleNavigateTo" data-url="../../pages/realNameAuthentication/index" data-type="register" class="public-color">实名认证</view>
+ <view style="height: 32rpx;">
+
</view>
<!-- 服务申请 -->
<view>
@@ -67,13 +83,13 @@
<!-- 咨询动态 -->
<view>
<view class="flex_dt">
- <view class="main_title">咨询动态</view>
+ <view class="main_title">资讯动态</view>
<view bindtap="handleGetMore" data-type="newMsg" wx:if="{{ newMessageMore }}" class=" flex_dt_more">
<text>查看更多</text>
<van-icon name="arrow" size="16" />
</view>
</view>
- <view class="dt_card" bindtap="goSeeMessage" wx:for="{{ newMessage }}" style="margin-top:{{index===0?0:'8px'}}" wx:key="index">
+ <view class="dt_card" bindtap="goSeeMessage" data-url="{{item.showUrl}}" wx:for="{{ newMessage }}" style="margin-top:{{index===0?0:'8px'}}" wx:key="index">
<view class="dt_card_l">
<view class="dt_card_title">{{item.title}}</view>
<view class="dt_card_time">
@@ -81,7 +97,7 @@
</view>
</view>
<view class="dt_card_r">
- <image src="{{item.showUrl}}" mode="" />
+ <image src="{{item.imageUrl}}" mode="" />
</view>
</view>
</view>
@@ -141,7 +157,7 @@
<view wx:if="{{ AiModal.caseDes?true:false }}" class="AiModal-search">
<view class="AiModal">
<image src="{{imgUrl}}AICase.png" mode="" />
- <view class="AiModal-title">穗调解数智人提醒您</view>
+ <view class="AiModal-title">解纷数智人提醒您</view>
<view class="AiModal-subTitle">为了更好的帮助您解决问题,向您推荐了与您反映问题相似的典型案例和相关法条</view>
<van-button bind:click="AiModalClick" class="AiModal-button" round block data-item="{{ AiModal }}" type="primary">前往查看</van-button>
</view>
--
Gitblit v1.8.0