提交 ac3aaa71 authored 作者: 钟是志's avatar 钟是志

switch 组件修改

上级 4076e86f
...@@ -4,7 +4,7 @@ import React, { useEffect } from 'react'; ...@@ -4,7 +4,7 @@ import React, { useEffect } from 'react';
export default function SwitchWeb(props) { export default function SwitchWeb(props) {
const { const {
value, checked: value,
onChange, onChange,
json, json,
disabled, disabled,
...@@ -23,11 +23,11 @@ export default function SwitchWeb(props) { ...@@ -23,11 +23,11 @@ export default function SwitchWeb(props) {
} }
} }
}, [value]); }, [value]);
return ( return (
<Switch <Switch
disabled={disabled} disabled={disabled}
onChange={changeSw} onChange={changeSw}
checked={value}
checkedChildren={json.checkedChildren} checkedChildren={json.checkedChildren}
unCheckedChildren={json.unCheckedChildren} unCheckedChildren={json.unCheckedChildren}
/> />
......
...@@ -2027,6 +2027,10 @@ export default class TableCom extends Component { ...@@ -2027,6 +2027,10 @@ export default class TableCom extends Component {
var title = json.label || (dataColumn && dataColumn.title); var title = json.label || (dataColumn && dataColumn.title);
var initValue; var initValue;
const objinit = { ...init, ...obj }; const objinit = { ...init, ...obj };
if(dataColumn.base52 === 'KYAHGbFFyWo'){
// console.log(objinit);
// debugger;
}
if (objinit !== null && Object.keys(objinit).length > 0) { if (objinit !== null && Object.keys(objinit).length > 0) {
if (this.props.fatherCode != null) { if (this.props.fatherCode != null) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论