123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- <template>
- <view style="padding-top: 20rpx; width: 100vw; height: 100vh; overflow: hidden">
- <view style="width: 100%; height: 100%; overflow:scroll">
- <!-- <view class="Wrapper">
- <image src="/static/img/Location.png" class="Wrapper-img" />
- <span class="Wrapper-content">重庆</span>
- <vie class="input-container">
- <up-input v-model="value" @click.native="goToDetail" placeholder="请输入内容" prefixIcon="search"
- :customStyle="inputStyle"></up-input>
- </vie>
- </view> -->
- <view class="tabs-container">
- <!-- <view class="tabs-wrapper">
- <scroll-view scroll-x class="tabs-scroll">
- <up-tabs :list="list1" @change="handlTabs" keyName="businessName"
- class="tabs-content" :current="tabKey"></up-tabs>
- </scroll-view>
- </view>
- <view class="custom-dropdown">
- <up-tabs :list="list2" @change="clickList2" class="tabs-content" :current="currentTabs2"
- keyName="businessName" />
- </view>
- <view class="tabs-wrapper">
- <scroll-view scroll-x class="tabs-scroll">
- <up-tabs :list="list1" @change="handlTabs" keyName="businessName"
- class="tabs-content" :current="tabKey"></up-tabs>
- </scroll-view>
- </view> -->
- <Tabs :list="list1" @change="handlTabs" ref="tabRef" />
- </view>
- <!-- 瀑布流 -->
- <view v-if="userType == '1'">
- <up-waterfall v-model="flowList" v-if="pages.total >0">
- <template #left>
- <view class="demo-warter" v-for="(item, index) in leftList" :key="index"
- @click="goToDetail(item)">
- <up-lazy-load threshold="-450" border-radius="10" :image="item.volunteerPicture"
- :index="index"></up-lazy-load>
- <view class="demo-title">
- {{item.businessTierName}}
- </view>
- <view class="demo-skillDescribe">
- {{item.skillDescribe}}
- </view>
- <view class="demo-PriceDome">
- <view class="demo-price">
- <image :src="item.volunteerPicture" class="name-image"></image>
- {{item.name}}
- </view>
- </view>
- </view>
- </template>
- <template #right>
- <view class="demo-warter" v-for="(item, index) in rightList" :key="index"
- @click="goToDetail(item)">
- <up-lazy-load threshold="-450" border-radius="10" :image="item.volunteerPicture"
- :index="index"></up-lazy-load>
- <view class="demo-title">
- {{item.businessTierName}}
- </view>
- <view class="demo-skillDescribe">
- {{item.skillDescribe}}
- </view>
- <view class="demo-PriceDome">
- <view class="demo-price">
- <image :src="item.volunteerPicture" class="name-image"></image>
- {{item.name}}
- </view>
- </view>
- </view>
- </template>
- </up-waterfall>
- <view v-else>
- <NoneView />
- </view>
- </view>
- <up-loadmore style="margin-top: 40rpx;" :status="loadmoreInfo.status"
- :loadmoreText="loadmoreInfo.loadingText" :loadingText="loadmoreInfo.loadmoreText"
- :nomoreText="loadmoreInfo.nomoreText" @loadmore="handleLoadmore"
- v-if="userType == 1 && pages.total >0" />
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref,
- onMounted,
- reactive,
- nextTick
- } from 'vue';
- import {
- onLoad,
- onShow,
- onReachBottom
- } from "@dcloudio/uni-app";
- import {
- typeOptionSelect,
- volunteerInfoList,
- getDetailsvolunteerId,
- dictListlrRstudy,
- dictListlrData,
- volunteerSeachgetTreeList,
- volunteerinfolist
- } from "@/api/volunteerDetailsApi/details.js"
- import Tabs from "@/pages_home/components/tabs/index.vue"
- import NoneView from '@/components/NoneView/index.vue'
- const value1 = ref(1)
- const value2 = ref(2)
- const list1 = ref([])
- const list2 = ref([])
- const flowList = ref([]); //list数据
- const listData = ref([])
- const rightList = ref([])
- const currentTabs2 = ref(0)
- const total = ref(0)
- const serviceCategory = ref('')
- const leftList = ref([])
- const showDropdown = ref(false)
- const tabRef = ref(null)
- const businessManagementId = ref(null)
- const defaultTab = ref({
- dictValue: 1
- });
- const userType = uni.getStorageSync('userType') //读取本地存储
- // 用户/志愿者 识别标识
- const userOrWorker = uni.getStorageSync('storage_data').vuex_userOrWorker //读取本地存储
- function handlTabs(record) {
- clearList();
- serviceCategory.value = record.parentId;
- businessManagementId.value = record.id;
- getList();
- }
- function clickList2(item, index) {
- currentTabs2.value = index
- }
- function toggleDropdown() {
- showDropdown.value = !showDropdown.value
- }
- const goToDetail = async (item) => {
- const params = {
- volunteerId: item.volunteerId, // 获取 volunteerId
- serviceCategory: item.serviceCategory, // 获取 serviceCategory
- businessManagementId: item.businessManagementId, //获取 businessManagementId
- };
- uni.navigateTo({
- url: `/pages_home/pages/Volunteerside/goodsDetails?params=${JSON.stringify(params)}`
- });
- }
- const inputStyle = { //input輸入框樣式設置
- borderRadius: '140rpx',
- border: '1rpx solid #ccc',
- height: '70rpx',
- paddingLeft: '30rpx',
- width: '600rpx',
- }
- onLoad((options) => {
- const dataList = JSON.parse(decodeURIComponent(options.dataList));
- serviceCategory.value = options.serviceCategory
- list1.value = dataList
- list2.value = dataList[0].children
- })
- // 分页
- const pages = ref({
- current: 1,
- pageSize: 10,
- total: 0
- })
- const loadmoreInfo = ref({
- status: 'loadmore',
- loadingText: '努力加载中...',
- loadmoreText: '点击加载更多~',
- nomoreText: '已经到底啦~'
- })
- // 加载更多
- async function handleLoadmore(e) {
- if (pages.value.current < Math.ceil(pages.value.total / pages.value.pageSize)) {
- pages.value.current += 1;
- loadmoreInfo.value.status = 'loading';
- await getList();
- } else {
- loadmoreInfo.value.status = 'nomore';
- }
- }
- // const getListAdderss = async () => {
- // const res = await volunteerDataList()
- // console.log(res, 'volunteerDataList>>>>>>>>>>')
- // }
- const getList = async () => {
- try {
- loadmoreInfo.value.status = 'loading';
- // 请求时传递分页参数
- const res = await volunteerinfolist({
- pageNum: pages.value.current, // 当前页码
- pageSize: pages.value.pageSize, // 每页大小
- businessManagementId: businessManagementId.value
- });
- console.log(res, '>>>>>>>res');
- if (!res || !res.rows) {
- return;
- }
- // 判断是否已经到了最后一页
- if (pages.value.current >= Math.ceil(res.total / pages.value.pageSize)) {
- loadmoreInfo.value.status = 'nomore';
- } else {
- loadmoreInfo.value.status = 'loadmore';
- }
- // 将数据分成左右两列
- res.rows.forEach((item, index) => {
- index % 2 !== 0 ? leftList.value.push(item) : rightList.value.push(item);
- });
- console.log('leftList', leftList, rightList);
- pages.value.total = res.total;
- } catch (error) {
- clearList()
- console.error('Error fetching data:', error);
- }
- };
- const clearList = () => {
- leftList.value = [];
- rightList.value = [];
- loadmoreInfo.value.status = 'loadmore';
- pages.value.total = 0;
- }
- onReachBottom(() => {
- if (loadmoreInfo.value.status !== 'nomore') { // 更宽松的条件
- loadmoreInfo.value.status = 'loading';
- pages.value.current += 1;
- getList();
- }
- })
- onMounted(() => {
- // getList()
- })
- </script>
- <style scoped>
- .Wrapper {
- display: flex;
- align-items: center;
- gap: 10rpx;
- }
- .Wrapper-img {
- width: 50rpx;
- height: 50rpx;
- margin-left: 10rpx;
- }
- .Wrapper-content {
- color: rgba(16, 16, 16, 1);
- font-size: 25rpx;
- font-family: PingFangSC-regular;
- line-height: 20rpx;
- }
- /* 外层容器 */
- .tabs-container {
- width: 100%;
- background: #fff;
- padding: 10px 0;
- }
- /* Flex 布局容器 */
- .tabs-wrapper {
- display: flex;
- align-items: center;
- position: relative;
- }
- /* 可横向滚动的 scroll-view */
- .tabs-scroll {
- flex: 1;
- /* 占据剩余空间 */
- overflow-x: auto;
- /* 允许横向滚动 */
- white-space: nowrap;
- /* 禁止换行 */
- -webkit-overflow-scrolling: touch;
- /* iOS 平滑滚动 */
- }
- /* 隐藏滚动条(可选) */
- .tabs-scroll::-webkit-scrollbar {
- display: none;
- }
- /* 固定图标(始终显示在右侧) */
- .fixed-icon {
- width: 30px;
- height: 30px;
- margin-left: 10px;
- /* 与 tabs 的间距 */
- flex-shrink: 0;
- /* 禁止压缩 */
- }
- .demo-warter {
- border-radius: 16rpx;
- margin: 10rpx;
- background-color: #ffffff;
- padding: 10rpx;
- }
- .u-close {
- position: absolute;
- top: 32rpx;
- right: 32rpx;
- }
- .demo-image {
- width: 100%;
- border-radius: 8rpx;
- }
- .demo-title {
- font-size: 25rpx;
- margin-top: 8rpx;
- color: #999;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-word;
- }
- .demo-skillDescribe {
- font-size: 30rpx;
- margin-top: 8rpx;
- color: #333;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-word;
- }
- .demo-img {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- }
- .demo-PriceDome {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- margin-top: 20rpx;
- }
- .demo-price {
- display: flex;
- align-items: center;
- flex: 1;
- overflow: hidden;
- }
- .name-image {
- width: 50rpx;
- height: 50rpx;
- margin-right: 12rpx;
- border-radius: 50%;
- }
- .name-text {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: 150rpx;
- color: #444;
- }
- .demo-warter {
- border-radius: 16rpx;
- margin: 10rpx;
- background-color: #ffffff;
- padding: 10rpx;
- }
- .u-close {
- position: absolute;
- top: 32rpx;
- right: 32rpx;
- }
- .demo-image {
- width: 100%;
- border-radius: 8rpx;
- }
- .demo-title {
- font-size: 25rpx;
- margin-top: 8rpx;
- color: #999;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-word;
- }
- .demo-skillDescribe {
- font-size: 30rpx;
- margin-top: 8rpx;
- color: #333;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-word;
- }
- .demo-img {
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- }
- .demo-PriceDome {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- margin-top: 20rpx;
- }
- .demo-price {
- display: flex;
- align-items: center;
- flex: 1;
- overflow: hidden;
- }
- .name-image {
- width: 50rpx;
- height: 50rpx;
- margin-right: 12rpx;
- border-radius: 50%;
- }
- .name-text {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: 150rpx;
- color: #444;
- }
- </style>
|