美文网首页
2018-01-26

2018-01-26

作者: NOTEBOOK2 | 来源:发表于2018-01-26 16:53 被阅读0次

Overview line 300

              <Input
                name="quantity"
                label="Availiable Quantity"
                disabled
                value={(_: any, { qtyOnShelf, qtyStockroom }: any) => {
                  const a = parseFloat(qtyOnShelf)
                  const b = parseFloat(qtyStockroom)
                  if (Number.isNaN(a) || Number.isNaN(b)) {
                    return "0.00"
                  } else {
                    return (a + b).toFixed(2)
                  }
                }}
              />

utils/formatter.ts

export const currency = (input: string | number) => {
  const price = typeof input === "number" ?
  input : parseFloat(input)
  return Number.isNaN(price) ? "" : `$${price.toFixed(2)}`
}

formatter和getter两步处理输入:

export const currency = (input: string | number) => {
  const price = typeof input === "number" ? input : parseFloat(input)
  return Number.isNaN(price) ? "" : `$${price.toFixed(2)}`
}

// step 1 any----string
// step 2 string----number

export const currency {
  formatter: (input: any) => {
    const price = typeof input === "number" ? input : parseFloat(input)
    return Number.isNaN(price) ? "" : `$${price.toFixed(2)}`
  }
  getter: (input: string) => {
    input.replace(/$/g, "")
    return parseFloat(input)
  }
}

相关文章

  • 2018-01-26

    2018-01-26 咖啡加糖丶甜到忧伤 2018-01-26 22:52 · 字数 535 · 阅读 1 · 日...

  • 2018-01-26

    2018-01-26 禾隆李亮 2018-01-26 16:37 · 字数 288 · 阅读 3 · 日记本 20...

  • 2018-01-26

    2018-01-26 亮剑_f5b9 2018-01-26 22:09 · 字数 330 · 阅读 0 · 日记本...

  • (岳海涛)关于cello...含PPT

    2018-01-26 岳海涛 关于cello | PPT下载 什么是cello? Cello在hyperledge...

  • 视频相关

    2018-01-26 大牛直播,跨平台(windows/android/iOS)推送(rtmp)、播放器(rtmp...

  • 2018-01-27

    2018-01-27 昆明电商陈老师 2018-01-26 09:37 · 字数 2533 · 阅读 57 · 日...

  • 美丽年青.刘婷(二首)

    2018-01-26 ——岁月如歌诗词选(第二集.30) 观微信《这位...

  • 刘婷之歌(二)

    2018-01-26 ——岁月如歌诗词选(第二集.30续) 年轻又美丽...

  • 日精进打卡2018-01-26

    【打卡始于2017-11-17,持续打卡于2018-01-26】 姓名:陈国锋 公司:Unimass Roller...

  • 2018-01-27

    2018-01-26 禾隆李亮 2018-01-27 21:19 · 字数 313 · 阅读 3 · 日记本 【日...

网友评论

      本文标题:2018-01-26

      本文链接:https://www.haomeiwen.com/subject/alswaxtx.html