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

优化代码

上级 ee38e38c
......@@ -14,6 +14,7 @@ import TableCom from '../tableCompon';
import IsNewTable from './isNewMobileTable';
import maintain from '../assets/maintain.png';
import { isJSON } from '@/webPublic/one_stop_public/copy';
import getActiveJson from '@/webPublic/one_stop_public/Table/getActiveJson';
export default class ZdyTable extends Component {
constructor(props) {
......@@ -850,11 +851,11 @@ export default class ZdyTable extends Component {
if (!cell.content) {
return;
}
if (cell.uuid && window.smartFormGlobalProps?.activeJsonConfig[currentFormKey] && window.smartFormGlobalProps?.activeJsonConfig[currentFormKey][cell.uuid]) {
if (cell.uuid) {
// debugger;
cell.content = {
...cell.content,
...window.smartFormGlobalProps.activeJsonConfig[cell.uuid],
...getActiveJson(currentFormKey, cell.uuid),
};
// 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新
}
......
export default function getActiveJson(formKey = '', uuid = ''){
if(!formKey || !uuid){
return {};
}
if(window.smartFormGlobalProps?.activeJsonConfig && window.smartFormGlobalProps.activeJsonConfig[formKey]){
return window.smartFormGlobalProps.activeJsonConfig[formKey][uuid] || {};
}
return {};
}
......@@ -53,9 +53,6 @@ export function giveSmartFormGlobalProps({
},
},
activeJsonConfig: {
// id_aebaa1d428a722486f289d92e4979f318341: {
// disabled: true,
// },
}, // 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新
publicComponent: {
React,
......
......@@ -66,3 +66,5 @@ export default function prepareShow(postData = {}, content = '') {
}
});
}
......@@ -70,6 +70,7 @@ import PictureSignature, {
import WangEditor from '@/webPublic/zyd_public/WangEditor/OnstopWang';
import { noPrefixRequest, uaaRequest } from '@/webPublic/one_stop_public/utils/request';
import RangePickerDiy, { getMomentArr } from '@/webPublic/one_stop_public/tableCompon/Split_Index/RangePickerDiy';
import getActiveJson from '@/webPublic/one_stop_public/Table/getActiveJson';
const {
MonthPicker,
......@@ -1483,10 +1484,10 @@ export default class TableCom extends Component {
} = this.props;
// 27282 双选会报名后管理员修改举办时间 但是单位申请信息么有随着更新
const json = window.smartFormGlobalProps?.activeJsonConfig[formKey] && window.smartFormGlobalProps?.activeJsonConfig[formKey][uuid] ? {
const json = {
...jsonStatic,
...window.smartFormGlobalProps?.activeJsonConfig[formKey][uuid],
} : jsonStatic;
...getActiveJson(formKey, uuid),
}
const {
options,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论