公告板
版本库
filestore
活动
搜索
登录
main
/
lightningupdate
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
test
buli
2023-05-22
71b93327e8f3fb3bffffc7c033c1f782e7b6ab32
[lightningupdate.git]
/
force-app
/
main
/
default
/
lwc
/
lexReturnGoodCusInput
/
lexReturnGoodCusInput.html
1
2
3
4
5
6
7
8
<template>
<template if:true={showInputOrText}>
<lightning-input label="" variant="label-hiden" value={inputValue} onchange={changeInputValue}></lightning-input>
</template>
<template if:false={showInputOrText}>
<lightning-formatted-number style="margin-left: 10px;" value={inputValue}></lightning-formatted-number>
</template>
</template>