| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- <template>
- <div class="entry-container">
- <!-- <div
- class="search-wrap"
- ref="searchWrapRef"
- >
- <el-form
- :model="state.queryParams"
- ref="queryRef"
- >
- <el-form-item prop="serialNo">
- <el-select
- v-model="state.queryParams.feeType"
- style="width: 100%"
- placeholder="费用类型"
- clearable
- @change="search"
- >
- <el-option
- v-for="item in FeeTypeList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item prop="serialNo">
- <el-select
- v-model="state.queryParams.feeStatus"
- style="width: 100%"
- placeholder="费用状态"
- clearable
- @change="search"
- >
- <el-option
- label="已支付"
- value="20"
- ></el-option>
- <el-option
- label="未支付"
- value="10"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item prop="serialNo">
- <el-date-picker
- v-model="state.queryParams.feeTime"
- type="date"
- style="width: 100%"
- placeholder="费用时间"
- clearable
- @change="search"
- />
- </el-form-item>
- </el-form>
- <div style="text-align: right">
- <el-button
- @click="handleExport"
- style="height: 25px"
- type="primary"
- >
- 导出
- </el-button>
- </div>
- </div> -->
- <div class="list-container">
- <van-list
- v-model:loading="state.loading"
- :finished="state.finished"
- finished-text="没有更多了"
- @load="onLoad"
- >
- <van-cell
- v-for="item in state.pageList"
- :key="item"
- >
- <template #default>
- <div class="list">
- <header class="flex justify-between">
- <strong class="title">{{ `${item.userName}的费用流水` }}</strong>
- <van-tag
- v-if="item.approveStatus == ApproveStatus.WAIT_SUBMIT"
- type="warning"
- >
- 待提交
- </van-tag>
- <van-tag
- v-else-if="item.approveStatus == ApproveStatus.APPROVING"
- type="primary"
- >
- 审核中
- </van-tag>
- <van-tag
- v-else-if="item.approveStatus == ApproveStatus.PASS"
- type="success"
- >
- 通过
- </van-tag>
- <van-tag
- v-else-if="item.approveStatus == ApproveStatus.REVOKE"
- type="success"
- >
- 撤销
- </van-tag>
- <van-tag
- v-else-if="item.approveStatus == ApproveStatus.REFUSE"
- type="danger"
- >
- 拒绝
- </van-tag>
- </header>
- <p class="inst-title">
- <span>费用类型</span>
- <span class="title ml8">{{ formatterFboType(item) }}</span>
- </p>
- <p class="inst-title">
- <span>费用时间</span>
- <span class="title ml8">
- {{ item.fbdStartDate ? dayjs(item.fbdStartDate).format('YYYY-MM-DD') : '' }} ~
- {{ item.fbdEndDate ? dayjs(item.fbdEndDate).format('YYYY-MM-DD') : '' }}
- </span>
- </p>
- <p class="inst-title">
- <span>确认时间</span>
- <span class="title ml8">
- {{ item.confirmTime ? dayjs(item.confirmTime).format('YYYY-MM-DD') : '' }}
- </span>
- </p>
- <p class="inst-title">
- <span>总计金额</span>
- <span class="title ml8">{{ item.fboActualAmount }} 元</span>
- </p>
- <p class="inst-title">
- <span>状态</span>
- <span class="title ml8">
- {{ formatterFboStatus(item) }}
- </span>
- </p>
- <footer class="flex justify-between mt16"></footer>
- </div>
- </template>
- </van-cell>
- </van-list>
- </div>
- <DetailModal
- :showDialog="showDetailDialog"
- :isReturnCageList="false"
- ref="detailModalRef"
- @close="() => (showDetailDialog = false)"
- />
- <ReturnCageDialog
- ref="returnCageDialogRef"
- :currentRefundableItemNumber="currentRefundableItemNumber"
- :getTableData="handleRefresh"
- />
- </div>
- </template>
- <script lang="ts" setup>
- import { reactive, ref, onMounted, defineAsyncComponent, ComponentPublicInstance } from 'vue'
- import to from 'await-to-js'
- import dayjs from 'dayjs'
- import { formatDate, formatToChineseDate } from '/@/utils/formatTime'
- import { ApproveStatus, ApproveStatusList, MyCageType, FeeTypeList } from '/@/constants/pageConstants'
- import { usePlatAnimalCageApplicationApi } from '/@/api/platform/animal'
- import { useFinaceApi } from '/@/api/finace'
- import { useBillApi } from '/@/api/instr/finance/bill'
- import { useUserInfos } from '/@/hooks/useUserInfos'
- interface ReturnCageDialogInstance extends ComponentPublicInstance {
- handleOpenRefundableDialog: (id: number) => void
- }
- interface DetailModalInstance extends ComponentPublicInstance {
- initForm: (id: number) => void
- }
- const DetailModal = defineAsyncComponent(() => import('/@/view/animal/application/components/Detail.vue'))
- const ReturnCageDialog = defineAsyncComponent(
- () => import('/@/view/animal/application/components/ReturnCageDialog.vue'),
- )
- const { userInfos } = useUserInfos()
- const platAnimalCageApplicationApi = usePlatAnimalCageApplicationApi()
- const finaceApi = useFinaceApi()
- const billApi = useBillApi()
- const returnCageDialogRef = ref<ReturnCageDialogInstance>()
- const detailModalRef = ref<DetailModalInstance>()
- const showDetailDialog = ref<boolean>(false)
- const activeStatus = ref<MyCageType>(MyCageType.MINE_CAGE)
- const currentRefundableItemNumber = ref<number>(0)
- const state = reactive({
- pageList: [],
- loading: false,
- finished: false,
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- id: null,
- },
- })
- const formatApproveStatus = (status: number) => {
- return ApproveStatusList.find((item) => item.id === status)?.name || ''
- }
- const handleRefundable = (row: any) => {
- currentRefundableItemNumber.value = row.number
- returnCageDialogRef.value.handleOpenRefundableDialog(row.id)
- }
- const handleRefresh = () => {
- resetQueryParams()
- onLoad()
- }
- const resetQueryParams = () => {
- ;(state.pageList = []),
- (state.loading = false),
- (state.finished = false),
- (state.queryParams = {
- pageNum: 1,
- pageSize: 10,
- id: null,
- })
- }
- const onLoad = async (isSearch?: boolean) => {
- state.loading = true
- let param = state.queryParams
- param.id = userInfos.value.id
- const [err, res]: ToResponse = await to(billApi.getFinBillableOrderList(param))
- state.loading = false
- if (err) return
- const list = res?.data?.list || []
- if (!isSearch) {
- for (const item of list) {
- state.pageList.push(item)
- }
- state.queryParams.pageNum++
- if (list.length < state.queryParams.pageSize) {
- state.finished = true
- }
- } else {
- state.pageList = list
- }
- }
- const handleCheckDetail = (row: any) => {
- detailModalRef.value.initForm(row.id)
- showDetailDialog.value = true
- }
- const search = () => {
- onLoad(true)
- }
- const formatterFboType = (row: any) => {
- if (row.fboBizCode.startsWith('WT')) {
- return '技术服务计费'
- } else if (row.fboBizCode.startsWith('YY')) {
- return '仪器预约费用'
- } else if (row.fboBizCode.startsWith('PR')) {
- return '平台入室费用'
- } else if (row.fboBizCode.startsWith('AM')) {
- return '动物管理费用'
- } else {
- return '其他管理费用'
- }
- }
- // 10计费中 20待确认 30已确认 40 已上账 50 已报销/结算 90 已取消
- const formatterFboStatus = (row: any) => {
- switch (row.fboStatus) {
- case '10':
- return '计费中'
- case '20':
- return '待确认'
- case '30':
- return '已确认'
- case '40':
- return '已上账'
- case '50':
- return '已报销/结算'
- case '90':
- return '已取消'
- default:
- return '-'
- }
- }
- const handleExport = async () => {}
- onMounted(() => {
- onLoad()
- })
- </script>
- <style lang="scss" scoped>
- .entry-container {
- position: relative;
- display: flex;
- flex-direction: column;
- .search-wrap {
- background: #fff;
- margin-bottom: 10px;
- padding: 15px;
- }
- .list-container {
- overflow-y: auto;
- padding: 10px;
- border-radius: 4px;
- flex: 1;
- }
- .van-list {
- .van-cell {
- background-color: #fff;
- + .van-cell {
- margin-top: 10px;
- }
- header,
- footer {
- color: #333;
- }
- .title {
- flex: 1;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- text-align: left;
- }
- .inst-title {
- color: #333;
- text-align: left;
- flex: 1;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin-top: 4px;
- span:first-child {
- color: rgb(120, 120, 120);
- }
- }
- .time {
- color: #f69a4d;
- }
- }
- }
- }
- </style>
|