Compare commits

...

4 Commits

Author SHA1 Message Date
ca0a0142db Merge pull request 'projects/mescc/zjl' (#62) from projects/mescc/zjl into projects/mescc/develop
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #62
2024-06-24 13:33:08 +08:00
703334ac3c mt 2024-06-24 13:32:34 +08:00
3c6e408074 Merge branch 'projects/mescc/develop' into projects/mescc/zjl 2024-06-24 13:27:57 +08:00
a9392c8999 1 2024-06-24 13:27:09 +08:00
2 changed files with 10 additions and 0 deletions

View File

@ -26,6 +26,7 @@
placeholder="选择日期" placeholder="选择日期"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
style="width: 150px" style="width: 150px"
:picker-options="pickerOptions"
> >
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
@ -38,6 +39,7 @@
placeholder="选择周" placeholder="选择周"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
style="width: 150px" style="width: 150px"
:picker-options="pickerOptions"
> >
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
@ -97,6 +99,9 @@ export default {
{ id: 2, name: "月" }, { id: 2, name: "月" },
{ id: 3, name: "年" }, { id: 3, name: "年" },
], ],
pickerOptions: {
firstDayOfWeek: 1,
},
}; };
}, },
methods: { methods: {

View File

@ -25,6 +25,7 @@
placeholder="选择日期" placeholder="选择日期"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
style="width: 150px" style="width: 150px"
:picker-options="pickerOptions"
> >
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
@ -37,6 +38,7 @@
placeholder="选择周" placeholder="选择周"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
style="width: 150px" style="width: 150px"
:picker-options="pickerOptions"
> >
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
@ -118,6 +120,9 @@ export default {
{ id: 0, name: "瑞昌" }, { id: 0, name: "瑞昌" },
{ id: 1, name: "邯郸" }, { id: 1, name: "邯郸" },
], ],
pickerOptions: {
firstDayOfWeek: 1,
},
}; };
}, },
methods: { methods: {