|
@@ -10,7 +10,7 @@
|
|
|
<!-- 表格主体 -->
|
|
|
<div class="table-box" style="margin-top: 20px;height: 57vh">
|
|
|
<el-table stripe ref="tableRef" :border="true" :data="radio1 === 1 ? certData : certData2" size="small">
|
|
|
- <el-table-column align="left" label="序号" width="80px" :show-overflow-tooltip="true">
|
|
|
+ <el-table-column align="left" label="序号" width="45px" :show-overflow-tooltip="true">
|
|
|
<template #default="scope">
|
|
|
{{ scope.$index + 1 }}
|
|
|
</template>
|
|
@@ -253,13 +253,13 @@ function formatDate(timestamp) {
|
|
|
|
|
|
// 获取指定月份之后的日期
|
|
|
function addMonthsToTimestamp(timestampInSeconds, months) {
|
|
|
- const date = new Date(timestampInSeconds * 1000); // 乘以1000将秒转换为毫秒
|
|
|
- // 例如,设置月份为13会将年份增加1并将月份设置为1
|
|
|
+ const date = new Date(timestampInSeconds * 1000); // 乘以1000将秒转换为毫秒
|
|
|
+ // 例如,设置月份为13会将年份增加1并将月份设置为1
|
|
|
date.setMonth(date.getMonth() + months);
|
|
|
- // 格式化日期为yyyy-mm-dd字符串
|
|
|
+ // 格式化日期为yyyy-mm-dd字符串
|
|
|
const year = date.getFullYear();
|
|
|
- const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,所以需要加1,并用padStart确保是两位数
|
|
|
- const day = String(date.getDate()).padStart(2, '0'); // 用padStart确保是两位数
|
|
|
+ const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,所以需要加1,并用padStart确保是两位数
|
|
|
+ const day = String(date.getDate()).padStart(2, '0'); // 用padStart确保是两位数
|
|
|
return `${year}-${month}-${day}`;
|
|
|
}
|
|
|
|