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

3665 【1.0组件优化】列表组件优化

上级 937d23c5
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
* */ * */
import { apiRequest } from '../request'; import { apiRequest } from '../request';
import { getOneStopConfig, isJSON } from '@/baseComponent/utils';
import { getHistoryFormDetail } from '@/webPublic/Services'; import { getHistoryFormDetail } from '@/webPublic/Services';
import { getOneStopConfig } from '@/webPublic/zyd_public/utils/utils';
const giveValue = (x) => { const giveValue = (x) => {
if (x && x.rows) { if (x && x.rows) {
......
...@@ -1427,6 +1427,7 @@ class FormList extends React.Component { ...@@ -1427,6 +1427,7 @@ class FormList extends React.Component {
<div <div
id="mobelDiv" id="mobelDiv"
className={'mobelDivClassName'} className={'mobelDivClassName'}
data-tag={'/libs/formList/index.js-1431'}
style={{ style={{
overflow: 'hidden', overflow: 'hidden',
width: isMobile ? showMobileDiv : showDiv, width: isMobile ? showMobileDiv : showDiv,
...@@ -1459,7 +1460,9 @@ class FormList extends React.Component { ...@@ -1459,7 +1460,9 @@ class FormList extends React.Component {
overflow: 'hidden', overflow: 'hidden',
width: isMobile ? showMobileDiv : showDiv, width: isMobile ? showMobileDiv : showDiv,
height: '100%', height: '100%',
}}> }}
data-tag={'/libs/formList/index.js-1463'}
>
<div> <div>
{get === 'mobile' ? <div>手机端,请使用浏览器将手机横屏查看</div> : null} {get === 'mobile' ? <div>手机端,请使用浏览器将手机横屏查看</div> : null}
{showDiv && ( {showDiv && (
......
...@@ -943,7 +943,10 @@ export default class TableCom extends Component { ...@@ -943,7 +943,10 @@ export default class TableCom extends Component {
}; };
isChange = true; isChange = true;
} }
if (!isChange) { if (!isChange && typeof sqlKeys[sqlKey].data !== 'undefined') {
// typeof sqlKeys[sqlKey].data !== 'undefined' 解决此函数多次调用第一次还没返回结果又调用第二次导致data为undefined的问题 3665 【1.0组件优化】列表组件优化
// 姚鑫国说的 jsParams参数变了没调接口
if (callback) { if (callback) {
const data = sqlKeys[sqlKey].data; const data = sqlKeys[sqlKey].data;
if (json.optionType && json.optionType === 'func') { if (json.optionType && json.optionType === 'func') {
...@@ -4118,6 +4121,7 @@ ${obj[dataColumn.base52]} ...@@ -4118,6 +4121,7 @@ ${obj[dataColumn.base52]}
{title && ( {title && (
<span <span
data-cell-component-name={json.comName || 'no_com'} data-cell-component-name={json.comName || 'no_com'}
data-tag={'/tableCompon/index.jsx-4121'}
style={{ style={{
position: 'relative', position: 'relative',
top: '-0.5px', top: '-0.5px',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论