优化报表页面日期错误问题

This commit is contained in:
wuxw 2026-04-10 14:37:22 +08:00
parent 6abddc4c37
commit af6c9d9526
2 changed files with 4 additions and 4 deletions

View File

@ -13,12 +13,12 @@
<el-row :gutter="20">
<el-col :span="4">
<el-date-picker v-model="reportFeeSummaryInfo.conditions.startDate" type="date"
:placeholder="$t('reportFeeSummary.selectStartDate')" style="width: 100%"
:placeholder="$t('reportFeeSummary.selectStartDate')" value-format="yyyy-MM-dd" style="width: 100%"
@change="handleDateChange" />
</el-col>
<el-col :span="4">
<el-date-picker v-model="reportFeeSummaryInfo.conditions.endDate" type="date"
:placeholder="$t('reportFeeSummary.selectEndDate')" style="width: 100%" @change="handleDateChange" />
:placeholder="$t('reportFeeSummary.selectEndDate')" value-format="yyyy-MM-dd" style="width: 100%" @change="handleDateChange" />
</el-col>
<el-col :span="4">
<el-input v-model.trim="reportFeeSummaryInfo.conditions.objName"

View File

@ -4,14 +4,14 @@ module.exports = {
open: true, // 自动打开浏览器
proxy: {
'/app': {
target: 'http://demo.homecommunity.cn/app', // 后端API地址
target: 'https://demo.homecommunity.cn/app', // 后端API地址
changeOrigin: true,
pathRewrite: {
'^/app': ''
}
},
'/callComponent': {
target: 'http://demo.homecommunity.cn/callComponent', // 后端API地址
target: 'https://demo.homecommunity.cn/callComponent', // 后端API地址
changeOrigin: true,
pathRewrite: {
'^/callComponent': ''