|
@@ -99,7 +99,7 @@ onShow(async () => {
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
<template>
|
|
|
- <z-paging v-if="tab" ref="paging" v-model="dataList" use-page-scroll @query="queryList">
|
|
|
|
|
|
|
+ <z-paging v-if="tab" ref="paging" v-model="dataList" :show-loading-more-no-more-view="false" use-page-scroll @query="queryList">
|
|
|
<template #top>
|
|
<template #top>
|
|
|
<view class="bg-white" :style="{ paddingTop: `${safeAreaInsets?.top}px` }">
|
|
<view class="bg-white" :style="{ paddingTop: `${safeAreaInsets?.top}px` }">
|
|
|
<wd-tabs v-if="groupList.length && tab" v-model="tab" :auto-line-width="true" custom-class="bg-transparent!" slidable="always" @click="handleTabClick">
|
|
<wd-tabs v-if="groupList.length && tab" v-model="tab" :auto-line-width="true" custom-class="bg-transparent!" slidable="always" @click="handleTabClick">
|
|
@@ -108,19 +108,19 @@ onShow(async () => {
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
- <view v-for="item in dataList" :key="item.id" class="mb-20rpx bg-white px-22rpx py-18rpx" @click="handleItemClick(item)">
|
|
|
|
|
- <view class="flex items-center justify-between">
|
|
|
|
|
- <view class="flex-1 pr-16rpx text-26rpx font-bold">
|
|
|
|
|
- {{ getQaTitle(item) }}
|
|
|
|
|
|
|
+ <view class="pt-20rpx">
|
|
|
|
|
+ <view v-for="item in dataList" :key="item.id" class="mb-20rpx bg-white px-22rpx py-20rpx" @click="handleItemClick(item)">
|
|
|
|
|
+ <view class="flex items-center justify-between">
|
|
|
|
|
+ <view class="flex-1 pr-16rpx text-28rpx line-height-[2]">
|
|
|
|
|
+ {{ getQaTitle(item) }}
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <wd-icon name="chevron-right" class="opacity-50" size="28rpx" />
|
|
|
</view>
|
|
</view>
|
|
|
- <wd-icon name="chevron-right" size="28rpx" />
|
|
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</z-paging>
|
|
</z-paging>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
-page {
|
|
|
|
|
- background-color: #fff;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+
|
|
|
</style>
|
|
</style>
|