|
@@ -21,7 +21,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { dateFormat } from '@/utils/date'
|
|
|
-import { getCustomerProfitSharingClaim } from '@/api/salary'
|
|
|
+import { getProfitSharingClaim } from '@/api/salary'
|
|
|
import ClaimForm from '../components/form.vue'
|
|
|
export default {
|
|
|
name: 'salaryClaimSharing',
|
|
@@ -70,8 +70,11 @@ export default {
|
|
|
{ label: '一级科目编码/名称', prop: 'oneLevelSubject' },
|
|
|
{ label: '二级科目编码/名称', prop: 'twoLevelSubject' },
|
|
|
{ label: '金额', prop: 'amount' },
|
|
|
+ { label: '机构名称', prop: 'organizationName' },
|
|
|
{ label: '统一认证号1', prop: 'unifiedCertificationNumber1' },
|
|
|
+ { label: '员工姓名1', prop: 'employeeName1' },
|
|
|
{ label: '统一认证号2', prop: 'unifiedCertificationNumber2' },
|
|
|
+ { label: '员工姓名2', prop: 'employeeName2' },
|
|
|
{ label: '数据日期', prop: 'dataDate' },
|
|
|
{ label: '管户层级标识', prop: 'customerLevelIdentifier' },
|
|
|
{ label: '客户类别标识', prop: 'customerCategoryIdentifier' },
|
|
@@ -94,7 +97,7 @@ export default {
|
|
|
async onInit () {
|
|
|
this.loading = true
|
|
|
try {
|
|
|
- const { data } = await getCustomerProfitSharingClaim({
|
|
|
+ const { data } = await getProfitSharingClaim({
|
|
|
...this.pageInfo,
|
|
|
...this.searchValues
|
|
|
})
|