|
|
@@ -1703,7 +1703,6 @@ let btns = ref({
|
|
|
}],
|
|
|
})
|
|
|
const handleChange = (item, type) => {
|
|
|
- console.log(type)
|
|
|
switch (type) {
|
|
|
case 'owner1':
|
|
|
item.checked = !item.checked
|
|
|
@@ -1856,7 +1855,7 @@ const getAgeByIdCard = (idCard: any, type?: any) => {
|
|
|
}
|
|
|
const noeYearPast = (time) => {
|
|
|
let strYear: any = time.getFullYear();
|
|
|
- let strDay: any = time.getDate()
|
|
|
+ let strDay: any = time.getDate();
|
|
|
let strMonth: any = time.getMonth() + 1;
|
|
|
let hh: any = time.getHours();
|
|
|
let minutes: any = time.getMinutes(); // 分
|
|
|
@@ -1929,7 +1928,6 @@ const oneYearPast1 = (time) => {
|
|
|
minutes +
|
|
|
":" +
|
|
|
Seconds;
|
|
|
- console.log(datastr)
|
|
|
return datastr;
|
|
|
}
|
|
|
//当前日期的次日
|