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

左边可能有个树组件导致不能取学工里面的ant-layout-content 的宽度. 只能取父级td

上级 920fad0b
...@@ -3,11 +3,17 @@ export default function countWidth({ ...@@ -3,11 +3,17 @@ export default function countWidth({
uuid, uuid,
}) { }) {
let showDiv = 500; // 列表宽度 let showDiv = 500; // 列表宽度
console.log(uuid);
if (json.twidth) { if (json.twidth) {
// 列表宽度配置项 在 组件的 扩展的配置里面 // 列表宽度配置项 在 组件的 扩展的配置里面
showDiv = json.twidth; showDiv = json.twidth;
return showDiv; return showDiv;
} }
if(document.querySelector(`td[data-cell-id="${uuid}"]`)){
// 左边可能有个树组件导致不能取学工里面的ant-layout-content 的宽度. 只能取父级td
showDiv = document.querySelector(`td[data-cell-id="${uuid}"]`).clientWidth - 70;
return showDiv;
}
if (document.getElementsByClassName('ant-layout-content')?.length) { if (document.getElementsByClassName('ant-layout-content')?.length) {
// 这是大学工项目 容器元素的宽度 // 这是大学工项目 容器元素的宽度
showDiv = document.getElementsByClassName('ant-layout-content')[0].clientWidth - 100; showDiv = document.getElementsByClassName('ant-layout-content')[0].clientWidth - 100;
......
...@@ -220,7 +220,7 @@ class FormList extends React.Component { ...@@ -220,7 +220,7 @@ class FormList extends React.Component {
isAdd: false, isAdd: false,
isView: true, isView: true,
}); });
}; };z
isJSON = (str) => { isJSON = (str) => {
if (typeof str == 'string') { if (typeof str == 'string') {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论