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