@@ -89,6 +89,7 @@ const WbwDetailBasicWidget = ({
<Input
value={_meaning}
allowClear
+ placeholder="请输入"
onChange={(e) => {
console.log("meaning input", e.target.value);
setMeaning(e.target.value);
@@ -85,7 +85,7 @@ const WbwDetailFactorWidget = ({ data, onChange }: IWidget) => {
}
}}
>
- <Input allowClear />
+ <Input placeholder="请输入" allowClear />
</AutoComplete>
);
};
@@ -212,6 +212,7 @@ const WbwDetailFmWidget = ({
hidden={!factorInputEnable}
value={currValue.join("+")}
console.log(e.target.value);
const newData = resizeArray(e.target.value.split("+"), factors);
@@ -84,7 +84,7 @@ const WbwDetailParentWidget = ({ data, onChange }: IWidget) => {
+ <Input allowClear placeholder="请输入" />