store-manage-app/src/pages/expense-account/index.vue

135 lines
3.9 KiB
Vue

<template>
<view>
<CuNavbar title="报销管理">
<template #right>
<view @click="goPath('/pages/expense-account/submit')" class="text-24rpx text-white">申请</view>
</template>
</CuNavbar>
<uv-sticky bgColor="#fff">
<uv-tabs
:activeStyle="{ color: '#ee2c37' }"
:scrollable="false"
lineColor="#ee2c37"
:list="tabList"
:current="tabIndex"
@change="tabChange"
></uv-tabs>
</uv-sticky>
<view class="">
<MescrollItem
ref="mescrollItem0"
:top="88"
:i="0"
:index="tabIndex"
:apiUrl="tabList[0].apiUrl"
>
<template v-slot="{ list }">
<view class="space-y-15rpx p-base">
<ListItem
v-for="item in list"
:key="item.id"
:title="item.type?.name"
:status-text="statusFun(item.workflow_check?.check_status, 'statusExpense', 'name')"
:status-color="statusFun(item.workflow_check?.check_status, 'statusExpense', 'color')"
:body="[
{ label: '报销金额: ', value: item.expense },
{ label: '报销原因: ', value: item.reason },
{ label: '报销时间: ', value: item.created_format },
]"
@click="applyDetail(item)"
/>
</view>
</template>
</MescrollItem>
<MescrollItem
ref="mescrollItem1"
:i="1"
:top="88"
:index="tabIndex"
:apiUrl="tabList[1].apiUrl"
:params="tabList[1].params"
>
<template v-slot="{ list }">
<view class="space-y-15rpx p-base">
<ListItem
v-for="item in list"
:key="item.id"
:title="item.check.subject.type?.name"
:status-text="statusFun(item.check_status, 'statusExpense2', 'name')"
:status-color="statusFun(item.check_status, 'statusExpense2', 'color')"
:body="[
{ label: '申请人: ', value: item.check.subject.employee.name },
{ label: '报销金额: ', value: item.check.subject.expense },
{ label: '报销原因: ', value: item.check.subject.reason },
{ label: '报销时间: ', value: item.check.subject.created_format },
]"
@click="checkDetail(item)"
/>
</view>
</template>
</MescrollItem>
</view>
</view>
</template>
<script setup>
import CuNavbar from '@/components/cu-navbar/index'
import { ref } from 'vue'
import { onPageScroll, onReachBottom, onLoad } from '@dcloudio/uni-app'
import useMescrollMore from '@/uni_modules/mescroll-uni/hooks/useMescrollMore.js'
import MescrollItem from '@/components/mescroll-api/more.vue'
import statusFun from '@/utils/status'
import ListItem from '@/components/list-item/index'
const mescrollItem0 = ref(null)
const mescrollItem1 = ref(null)
const mescrollItems = [mescrollItem0, mescrollItem1]
const { tabIndex, getMescroll, scrollToLastY } = useMescrollMore(
mescrollItems,
onPageScroll,
onReachBottom
)
const tabList = ref([
{
name: '我的报销',
apiUrl: '/reimbursements',
},
{
name: '报销审核',
apiUrl: '/workflow',
params: { subject_type: 'reimbursements', include: 'check.subject.type,check.subject.employee' },
},
])
onLoad(() => {
uni.$on('refresh', () => {
mescrollItem0?.value?.getMescroll()?.resetUpScroll()
mescrollItem1?.value?.getMescroll()?.resetUpScroll()
})
})
const tabChange = ({ index }) => {
tabIndex.value = index
scrollToLastY()
}
const goPath = (url) => {
uni.navigateTo({
url,
})
}
const applyDetail = (item) => {
uni.navigateTo({
url: `/pages/expense-account/detail?id=${item.id}`
})
}
const checkDetail = (item) => {
uni.navigateTo({
url: `/pages/audits/detail?id=${item.id}&type=${item.check.subject_type}`
})
}
</script>