store-manage-app/src/pages/make-card/list.vue

133 lines
3.8 KiB
Vue

<template>
<view>
<CuNavbar title="补卡申请">
<template #right>
<view @click="goPath('/pages/make-card/create')" class="text-24rpx text-white">申请</view>
</template>
</CuNavbar>
<uv-sticky bgColor="#fff">
<uv-tabs
:activeStyle="{ color: '#ee2c37' }"
:scrollable="false"
lineColor="#ee2c37"
:list="tabList"
@change="tabChange"
></uv-tabs>
</uv-sticky>
<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="补卡申请"
:status-text="item.workflow_check.check_status_text"
:status-color="statusFun(item.workflow_check.check_status,'statusExpense','color')"
:body="[
{ label: '补卡时间: ', value: item.date_format },
{ label: '补卡类别: ', value: item.sign_time_text },
{ label: '补卡原因: ', value: item.reason },
{ label: '申请时间: ', value: item.created_format },
]"
@click.stop="applyDetail(item)"
/>
</view>
</template>
</MescrollItem>
<MescrollItem
ref="mescrollItem1"
:top="88"
:i="1"
: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="补卡申请"
: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.date_format },
{ label: '补卡类别: ', value: item.check.subject.sign_time_text },
{ label: '补卡原因: ', value: item.check.subject.reason },
{ label: '申请时间: ', value: item.check.subject.created_format },
]"
@click.stop="checkDetail(item)"
/>
</view>
</template>
</MescrollItem>
</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 tabList = ref([
{
name: '我的补卡',
apiUrl: '/hr/sign-repairs',
},
{
name: '补卡审核',
apiUrl: '/workflow',
params: {
subject_type: 'employee_sign_repairs',
include: 'check.subject.employee'
},
},
])
const mescrollItem0 = ref(null)
const mescrollItem1 = ref(null)
const mescrollItems = [mescrollItem0, mescrollItem1]
const { tabIndex, getMescroll, scrollToLastY } = useMescrollMore(
mescrollItems,
onPageScroll,
onReachBottom
)
onLoad(() => {
uni.$on('refresh', () => {
console.log('refresh')
mescrollItem0?.value?.getMescroll()?.resetUpScroll()
mescrollItem1?.value?.getMescroll()?.resetUpScroll()
})
})
const goPath = (url) => {
uni.navigateTo({
url,
})
}
const tabChange = ({ index }) => {
tabIndex.value = index
scrollToLastY()
}
const applyDetail = (item) => {
uni.navigateTo({
url: `/pages/make-card/detail?id=${item.id}`,
})
}
const checkDetail = (item) => {
uni.navigateTo({
url: `/pages/audits/detail?id=${item.id}&type=${item.check.subject_type}`,
})
}
</script>