Compare commits

...

2 Commits

Author SHA1 Message Date
yf 7695075607 Merge branch 'dev' of https://git.yfgame.vip/r/hangtag into dev
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.
2024-12-30 14:23:00 +08:00
yf fbe565f3e2 Merge branch 'dev' of https://git.yfgame.vip/r/hangtag into dev
# Please enter a commit message to explain why this merge is necessary,
# especially if it merges an updated upstream into a topic branch.
#
# Lines starting with '#' will be ignored, and an empty message aborts
# the commit.

修复 系统编码日期格式问题
2024-12-30 14:22:14 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ const resetData = {
that.modelData.step = 0
that.modelData.lastValue = ''
const d = toInt(that.modelData.value)
if (!isNaN(d)) {
if (isNaN(d)) {
that.modelData.value = 'yyyymmdd'
}
}