|
|
@ -2,15 +2,8 @@ |
|
|
|
const orderWidth = 180 |
|
|
|
import zh from '@/lang/zh' |
|
|
|
let _Public = zh.ColumsPublic // 字段通用
|
|
|
|
// let _Dashboard = zh.ColumsDashboard // 接口监控看板
|
|
|
|
let _Dashboard = JSON.parse(localStorage.getItem("interfaceBoardColumnsNames")) // 接口监控看板
|
|
|
|
let _Names = zh.ColumsNames // 接口监控看板
|
|
|
|
window.addEventListener('setItemEvent', (item) => { |
|
|
|
if(item.key == "interfaceBoardColumnsNames"){ |
|
|
|
_Dashboard = JSON.parse(localStorage.getItem("interfaceBoardColumnsNames")) // 接口监控看板
|
|
|
|
console.log(11,_Dashboard) |
|
|
|
} |
|
|
|
}) |
|
|
|
let _Names = zh.ColumsNames |
|
|
|
|
|
|
|
// 基础信息数据管理
|
|
|
|
/**/ |
|
|
|
// 物品基础信息
|
|
|
@ -3538,17 +3531,25 @@ export const Department = [ |
|
|
|
] |
|
|
|
|
|
|
|
// 接口监控看板
|
|
|
|
// let _Dashboard = zh.ColumsDashboard // 接口监控看板
|
|
|
|
let _Dashboard = localStorage.getItem("interfaceBoardColumnsNames") |
|
|
|
if(_Dashboard && _Dashboard != 'undefined' && _Dashboard != 'null') { |
|
|
|
_Dashboard = JSON.parse(localStorage.getItem("interfaceBoardColumnsNames")) |
|
|
|
} |
|
|
|
// window.addEventListener('setItemEvent', (item) => {
|
|
|
|
// if(item.key == "interfaceBoardColumnsNames"){
|
|
|
|
// _Dashboard = JSON.parse(localStorage.getItem("interfaceBoardColumnsNames")) // 接口监控看板
|
|
|
|
// console.log(11,_Dashboard)
|
|
|
|
// }
|
|
|
|
// })
|
|
|
|
// 用于处理刚进来的时候没有表头数据问题处理
|
|
|
|
const initDashboardLable = (data) => { |
|
|
|
return _Dashboard ? _Dashboard[data] : null |
|
|
|
} |
|
|
|
|
|
|
|
// 外部数据转换
|
|
|
|
export const dataExchangeFromOut = [ |
|
|
|
{ |
|
|
|
label: initDashboardLable('OutgoingToExternalNumber'), |
|
|
|
prop: "number", |
|
|
|
// fixed: "left",
|
|
|
|
// type: "name"
|
|
|
|
}, |
|
|
|
{ label: initDashboardLable('OutgoingToExternalNumber'), prop: "number" }, |
|
|
|
{ label: initDashboardLable('OutgoingToExternalRemark'), prop: "remark", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('OutgoingToExternalDataType'), prop: "dataType", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('OutgoingToExternalTableType'), prop: "tableType" }, |
|
|
@ -3610,22 +3611,261 @@ export const dataExchangeFromOut_file = [ |
|
|
|
// { label: _Public.ID, prop: "ID" },
|
|
|
|
] |
|
|
|
|
|
|
|
// WMS数据接收
|
|
|
|
export const comingToWms = [ |
|
|
|
{ label: initDashboardLable('IncomingToWmsNumber'), prop: "number" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsRemark'), prop: "remark", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsDataType'), prop: "dataType" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsDataAction'), prop: "dataAction" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsEffectiveDate'), prop: "effectiveDate",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsStatus'), prop: "status" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsDataIdentityCode'), prop: "dataIdentityCode" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsDataContent'), prop: "dataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsSourceSystem'), prop: "sourceSystem" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsWriteTime'), prop: "writeTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsReadTime'), prop: "readTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsErrorCode'), prop: "errorCode" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsErrorMessage'), prop: "errorMessage", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('IncomingToWmsRetryTimes'), prop: "retryTimes" }, |
|
|
|
// ************** 暂时隐藏 ************************
|
|
|
|
// { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// { label: _Public.ID, prop: "ID" },
|
|
|
|
] |
|
|
|
|
|
|
|
// // 归档WMS数据接收
|
|
|
|
export const comingToWms_file = [ |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsNumber'), prop: "number" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsRemark'), prop: "remark", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsDataType'), prop: "dataType" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsDataAction'), prop: "dataAction" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsEffectiveDate'), prop: "effectiveDate",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsStatus'), prop: "status" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsDataIdentityCode'), prop: "dataIdentityCode" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsDataContent'), prop: "dataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsSourceSystem'), prop: "sourceSystem" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsWriteTime'), prop: "writeTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsReadTime'), prop: "readTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsErrorCode'), prop: "errorCode" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsErrorMessage'), prop: "errorMessage", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('ArchivedIncomingToWmsRetryTimes'), prop: "retryTimes" }, |
|
|
|
// ************** 暂时隐藏 ************************
|
|
|
|
// { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// { label: _Public.ID, prop: "ID" },
|
|
|
|
] |
|
|
|
|
|
|
|
// // WMS数据转换
|
|
|
|
export const dataExchangeFromWms = [ |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsNumber'), prop: "number" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsRemark'), prop: "remark", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsDataType'), prop: "dataType" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsDataAction'), prop: "dataAction" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsEffectiveDate'), prop: "effectiveDate",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsStatus'), prop: "status" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsDataIdentityCode'), prop: "dataIdentityCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsDataContent'), prop: "dataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsSourceSystem'), prop: "sourceSystem" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsWriteTime'), prop: "writeTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsDestinationSystem'), prop: "destinationSystem" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsReadTime'), prop: "readTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsErrorCode'), prop: "errorCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsErrorMessage'), prop: "errorMessage", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_OutgoingFromWmsRetryTimes'), prop: "retryTimes" }, |
|
|
|
// ************** 暂时隐藏 ************************
|
|
|
|
// { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// { label: _Public.ID, prop: "ID" },
|
|
|
|
] |
|
|
|
|
|
|
|
// // 归档WMS数据转换
|
|
|
|
export const dataExchangeFromWms_file = [ |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsNumber'), prop: "number" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsRemark'), prop: "remark", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsDataType'), prop: "dataType" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsDataAction'), prop: "dataAction" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsEffectiveDate'), prop: "effectiveDate",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsStatus'), prop: "status" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsDataIdentityCode'), prop: "dataIdentityCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsDataContent'), prop: "dataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsSourceSystem'), prop: "sourceSystem" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsWriteTime'), prop: "writeTime",type:'dateTime' }, |
|
|
|
// { label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsReadTime'), prop: "readTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsErrorCode'), prop: "errorCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsErrorMessage'), prop: "errorMessage", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedOutgoingFromWmsRetryTimes'), prop: "retryTimes" }, |
|
|
|
// ************** 暂时隐藏 ************************
|
|
|
|
// { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// { label: _Public.ID, prop: "ID" },
|
|
|
|
] |
|
|
|
|
|
|
|
// // 外部数据接收
|
|
|
|
export const comingFromOut = [ |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalNumber'), prop: "number" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalRemark'), prop: "remark", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalDataType'), prop: "dataType" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalTableType'), prop: "tableType" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalDataAction'), prop: "dataAction" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalEffectiveDate'), prop: "effectiveDate",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalStatus'), prop: "status" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalSourceSystem'), prop: "sourceSystem" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalSourceDataId'), prop: "sourceDataId" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalSourceDataGroupCode'), prop: "sourceDataGroupCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalSourceDataDetailCode'), prop: "sourceDataDetailCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalSourceDataContent'), prop: "sourceDataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalWriteTime'), prop: "writeTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalWriter'), prop: "writer" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalDestinationSystem'), prop: "destinationSystem" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalDestinationDataId'), prop: "destinationDataId" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalDestinationDataContent'), prop: "destinationDataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalReadTime'), prop: "readTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalReader'), prop: "reader" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalErrorCode'), prop: "errorCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalErrorMessage'), prop: "errorMessage", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_IncomingFromExternalRetryTimes'), prop: "retryTimes" }, |
|
|
|
// ************** 暂时隐藏 ************************
|
|
|
|
// { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// { label: _Public.ID, prop: "ID" },
|
|
|
|
] |
|
|
|
|
|
|
|
// // 归档外部数据接收
|
|
|
|
export const comingFromOut_file = [ |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalNumber'), prop: "number" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalRemark'), prop: "remark", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalDataType'), prop: "dataType" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalTableType'), prop: "tableType" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalDataAction'), prop: "dataAction" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalEffectiveDate'), prop: "effectiveDate",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalStatus'), prop: "status" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalSourceSystem'), prop: "sourceSystem" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalSourceDataId'), prop: "sourceDataId" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalSourceDataGroupCode'), prop: "sourceDataGroupCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalSourceDataDetailCode'), prop: "sourceDataDetailCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalSourceDataContent'), prop: "sourceDataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalWriteTime'), prop: "writeTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalWriter'), prop: "writer" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalDestinationSystem'), prop: "destinationSystem" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalDestinationDataId'), prop: "destinationDataId" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalDestinationDataContent'), prop: "destinationDataContent", type:"showJsonTable" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalReadTime'), prop: "readTime",type:'dateTime' }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalReader'), prop: "reader" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalErrorCode'), prop: "errorCode" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalErrorMessage'), prop: "errorMessage", type:"showDetail" }, |
|
|
|
{ label: initDashboardLable('DataExchange_ArchivedIncomingFromExternalRetryTimes'), prop: "retryTimes" }, |
|
|
|
// ************** 暂时隐藏 ************************
|
|
|
|
// { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// { label: _Public.ID, prop: "ID" },
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
// 测试数据
|
|
|
|
export const TestSchool = [ |
|
|
|
{ label: '名称', prop: "schoolName", fixed: "left", type: "name" }, |
|
|
|
{ label: 'orderType', prop: "orderType" }, |
|
|
|
{ label: '创建时间', prop: "creationTime", type:'dateTime' }, |
|
|
|
] |
|
|
|
|
|
|
|
// 外部数据转换
|
|
|
|
// export const dataExchangeFromOut = [
|
|
|
|
// {
|
|
|
|
// label: _Dashboard.number,
|
|
|
|
// prop: "number",
|
|
|
|
// // fixed: "left",
|
|
|
|
// // type: "name"
|
|
|
|
// },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.tableType, prop: "tableType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
|
|
// { label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.writer, prop: "writer" },
|
|
|
|
// { label: _Dashboard.destinationSystem, prop: "destinationSystem", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
|
|
// { label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.reader, prop: "reader" },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// // { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// // { label: _Public.ID, prop: "ID" },
|
|
|
|
// ]
|
|
|
|
|
|
|
|
// // 归档外部数据转换
|
|
|
|
// export const dataExchangeFromOut_file = [
|
|
|
|
// { label: _Dashboard.number, prop: "number" },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.tableType, prop: "tableType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
|
|
// { label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
|
|
// { label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
|
|
// { label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.writer, prop: "writer" },
|
|
|
|
// { label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
|
|
// { label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.reader, prop: "reader" },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|
// // { label: _Public.lastModificationTime", prop: "lastModificationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.lastModifierId, prop: "lastModifierId" },
|
|
|
|
// // { label: _Public.ID, prop: "ID" },
|
|
|
|
// ]
|
|
|
|
|
|
|
|
// WMS数据接收
|
|
|
|
// export const comingToWms = [
|
|
|
|
// { label: _Dashboard.IncomingToWmsNumber, prop: "number" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsRemark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsDataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsDataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsEffectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.IncomingToWmsStatus, prop: "status" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsDataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsDataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsSourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsWriteTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.IncomingToWmsReadTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.IncomingToWmsErrorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsErrorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.IncomingToWmsRetryTimes, prop: "retryTimes" },
|
|
|
|
// { label: _Dashboard.number, prop: "number" },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
@ -3636,20 +3876,20 @@ export const dataExchangeFromOut_file = [ |
|
|
|
|
|
|
|
// // 归档WMS数据接收
|
|
|
|
// export const comingToWms_file = [
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsNumber, prop: "number" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsRemark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsDataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsDataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsEffectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsStatus, prop: "status" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsDataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsDataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsSourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsWriteTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsReadTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsErrorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsErrorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.ArchivedIncomingToWmsRetryTimes, prop: "retryTimes" },
|
|
|
|
// { label: _Dashboard.number, prop: "number" },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
@ -3660,21 +3900,21 @@ export const dataExchangeFromOut_file = [ |
|
|
|
|
|
|
|
// // WMS数据转换
|
|
|
|
// export const dataExchangeFromWms = [
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsNumber, prop: "number" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsRemark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsDataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsDataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsEffectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsStatus, prop: "status" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsDataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsDataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsSourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsWriteTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsDestinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsReadTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsErrorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsErrorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_OutgoingFromWmsRetryTimes, prop: "retryTimes" },
|
|
|
|
// { label: _Dashboard.number, prop: "number" },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
@ -3685,21 +3925,21 @@ export const dataExchangeFromOut_file = [ |
|
|
|
|
|
|
|
// // 归档WMS数据转换
|
|
|
|
// export const dataExchangeFromWms_file = [
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsNumber, prop: "number" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsRemark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsDataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsDataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsEffectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsStatus, prop: "status" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsDataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsDataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsSourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsWriteTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// // { label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsReadTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsErrorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsErrorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedOutgoingFromWmsRetryTimes, prop: "retryTimes" },
|
|
|
|
// { label: _Dashboard.number, prop: "number" },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.dataIdentityCode, prop: "dataIdentityCode" },
|
|
|
|
// { label: _Dashboard.dataContent, prop: "dataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
@ -3711,28 +3951,28 @@ export const dataExchangeFromOut_file = [ |
|
|
|
|
|
|
|
// // 外部数据接收
|
|
|
|
// export const comingFromOut = [
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalNumber, prop: "number" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalRemark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalDataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalTableType, prop: "tableType" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalDataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalEffectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalStatus, prop: "status" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalSourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalSourceDataId, prop: "sourceDataId" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalSourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalSourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalSourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalWriteTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalWriter, prop: "writer" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalDestinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalDestinationDataId, prop: "destinationDataId" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalDestinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalReadTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalReader, prop: "reader" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalErrorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalErrorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_IncomingFromExternalRetryTimes, prop: "retryTimes" },
|
|
|
|
// { label: _Dashboard.number, prop: "number" },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.tableType, prop: "tableType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
|
|
// { label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
|
|
// { label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
|
|
// { label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.writer, prop: "writer" },
|
|
|
|
// { label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
|
|
// { label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.reader, prop: "reader" },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
@ -3743,28 +3983,28 @@ export const dataExchangeFromOut_file = [ |
|
|
|
|
|
|
|
// // 归档外部数据接收
|
|
|
|
// export const comingFromOut_file = [
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalNumber, prop: "number" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalRemark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalDataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalTableType, prop: "tableType" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalDataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalEffectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalStatus, prop: "status" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalSourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalSourceDataId, prop: "sourceDataId" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalSourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalSourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalSourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalWriteTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalWriter, prop: "writer" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalDestinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalDestinationDataId, prop: "destinationDataId" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalDestinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalReadTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalReader, prop: "reader" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalErrorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalErrorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.DataExchange_ArchivedIncomingFromExternalRetryTimes, prop: "retryTimes" },
|
|
|
|
// { label: _Dashboard.number, prop: "number" },
|
|
|
|
// { label: _Public.remark, prop: "remark", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.dataType, prop: "dataType" },
|
|
|
|
// { label: _Dashboard.tableType, prop: "tableType" },
|
|
|
|
// { label: _Dashboard.dataAction, prop: "dataAction" },
|
|
|
|
// { label: _Dashboard.effectiveDate, prop: "effectiveDate",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.status, prop: "status" },
|
|
|
|
// { label: _Dashboard.sourceSystem, prop: "sourceSystem" },
|
|
|
|
// { label: _Dashboard.sourceDataId, prop: "sourceDataId" },
|
|
|
|
// { label: _Dashboard.sourceDataGroupCode, prop: "sourceDataGroupCode" },
|
|
|
|
// { label: _Dashboard.sourceDataDetailCode, prop: "sourceDataDetailCode" },
|
|
|
|
// { label: _Dashboard.sourceDataContent, prop: "sourceDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.writeTime, prop: "writeTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.writer, prop: "writer" },
|
|
|
|
// { label: _Dashboard.destinationSystem, prop: "destinationSystem" },
|
|
|
|
// { label: _Dashboard.destinationDataId, prop: "destinationDataId" },
|
|
|
|
// { label: _Dashboard.destinationDataContent, prop: "destinationDataContent", type:"showJsonTable" },
|
|
|
|
// { label: _Dashboard.readTime, prop: "readTime",type:'dateTime' },
|
|
|
|
// { label: _Dashboard.reader, prop: "reader" },
|
|
|
|
// { label: _Dashboard.errorCode, prop: "errorCode" },
|
|
|
|
// { label: _Dashboard.errorMessage, prop: "errorMessage", type:"showDetail" },
|
|
|
|
// { label: _Dashboard.retryTimes, prop: "retryTimes" },
|
|
|
|
// // ************** 暂时隐藏 ************************
|
|
|
|
// // { label: _Public.creationTime, prop: "creationTime",type:'dateTime' },
|
|
|
|
// // { label: _Public.creatorId, prop: "creatorId" },
|
|
|
|