|
|
@@ -143,8 +143,8 @@
|
|
|
<!-- <el-table-column label="主键" align="center" prop="id" />-->
|
|
|
<el-table-column label="统一社会信用代码" align="center" prop="unifiedSocialCreditCode" width="200" />
|
|
|
<el-table-column label="单位名称" align="center" prop="unitName" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="2023年平均每月缴存人数" align="center" prop="avgMonthlyContributors" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="2023年缴存总和(元)" align="center" prop="totalContributions" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="年度平均每月缴存人数" align="center" prop="avgMonthlyContributors" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="年缴存总和(元)" align="center" prop="totalContributions" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="最近缴存日期" align="center" prop="lastContributionDate" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="开户日期" align="center" prop="accountOpeningDate" width="180" :show-overflow-tooltip="true">
|
|
|
<template #default="scope">
|
|
|
@@ -152,6 +152,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="连续缴存月份" align="center" prop="consecutiveContributingMonths" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="年份备注" align="center" prop="remarks" :show-overflow-tooltip="true" />
|
|
|
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">-->
|
|
|
<!-- <template #default="scope">-->
|
|
|
<!-- <el-button-->
|
|
|
@@ -328,6 +329,7 @@ const data = reactive({
|
|
|
lastContributionDate: null,
|
|
|
accountOpeningDate: null,
|
|
|
consecutiveContributingMonths: null,
|
|
|
+ remarks:null
|
|
|
},
|
|
|
rules: {
|
|
|
}
|
|
|
@@ -363,6 +365,7 @@ function reset() {
|
|
|
lastContributionDate: null,
|
|
|
accountOpeningDate: null,
|
|
|
consecutiveContributingMonths: null,
|
|
|
+ remarks:null,
|
|
|
createTime: null,
|
|
|
updateTime: null
|
|
|
};
|