Procházet zdrojové kódy

Merge branch 'dev' into uat

liangan před 3 týdny
rodič
revize
3f8d86bc38

+ 9 - 9
src/pages/mine/helpCenter.vue

@@ -99,7 +99,7 @@ onShow(async () => {
 </script>
 
 <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>
       <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">
@@ -108,19 +108,19 @@ onShow(async () => {
       </view>
     </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>
-        <wd-icon name="chevron-right" size="28rpx" />
       </view>
     </view>
   </z-paging>
 </template>
 
 <style lang="scss" scoped>
-page {
-  background-color: #fff;
-}
+
 </style>

+ 1 - 1
src/pages/mine/helpCenterDetail.vue

@@ -74,7 +74,7 @@ onLoad(async (options: any) => {
 </script>
 
 <template>
-  <view class="rounded-12rpx bg-white px-22rpx py-20rpx">
+  <view class="rounded-12rpx bg-white px-22rpx py-40rpx">
     <view class="mb-18rpx text-30rpx font-bold">
       {{ getQaTitle(detail) }}
     </view>