2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<template>
  <view class="yd-page-container">
    <!-- 顶部导航栏 -->
    <wd-navbar
      title="${table.classComment}管理"
      left-arrow placeholder safe-area-inset-top fixed
      @click-left="handleBack"
    />
 
    <!-- 搜索组件 -->
    <SearchForm @search="handleQuery" @reset="handleReset" />
 
    <!-- ${table.classComment}列表 -->
    <view class="p-24rpx">
      <view
        v-for="item in list"
        :key="item.${primaryColumn.javaField}"
        class="mb-24rpx overflow-hidden rounded-12rpx bg-white shadow-sm"
        @click="handleDetail(item)"
      >
        <view class="p-24rpx">
#set ($titleField = "")
#set ($statusField = "")
#set ($statusDictType = "")
#foreach($column in $columns)
  #if ($titleField == "" && !$column.primaryKey && $column.listOperationResult)
    #set ($titleField = $column.javaField)
    #set ($titleComment = $column.columnComment)
  #end
  #if ($statusField == "" && $column.listOperationResult && $column.dictType && "" != $column.dictType)
    #set ($statusField = $column.javaField)
    #set ($statusDictType = $column.dictType)
  #end
#end
 #if ($titleField == "")
   #set ($titleField = $primaryColumn.javaField)
 #end
          <view class="mb-16rpx flex items-center justify-between">
            <view class="text-32rpx text-[#333] font-semibold">
              {{ item.${titleField} }}
            </view>
#if($statusField != "")
            <dict-tag :type="DICT_TYPE.${statusDictType.toUpperCase()}" :value="item.${statusField}" />
#end
          </view>
#foreach($column in $columns)
  #if ($column.listOperationResult && !$column.primaryKey && $column.javaField != $titleField && $column.javaField != $statusField)
    #set ($javaField = $column.javaField)
    #set ($comment = $column.columnComment)
    #set ($dictType = $column.dictType)
    #set ($javaType = $column.javaType)
    #if ($dictType && "" != $dictType)
          <view class="mb-12rpx flex items-center text-28rpx text-[#666]">
            <text class="mr-8rpx text-[#999]">${comment}:</text>
            <dict-tag :type="DICT_TYPE.${dictType.toUpperCase()}" :value="item.${javaField}" />
          </view>
    #elseif ($javaType == "LocalDateTime")
          <view class="mb-12rpx flex items-center text-28rpx text-[#666]">
            <text class="mr-8rpx text-[#999]">${comment}:</text>
            <text class="line-clamp-1">{{ formatDateTime(item.${javaField}) || '-' }}</text>
          </view>
    #else
          <view class="mb-12rpx flex items-center text-28rpx text-[#666]">
            <text class="mr-8rpx text-[#999]">${comment}:</text>
            <text class="line-clamp-1">{{ item.${javaField} }}</text>
          </view>
    #end
  #end
#end
        </view>
      </view>
 
      <!-- 加载更多 -->
      <view v-if="loadMoreState !== 'loading' && list.length === 0" class="py-100rpx text-center">
        <wd-status-tip image="content" tip="暂无${table.classComment}数据" />
      </view>
      <wd-loadmore
        v-if="list.length > 0"
        :state="loadMoreState"
        @reload="loadMore"
      />
    </view>
 
    <!-- 新增按钮 -->
    <wd-fab
      v-if="hasAccessByCodes(['${permissionPrefix}:create'])"
      position="right-bottom"
      type="primary"
      :expandable="false"
      @click="handleAdd"
    />
  </view>
</template>
 
<script lang="ts" setup>
#set ($hasDict = 0)
#foreach($column in $columns)
  #if ($hasDict == 0 && $column.listOperationResult && $column.dictType && "" != $column.dictType)
    #set ($hasDict = 1)
  #end
#end
#set ($hasDateTime = 0)
#foreach($column in $columns)
  #if ($column.listOperationResult)
    #if ($hasDateTime == 0 && $column.javaType == "LocalDateTime")
      #set ($hasDateTime = 1)
    #end
  #end
#end
import type { ${simpleClassName} } from '@/api/${table.moduleName}/${table.businessName}'
import type { LoadMoreState } from '@/http/types'
import { onReachBottom } from '@dcloudio/uni-app'
import { onMounted, ref } from 'vue'
import { get${simpleClassName}Page } from '@/api/${table.moduleName}/${table.businessName}'
import { useAccess } from '@/hooks/useAccess'
import { navigateBackPlus } from '@/utils'
#if ($hasDict == 1)
import { DICT_TYPE } from '@/utils/constants'
#end
#if ($hasDateTime == 1)
import { formatDateTime } from '@/utils/date'
#end
import SearchForm from './components/search-form.vue'
 
definePage({
  style: {
    navigationBarTitleText: '',
    navigationStyle: 'custom',
  },
})
 
const { hasAccessByCodes } = useAccess()
const total = ref(0)
const list = ref<${simpleClassName}[]>([])
const loadMoreState = ref<LoadMoreState>('loading')
const queryParams = ref({
  pageNo: 1,
  pageSize: 10,
})
 
/** 返回上一页 */
function handleBack() {
  navigateBackPlus()
}
 
/** 查询${table.classComment}列表 */
async function getList() {
  loadMoreState.value = 'loading'
  try {
    const data = await get${simpleClassName}Page(queryParams.value)
    list.value = [...list.value, ...data.list]
    total.value = data.total
    loadMoreState.value = list.value.length >= total.value ? 'finished' : 'loading'
  } catch {
    queryParams.value.pageNo = queryParams.value.pageNo > 1 ? queryParams.value.pageNo - 1 : 1
    loadMoreState.value = 'error'
  }
}
 
/** 搜索按钮操作 */
function handleQuery(data?: Record<string, any>) {
  queryParams.value = {
    ...data,
    pageNo: 1,
    pageSize: queryParams.value.pageSize,
  }
  list.value = []
  getList()
}
 
/** 重置按钮操作 */
function handleReset() {
  handleQuery()
}
 
/** 加载更多 */
function loadMore() {
  if (loadMoreState.value === 'finished') {
    return
  }
  queryParams.value.pageNo++
  getList()
}
 
/** 新增${table.classComment} */
function handleAdd() {
  uni.navigateTo({
    url: '/pages-${table.moduleName}/${table.businessName}/form/index',
  })
}
 
/** 查看详情 */
function handleDetail(item: ${simpleClassName}) {
  uni.navigateTo({
    url: `/pages-${table.moduleName}/${table.businessName}/detail/index?id=#[[${]]#item.${primaryColumn.javaField}#[[}]]#`,
  })
}
 
/** 触底加载更多 */
onReachBottom(() => {
  loadMore()
})
 
/** 初始化 */
onMounted(() => {
  getList()
})
</script>
 
<style lang="scss" scoped>
</style>