|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <!-- 【单证】 成本分配汇总 -->
|
|
|
+ <!-- 【单证】 财务核对表 -->
|
|
|
<div id="costAllocationTotal">
|
|
|
<!-- 查询区域 -->
|
|
|
<a-card :bordered="false">
|
|
@@ -98,7 +98,7 @@ import moment from 'moment'
|
|
|
|
|
|
import costDetailDrawer from '@views/cost-allocation-total/costDetailDrawer.vue'
|
|
|
|
|
|
-import { costList, itemCheck, cancelItemCheck } from '@api/document/cost-allocation-total.js'
|
|
|
+import { checkList } from '@api/document/inancialReconciliation.js'
|
|
|
|
|
|
export default {
|
|
|
name: 'inancialReconciliation', // 成本分配汇总 单证
|
|
@@ -202,10 +202,10 @@ export default {
|
|
|
costAllocationData: [],
|
|
|
// 查询条件
|
|
|
queryParam: {
|
|
|
- index: '',
|
|
|
- planNum: '',
|
|
|
- customerShortame: '',
|
|
|
- pageNo: '' // 点击的页数
|
|
|
+ // index: '',
|
|
|
+ // planNum: '',
|
|
|
+ // customerShortame: '',
|
|
|
+ // pageNo: '' // 点击的页数
|
|
|
},
|
|
|
// 分页
|
|
|
pagination: {
|
|
@@ -218,7 +218,22 @@ export default {
|
|
|
this.getCostList()
|
|
|
},
|
|
|
methods: {
|
|
|
-
|
|
|
+ // 分页查询
|
|
|
+ getCostList() {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ checkList(this.queryParam).then(res => {
|
|
|
+ if (res.success) {
|
|
|
+ // this.costAllocationData = res.result.records
|
|
|
+ // console.log('成本分配汇总数据', this.costAllocationData)
|
|
|
+ // this.pagination = {
|
|
|
+ // total: res.result.total,
|
|
|
+ // current: res.result.current,
|
|
|
+ // pageSize: res.result.size
|
|
|
+ // }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
},
|
|
|
computed: {},
|
|
|
mounted() {}
|