This commit is contained in:
parent
4fb81eb128
commit
1a936db5cc
|
|
@ -19,9 +19,9 @@
|
|||
@on-load="onLoad"
|
||||
>
|
||||
<!-- 自定义档案状态显示 -->
|
||||
<template #auditStatus="{ row }">
|
||||
<template #transferStatus="{ row }">
|
||||
{{
|
||||
getStatusText(row.auditStatus)
|
||||
getStatusText(row.transferStatus)
|
||||
}}
|
||||
</template>
|
||||
</avue-crud>
|
||||
|
|
@ -30,8 +30,8 @@
|
|||
|
||||
<script>
|
||||
import {
|
||||
getTransferAuditListApi,
|
||||
} from '@/api/filesTransfer/audit';
|
||||
getTransferRecordListApi,
|
||||
} from '@/api/filesTransfer/record';
|
||||
import { mapGetters } from 'vuex';
|
||||
import website from '@/config/website';
|
||||
|
||||
|
|
@ -87,7 +87,7 @@ export default {
|
|||
},
|
||||
{
|
||||
label: '移交进度',
|
||||
prop: 't_progress',
|
||||
prop: 'transferStatus',
|
||||
slot: true,
|
||||
},
|
||||
|
||||
|
|
@ -178,7 +178,7 @@ export default {
|
|||
pageNum:page.currentPage,
|
||||
pageSize:page.pageSize
|
||||
};
|
||||
getTransferAuditListApi(data).then(res => {
|
||||
getTransferRecordListApi(data).then(res => {
|
||||
const data = res.data;
|
||||
this.page.total = data.total;
|
||||
this.data = data.rows;
|
||||
|
|
|
|||
Loading…
Reference in New Issue