| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- <template>
- <view class="list-page-container">
- <view class="type-tabs">
- <uv-tabs
- :list="tabList"
- :current="currentTab"
- @change="onTabChange"
- :activeStyle="{ color: '#1c9bfd', fontWeight: 'bold', transform: 'scale(1.05)' }"
- :inactiveStyle="{ color: '#666' }"
- lineColor="#1c9bfd"
- lineWidth="40"
- :itemStyle="{ height: '88rpx', flex: 1 }"
- :scrollable="false"
- ></uv-tabs>
- </view>
- <!-- 列表区域 -->
- <view class="list-container">
- <scroll-view
- scroll-y
- class="scroll-list"
- :scroll-top="scrollTopValue"
- scroll-with-animation
- refresher-enabled
- :refresher-triggered="isTriggered"
- @refresherrefresh="onRefresh"
- @scroll="onScroll"
- @scrolltolower="loadMore"
- :show-scrollbar="false"
- >
- <uv-empty v-if="!list.length && loadStatus !== 'loading'" mode="list"></uv-empty>
- <view
- class="common-list-card"
- v-for="item in list"
- :key="item.id"
- @click="toDetail(item.id, item.expenseStatus)"
- >
- <view class="card-header">
- <text class="title">采购订单号:{{ item.orderNo || '-' }}</text>
- <text
- class="status-tag"
- :class="item.expenseStatus == '10' ? 'status-undo' : 'status-done'"
- >
- {{ item.expenseStatus == '10' ? '未报销' : '已报销' }}
- </text>
- </view>
- <view class="card-body">
- <view class="info-item">
- <text class="label">订单金额(元):</text>
- <text class="value number-font">{{ item.price !== null ? formatInteger(item.price) : '-' }}</text>
- </view>
- <view class="info-item">
- <text class="label">采购人:</text>
- <text class="value">{{ item.buyerName || '-' }}</text>
- </view>
- <view class="info-item">
- <text class="label">采购时间:</text>
- <text class="value">{{ item.createdTime ? formatDate(item.createdTime, 'YYYY-MM-DD') : '-' }}</text>
- </view>
- <view class="info-item">
- <text class="label">采购状态:</text>
- <text class="value">
- <template v-if="item.status == '10'">未采购</template>
- <template v-else-if="item.status == '20'">已采购</template>
- <template v-else>-</template>
- </text>
- </view>
- <view class="info-item">
- <text class="label">项目名称:</text>
- <text class="value">{{ item.projectName || '-' }}</text>
- </view>
- </view>
- </view>
- <uv-load-more
- v-if="list.length > 0 || loadStatus === 'loading'"
- :status="loadStatus"
- @loadmore="loadMore"
- ></uv-load-more>
- </scroll-view>
- <FundTabbar :current="0" />
- <uv-back-top
- :scrollTop="currentScrollTop"
- :bottom="160"
- :right="30"
- @click="backToTop"
- ></uv-back-top>
- </view>
- </view>
- </template>
- <script setup lang="ts">
- import { ref, nextTick, computed } from 'vue';
- import { onLoad } from '@dcloudio/uni-app';
- import { useExpenseRemindApi } from '@/api/fund/index';
- import { onRouterPush } from '@/utils/router';
- import { formatDate } from '@/utils/date';
- import { DEFAULT_PAGE_SIZE } from '@/constants/index';
- import FundTabbar from '@/components/FundTabbar.vue';
- const expenseRemindApi = useExpenseRemindApi();
- const tabList = ref([{ name: '未报销', type: '10' }, { name: '已报销', type: '20' }]);
- const currentTab = ref(0);
- const queryParams = ref({
- expenseStatus: '10',
- pageNum: 1,
- pageSize: DEFAULT_PAGE_SIZE
- });
- const list = ref<any[]>([]);
- const loadStatus = ref<'loadmore' | 'loading' | 'nomore'>('loadmore');
- const isTriggered = ref(false);
- const scrollTopValue = ref(0);
- const currentScrollTop = ref(0);
- // Helper function to format integer amount
- const formatInteger = (val: any) => {
- if (val === null || val === undefined) return '0';
- const num = Number(val);
- return isNaN(num) ? '0' : Math.floor(num).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
- };
- const fetchListData = async (reset = false) => {
- if (reset) {
- queryParams.value.pageNum = 1;
- }
- loadStatus.value = 'loading';
- try {
- const res: any = await expenseRemindApi.getList(queryParams.value);
-
- if (res.code == 200) {
- const records = res.data?.list || res.list || [];
- if (reset) {
- list.value = records;
- } else {
- list.value = [...list.value, ...records];
- }
-
- if (records.length < queryParams.value.pageSize) {
- loadStatus.value = 'nomore';
- } else {
- loadStatus.value = 'loadmore';
- queryParams.value.pageNum += 1;
- }
- } else {
- loadStatus.value = 'nomore';
- }
- } catch (error) {
- console.error('Fetch error:', error);
- loadStatus.value = 'nomore';
- } finally {
- if (reset) {
- isTriggered.value = false;
- }
- }
- };
- const onTabChange = (e: any) => {
- currentTab.value = e.index;
- queryParams.value.expenseStatus = tabList.value[e.index].type;
- fetchListData(true);
- };
- const onRefresh = async () => {
- isTriggered.value = true;
- await fetchListData(true);
- };
- const loadMore = () => {
- if (loadStatus.value !== 'loadmore') return;
- fetchListData(false);
- };
- const onScroll = (e: any) => {
- currentScrollTop.value = e.detail.scrollTop;
- };
- const backToTop = () => {
- scrollTopValue.value = currentScrollTop.value;
- nextTick(() => {
- scrollTopValue.value = 0;
- });
- };
- const toDetail = (id: number, status: string | number) => {
- if (status == 10) {
- // 未报销,前往报销编辑
- onRouterPush(`/pages/fund/reimbursement/edit?id=${id}`);
- } else {
- // 已报销,前往详情
- onRouterPush(`/pages/fund/reimbursement/detail?remindId=${id}`);
- }
- };
- onLoad(() => {
- fetchListData(true);
- });
- </script>
- <style lang="scss" scoped>
- .list-page-container {
- height: calc(100vh - var(--window-top));
- display: flex;
- flex-direction: column;
- background-color: #f5f7fa;
- box-sizing: border-box;
- }
- .type-tabs {
- background-color: #fff;
- position: sticky;
- top: 0;
- z-index: 99;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.03);
- }
- .list-container {
- padding: 30rpx;
- flex: 1;
- overflow: hidden;
- box-sizing: border-box;
- }
- .scroll-list {
- flex: 1;
- height: 100%;
- }
- .common-list-card {
- .card-header {
- .status-tag {
- &.status-done {
- color: #52c41a;
- background-color: rgba(82, 196, 26, 0.1);
- }
- &.status-undo {
- color: #fa8c16;
- background-color: rgba(250, 173, 20, 0.1);
- }
- &.status-reject {
- color: #f5222d;
- background-color: rgba(245, 34, 45, 0.1);
- }
- }
- }
- .card-body {
- .info-item {
- display: flex;
- font-size: 28rpx;
- margin-bottom: 12rpx;
- line-height: 1.5;
- &:last-child {
- margin-bottom: 0;
- }
- .label {
- color: #666;
- width: 200rpx;
- flex-shrink: 0;
- }
- .value {
- color: #333;
- flex: 1;
- word-break: break-all;
- }
- }
- }
- }
- .number-font {
- font-family: 'Helvetica Neue', Arial, sans-serif;
- color: #1c9bfd !important;
- font-weight: 500;
- }
- .bottom-action-bar {
- display: none;
- }
- </style>
|