|
@@ -33,7 +33,7 @@ function FieldProblem() {
|
|
|
asc: ['isSolved'],
|
|
|
desc: ['solveTime', 'behospitalCode'],
|
|
|
behospitalStartDate: getCurrentDataFront().split('/').join('-') + ' 00:00:00',
|
|
|
- behospitalEndDate: getCurrentData().split('/').join('-') + ' 23:23:59'
|
|
|
+ behospitalEndDate: getCurrentData().split('/').join('-') + ' 23:59:59'
|
|
|
});
|
|
|
const [form] = Form.useForm();
|
|
|
let data = {
|
|
@@ -43,11 +43,11 @@ function FieldProblem() {
|
|
|
asc: ['isSolved'],
|
|
|
desc: ['solveTime', 'behospitalCode'],
|
|
|
behospitalStartDate: getCurrentDataFront().split('/').join('-') + ' 00:00:00',
|
|
|
- behospitalEndDate: getCurrentData().split('/').join('-') + ' 23:23:59'
|
|
|
+ behospitalEndDate: getCurrentData().split('/').join('-') + ' 23:59:59'
|
|
|
}
|
|
|
let date = {
|
|
|
behospitalStartDate: getCurrentDataFront().split('/').join('-') + ' 00:00:00',
|
|
|
- behospitalEndDate: getCurrentData().split('/').join('-') + ' 23:23:59'
|
|
|
+ behospitalEndDate: getCurrentData().split('/').join('-') + ' 23:59:59'
|
|
|
}
|
|
|
//表格数据
|
|
|
function getColumnResultPage(param) {
|
|
@@ -120,7 +120,7 @@ function FieldProblem() {
|
|
|
}
|
|
|
const onFinish = (value) => {
|
|
|
value.behospitalStartDate = moment(value.behospitalStartDate).format('YYYY-MM-DD 00:00:00');
|
|
|
- value.behospitalEndDate = moment(value.behospitalEndDate).format('YYYY-MM-DD 23:23:59');
|
|
|
+ value.behospitalEndDate = moment(value.behospitalEndDate).format('YYYY-MM-DD 23:59:59');
|
|
|
if (value.behospitalStartDate > value.behospitalEndDate) {
|
|
|
message.warning('开始时间不能大于结束时间');
|
|
|
return
|