projects/mescc/zjl #62

已合并
juzi 2024-06-24 13:33:09 +08:00 将 3 次代码提交从 projects/mescc/zjl 合并至 projects/mescc/develop
共有 2 个文件被更改,包括 10 次插入0 次删除
仅显示提交 a9392c8999 的更改 - 显示所有提交

查看文件

@ -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: {

查看文件

@ -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: {