供奉大厅-供奉列表-接口优化
This commit is contained in:
parent
62f77290e3
commit
f5bf135827
|
|
@ -13,7 +13,13 @@ export function getEnshrinedList(params) {
|
|||
return request({
|
||||
url: "/app/enshrined/list",
|
||||
method: "get",
|
||||
params,
|
||||
params: {
|
||||
pageNum: "1",
|
||||
pageSize: "12",
|
||||
orderByColumn: "create_time",
|
||||
isAsc: "descending",
|
||||
...params,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,16 +16,16 @@
|
|||
class="table-row"
|
||||
@click="handleItemClick(item)"
|
||||
>
|
||||
<view class="table-cell worshiper-col">{{
|
||||
item.worshiperName || "未知"
|
||||
}}</view>
|
||||
<view class="table-cell time-col">{{
|
||||
formatDate(item.startDate)
|
||||
}}</view>
|
||||
<view class="table-cell worshiper-col"
|
||||
>{{ item.worshiperName || "未知" }}
|
||||
</view>
|
||||
<view class="table-cell time-col"
|
||||
>{{ formatDate(item.startDate) }}
|
||||
</view>
|
||||
<view class="table-cell time-col">{{ formatDate(item.endDate) }}</view>
|
||||
<view class="table-cell type-col">{{
|
||||
item.thaliName || "未知类型"
|
||||
}}</view>
|
||||
<view class="table-cell type-col"
|
||||
>{{ item.thaliName || "未知类型" }}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
|
@ -67,7 +67,7 @@ export default {
|
|||
enshrinedList: [],
|
||||
loading: false,
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
pageSize: 12,
|
||||
total: 0,
|
||||
hasMore: true,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user