123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <template>
- <view class="main-content ">
- <view class="home-banner">
- <view class="home-banner-left">
- <img src="/static/serverImg/home/address.png" alt=""
- style="width: 41.67rpx;height: 41.67rpx;margin-right: 8rpx;">
- <text>{{ data.address }}</text>
- </view>
- <view>
- <up-icon name="bell" :size="25" color="rgba(46, 46, 46, 1)"></up-icon>
- <!-- <img src="/static/serverImg/home/message.png" alt="" style="width: 50rpx;height: 50rpx;"> -->
- </view>
- </view>
- <view class="home-main">
- <view class="custom-swiper">
- <up-swiper :list="list3" indicator indicatorMode="line" circular></up-swiper>
- </view>
- </view>
- <view class="home-grid">
- <Client />
- </view>
- <!-- <view class="home-grid hot-box">
- <view v-for="item in hotList" :key="item.key" class="hot-item">
- <view>
- <view>{{item.name}}</view>
- <view>{{item.text}}</view>
- </view>
- <up-icon :name="listItem.iconName" :size="22"></up-icon>
- </view>
- </view> -->
- <view class="home-ranking">
- <ServIces :listData="listData" :rightList="rightList" v-if="userType == 1"></ServIces>
- <RankingList v-if="userType === 2" />
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref,
- reactive,
- onMounted
- } from 'vue';
- import {
- onLoad,
- onShow
- } from "@dcloudio/uni-app";
- import RankingList from '@/pages/common/rankingList/index.vue';
- import ServIces from "@/components/Services/services.vue"
- import {
- Client
- } from "@/components/Client/new_file.vue"
- import {
- volunteerinfolist,
- } from "@/api/volunteerDetailsApi/details.js"
- import { slideshow } from '@/api/home.js'
- const total = ref(0)
- const listData = ref([])
- const rightList = ref([])
- const userType = uni.getStorageSync('userType') //读取本地存储
- const data = reactive({
- address: '重庆市永川区',
- queryValue: ''
- })
- const list3 = ref([]);
- const hotList = [
- {
- key: 1,
- icon: '/static/img/构建.png',
- name: '专业辅导',
- text:'与家长协同制定成长计划',
- },
- {
- key: 2,
- icon: '/static/img/构建.png',
- name: '暖心陪护',
- text:'倾听烦恼、缓解孤独感',
- },
- ]
- const hotList2 = [
- {
- key: 1,
- icon: '/static/img/构建.png',
- name: '专业辅导',
- text:'与家长协同制定成长计划',
- },
- {
- key: 2,
- icon: '/static/img/构建.png',
- name: '暖心陪护',
- text:'倾听烦恼、缓解孤独感',
- },
- {
- key: 3,
- icon: '/static/img/构建.png',
- name: '专业辅导',
- text:'与家长协同制定成长计划',
- },
- {
- key: 4,
- icon: '/static/img/构建.png',
- name: '暖心陪护',
- text:'倾听烦恼、缓解孤独感',
- },
- ]
- const getList = async () => {
- try {
- const res = await volunteerinfolist();
- if (!res || !res.rows) {
- return;
- }
- let leftArr = [];
- let rightArr = [];
- (res.rows || []).forEach((item, index) => {
- index % 2 !== 0 ? leftArr.push(item) : rightArr.push(item);
- });
- listData.value = leftArr;
- rightList.value = rightArr;
- total.value = res.rows;
- } catch (error) {
- console.error('Error fetching data:', error);
- }
- };
- const getBanners = async() => {
- try {
- const res =await slideshow(7);
- if(res.code === 200 && res.data.picture){
- list3.value = res.data.picture.split(',');
- }
- } catch (error) {
- console.log('error',error);
-
- }
- }
- onShow(() => {
- getList()
- getBanners();
- })
- </script>
- <style scoped lang="scss">
- .main-content {
- .home-banner {
- display: flex;
- align-items: center;
- justify-content: space-between;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0rpx 0rpx 0rpx rgba(0, 0, 0, 0), 0rpx 0rpx 0rpx rgba(0, 0, 0, 0), 0rpx 2.08rpx 4.17rpx rgba(0, 0, 0, 0.05);
- padding: 20rpx 16rpx;
- }
- .home-banner-left {
- display: flex;
- align-items: center;
- }
- .home-main {
- padding: 12px 16px;
- .custom-swiper {}
- .home-grid {
- margin-bottom: 32px;
- }
- }
- .home-ranking {
- padding: 12px 16px;
- }
- }
- .hot-box {
- padding: 12px 16px;
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- /* 3 列,每列等宽 */
- gap: 32rpx;
- .hot-item {
- .hot-item {
- padding: 12px 16px;
- }
- }
- }
- </style>
|