|
@@ -126,7 +126,7 @@ const getUserInfo = async () => {
|
|
|
|
|
|
const confirmClick = () => {
|
|
|
const date = new Date();
|
|
|
- const now = date.getFullYear() + "年" + date.getMonth() + "月" + date.getDate() + "日"
|
|
|
+ const now = date.getFullYear() + "年" + (date.getMonth() + 1) + "月" + date.getDate() + "日";
|
|
|
remark.user = userStore.user.username;
|
|
|
remarkRef.value.validate((valid) => {
|
|
|
if (valid) {
|