iceqing / react-amis-admin

一个开箱可用的Amis + React 低代码开发环境
https://amis.iceq.cc
Apache License 2.0
149 stars 28 forks source link

日期显示英文 #17

Closed taoyao-code closed 1 year ago

taoyao-code commented 1 year ago
image

设置的中文,却显示英文

iceqing commented 1 year ago

可以贴下amis JSON的代码吗?

taoyao-code commented 1 year ago

示例中的时间都是这种的。

taoyao-code commented 1 year ago
{
  "type": "page",
  "body": {
    "type": "form",
    "debug": true,
    "api": "/amis/api/mock2/form/saveForm",
    "body": [
      {
        "type": "input-datetime",
        "name": "datetime",
        "label": "日期时间"
      }
    ]
  }
}

当前项目的示例中: https://github.com/iceqing/react-amis-admin/blob/vite/src/pages/admin/form/Basic.tsx

image
iceqing commented 1 year ago

这个应该是moment包的问题,可以在App.tsx引入中文文件。

import "moment/dist/locale/zh-cn";
iceqing commented 1 year ago

vite分支已修复该问题, 代码diff可以参考https://github.com/iceqing/react-amis-admin/commit/a205b7c75533200d4851b681cca0e9a5d00e2bd9

image