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.

修复 系统编码日期格式问题
This commit is contained in:
yf 2024-12-30 14:22:14 +08:00
parent 777e817847
commit fbe565f3e2
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'
}
}