Browse Source

完善代收款申请、收款款项确认、出纳款项确认--列表中增加下载次数

zhanglei
yunuo970428 2 years ago
parent
commit
ba1ba42b2b
  1. 5
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/agencyfund/agencyfund.vue
  2. 7
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/acknowledgementReceipt.vue
  3. 5
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/cashierConfirmation.vue

5
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/agencyfund/agencyfund.vue

@ -49,6 +49,11 @@
<span>{{ scope.row.auditState == 1 ? '待审核' : scope.row.auditState == 2 ? '已驳回' : scope.row.auditState ==3 ? '已审核' : '其他' }}</span>
</template>
</el-table-column>
<el-table-column label="下载次数" align="center" width="90">
<template slot-scope="scope">
<span>{{ scope.row.downNum }}</span>
</template>
</el-table-column>
<el-table-column label="申请部门" align="center" width="90">
<template slot-scope="scope">
<span>{{ scope.row.createDept }}</span>

7
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/acknowledgementReceipt.vue

@ -49,6 +49,11 @@
<span>{{ scope.row.auditState == 1 ? '待审核' : scope.row.auditState == 2 ? '已驳回' : scope.row.auditState ==3 ? '已审核' : '其他' }}</span>
</template>
</el-table-column>
<el-table-column label="下载次数" align="center" width="90">
<template slot-scope="scope">
<span>{{ scope.row.downNum }}</span>
</template>
</el-table-column>
<el-table-column label="申请部门" align="center" width="90">
<template slot-scope="scope">
<span>{{ scope.row.createDept }}</span>
@ -150,7 +155,7 @@
</template>
<script>
import {createPdf, listPage} from '@/api/anruifinmanagement/paymentConfirmation.js'
import { createPdf, listPage } from '@/api/anruifinmanagement/paymentConfirmation.js'
import Pagination from '@/components/pagination'
import ButtonBar from '@/components/ButtonBar'
import pageye from '@/components/pagination/pageye'

5
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/cashierConfirmation.vue

@ -63,6 +63,11 @@
<span>{{ scope.row.subscriptionState == 1 ? '未认款' : scope.row.subscriptionState == 2 ? '部分认款' : scope.row.subscriptionState == 3 ? '已认款' : '其他' }}</span>
</template>
</el-table-column>
<el-table-column label="下载次数" align="center" width="90">
<template slot-scope="scope">
<span>{{ scope.row.downNum }}</span>
</template>
</el-table-column>
<el-table-column label="收款单号" align="center" width="100">
<template slot-scope="scope">
<span>{{ scope.row.billNo }}</span>

Loading…
Cancel
Save