如何隐藏这个 columns: [ { title: ‘操作‘, dataIndex: ‘action‘,

本文介绍如何在前端表格组件中通过customRender属性隐藏列,如id列。提供了一个示例代码,同时提到了完全移除列的方法,以及在数据源处理上的注意事项。

抱歉给你带来困扰。如果你想要隐藏列,可以使用columns配置中的customRender属性来自定义渲染列的方式,从而实现隐藏列。
以下是一个示例代码,演示如何隐藏id列:
columns: [
{
title: ‘操作’,
dataIndex: ‘action’,
align: “center”,
width: 110,
scopedSlots: { customRender: ‘action’ },
},
{
title: ‘’,
dataIndex: ‘id’,
customRender: () => null, // 使用空的customRender函数来隐藏列
},
],

在上述代码中,通过在customRender属性中使用一个空的函数() => null来隐藏id列。这样,id列将不会显示在表格中。
请注意,这种方式只是将列内容隐藏,并不会真正从DOM中移除该列。如果需要完全移除该列,可以在数据源中排除id字段,或者在后端返回数据时不包含id字段。
如果以上方法仍然无法隐藏列,请提供更多关于你的代码和具体需求的信息,以便我能够更好地帮助你。

const pipeTableState = reactive({ selectedRowKeys: [], selectedRows: [], toolbar: { buttons: [ { code: "insertPipe", status: "primary", icon: "PlusOutlined", name: "添加物量" }, { code: "deletePipe", status: "danger", icon: "DeleteOutlined", name: "删除" } ] }, columns: [ { title: "项目", dataIndex: "projectNo", width: 50, type: "project", options: { options: [], fieldNames: {label: "projId", value: "projId"} }, decorator: {rules: [{required: true, message: "请选择项目!"}]} }, { title: "小票号", dataIndex: "pipeNo", conditionNotice: "%匹配,逗号相连", width: 150 }, { title: "版本号", dataIndex: "pipeVersion", width: 60 }, { title: "最新版", dataIndex: "isTopVersion", width: 60, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, decorator: {initialValue: 'Y'} }, { title: "是否删除", dataIndex: "isDelete", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, decorator: {initialValue: 'N'} }, { title: "是否暂停", dataIndex: "isPause", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, decorator: {initialValue: 'N'} }, { title: "暂停原因", dataIndex: "pauseReason", width: 100 }, { title: "暂停备注", dataIndex: "pauseRemark", width: 100 }, { title: "暂停人", width: 70, dataIndex: "pauseUserNo", type: "employeeDescription", options: { fieldNames: { label: "pauseUserName", value: "pauseUserNo" } } }, { title: "暂停时间", dataIndex: "pauseDate", width: 80, type: "date" }, { title: "预计解除暂停日期", dataIndex: "preResumeDate", width: 120, type: "date" }, { title: "解除暂停时间", dataIndex: "resumeDate", width: 100, type: "date" }, { title: "解除暂停人", width: 80, dataIndex: "resumeUserNo", type: "employeeDescription", options: { fieldNames: { label: "resumeUserName", value: "resumeUserNo" } } }, { title: "图号", dataIndex: "drawNo", width: 170 }, { title: "最新图号", dataIndex: "lastDrawNo", width: 170 }, { title: "原图图号", dataIndex: "originDrawNo", width: 170 }, { title: "修改图号", dataIndex: "modifyDrawNo", width: 170 }, { title: "修改图页号", dataIndex: "modifyDrawPageNo", width: 80 }, { title: "技术施工阶段", dataIndex: "instStage", width: 100 }, { title: "系统代码", dataIndex: "systemNo", width: 100 }, { title: "系统名称", dataIndex: "systemName", width: 100 }, { title: "页号", dataIndex: "pageNo", width: 50 }, { title: "属性", dataIndex: "pipeGrade", width: 100 }, { title: "管路等级", type: 'select', dataIndex: "pipeClass", options: {options: [{value: 'I', label: "I"}, {value: 'II', label: "II"}, {value: 'III', label: "III"}]}, width: 80 }, { title: "测试压力", dataIndex: "testPressure", width: 100 }, { title: "管径壁厚", dataIndex: "pipeDiaThickness", width: 100 }, { title: "长度", dataIndex: "length", width: 50 }, { title: "重量", dataIndex: "weight", width: 70 }, { title: "技术处理方式", dataIndex: "treatment", width: 90 }, { title: "是否通舱件", dataIndex: "isThroughCabin", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, }, { title: "内表面积", dataIndex: "inSurface", width: 80 }, { title: "外表面积", dataIndex: "outSurface", width: 80 }, { title: "舱室代码", dataIndex: "cabinNo", width: 80 }, { title: "分段", dataIndex: "block", width: 50 }, { title: "材质", dataIndex: "matDefinition", width: 100, }, { title: "修改方式", dataIndex: "modifyType", width: 100 }, { title: "内场涂装", dataIndex: "inPaintNo", width: 100 }, { title: "外场涂装", dataIndex: "outPaintNo", width: 100 }, { title: "是否裸管", dataIndex: "isBarePipe", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, }, { title: "模型管线号", dataIndex: "pipelineNo", width: 170 }, { title: "管线号", dataIndex: "pipeRun", width: 170 }, { title: "管线短号", dataIndex: "pipeRunShort", width: 100 }, { title: "寸口数", dataIndex: "inch", width: 80 }, { title: "内场寸口数", dataIndex: "inInch", width: 100 }, { title: "外场寸口数", dataIndex: "outInch", width: 100 }, { title: "设计大区域", dataIndex: "largeArea", width: 100 }, { title: "设计中区域", dataIndex: "area", width: 100 }, { title: "设计房间号", dataIndex: "roomNo", width: 100 }, { title: "房间描述", dataIndex: "roomDesp", width: 120 }, { title: "舾装片体", dataIndex: "sheet", width: 80 }, { title: "邻壁房间", dataIndex: "linkRoomNo", width: 80 }, { title: "邻壁分段", dataIndex: "linkBlock", width: 80 }, { title: "安装类型", dataIndex: "instType", width: 80 }, { title: "绝缘属性", dataIndex: "insulation", width: 80 }, { title: "流体类型", dataIndex: "fluidType", width: 80 }, { title: "清洁方式", dataIndex: "cleaningMethod", width: 80 }, { title: "高度值", dataIndex: "elevation", width: 80 }, { title: "是否化学清洗", dataIndex: "isChemicalCleaning", width: 90, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, }, { title: "Nr13", dataIndex: "nr13", width: 80 }, { title: "操作温度", dataIndex: "operationTemperature", width: 80 }, { title: "材质描述", dataIndex: "materialDesp", width: 100 }, { title: "绝缘类型", dataIndex: "insulationType", width: 80 }, { title: "绝缘厚度", dataIndex: "insulationThick", width: 80 }, { title: "PID图号", dataIndex: "pidDrawNo", width: 170 }, { title: "船东规格书", dataIndex: "pipingClass", width: 120 }, { title: "安装三维坐标X", dataIndex: "instLocationX", width: 120 }, { title: "安装三维坐标Y", dataIndex: "instLocationY", width: 120 }, { title: "安装三维坐标Z", dataIndex: "instLocationZ", width: 120 }, { title: "空间代码", dataIndex: "spaceNo", width: 80 }, { title: "设计备注", dataIndex: "designRemark", width: 120 }, { title: "油漆面积影响", dataIndex: "paintingAreaImpact", width: 100 }, { title: "舾装件腿坐标", dataIndex: "fittingLegCoordinate", width: 100 }, { title: "舾装件焊接点型材", dataIndex: "fittingWeldedStiff", width: 120 }, { title: "舾装件腿数量", dataIndex: "fittingLegQty", width: 100 }, { title: "操作", key: "action", scopedSlots: {customRender: "action"}, width: 200, fixed: "right", formInvisible: true, } ], dataSource: [] }) const addPipeTableState = reactive({ selectedRowKeys: [], selectedRows: [], toolbar: { buttons: [ { code: "addPipe", status: 'primary', icon: 'PlusOutlined', name: "添加" } ], }, proxyConfig: { autoLoad: false, ajax: { query: async (pagination) => { addPipeConditionData = await validateSearchFields(searchAddPipePanelRef, addPipeConditionData) return server.pipeDesignPlanPage({...pagination, ...addPipeConditionData}) } }, }, columns: [ { title: "项目", dataIndex: "projectNo", width: 50, type: "project", options: { options: [], fieldNames: {label: "projId", value: "projId"} }, decorator: {rules: [{required: true, message: "请选择项目!"}]} }, { title: "小票号", dataIndex: "pipeNo", conditionNotice: "%匹配,逗号相连", width: 150 }, { title: "版本号", dataIndex: "pipeVersion", width: 60 }, { title: "最新版", dataIndex: "isTopVersion", width: 60, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, decorator: {initialValue: 'Y'} }, { title: "是否删除", dataIndex: "isDelete", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, decorator: {initialValue: 'N'} }, { title: "是否暂停", dataIndex: "isPause", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, decorator: {initialValue: 'N'} }, { title: "暂停原因", dataIndex: "pauseReason", width: 100 }, { title: "暂停备注", dataIndex: "pauseRemark", width: 100 }, { title: "暂停人", width: 70, dataIndex: "pauseUserNo", type: "employeeDescription", options: { fieldNames: { label: "pauseUserName", value: "pauseUserNo" } } }, { title: "暂停时间", dataIndex: "pauseDate", width: 80, type: "date" }, { title: "预计解除暂停日期", dataIndex: "preResumeDate", width: 120, type: "date" }, { title: "解除暂停时间", dataIndex: "resumeDate", width: 100, type: "date" }, { title: "解除暂停人", width: 80, dataIndex: "resumeUserNo", type: "employeeDescription", options: { fieldNames: { label: "resumeUserName", value: "resumeUserNo" } } }, { title: "图号", dataIndex: "drawNo", width: 170 }, { title: "最新图号", dataIndex: "lastDrawNo", width: 170 }, { title: "原图图号", dataIndex: "originDrawNo", width: 170 }, { title: "修改图号", dataIndex: "modifyDrawNo", width: 170 }, { title: "修改图页号", dataIndex: "modifyDrawPageNo", width: 80 }, { title: "技术施工阶段", dataIndex: "instStage", width: 100 }, { title: "系统代码", dataIndex: "systemNo", width: 100 }, { title: "系统名称", dataIndex: "systemName", width: 100 }, { title: "页号", dataIndex: "pageNo", width: 50 }, { title: "属性", dataIndex: "pipeGrade", width: 100 }, { title: "管路等级", type: 'select', dataIndex: "pipeClass", options: {options: [{value: 'I', label: "I"}, {value: 'II', label: "II"}, {value: 'III', label: "III"}]}, width: 80 }, { title: "测试压力", dataIndex: "testPressure", width: 100 }, { title: "管径壁厚", dataIndex: "pipeDiaThickness", width: 100 }, { title: "长度", dataIndex: "length", width: 50 }, { title: "重量", dataIndex: "weight", width: 70 }, { title: "技术处理方式", dataIndex: "treatment", width: 90 }, { title: "是否通舱件", dataIndex: "isThroughCabin", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, }, { title: "内表面积", dataIndex: "inSurface", width: 80 }, { title: "外表面积", dataIndex: "outSurface", width: 80 }, { title: "舱室代码", dataIndex: "cabinNo", width: 80 }, { title: "分段", dataIndex: "block", width: 50 }, { title: "材质", dataIndex: "matDefinition", width: 100, }, { title: "修改方式", dataIndex: "modifyType", width: 100 }, { title: "内场涂装", dataIndex: "inPaintNo", width: 100 }, { title: "外场涂装", dataIndex: "outPaintNo", width: 100 }, { title: "是否裸管", dataIndex: "isBarePipe", width: 80, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, }, { title: "模型管线号", dataIndex: "pipelineNo", width: 170 }, { title: "管线号", dataIndex: "pipeRun", width: 170 }, { title: "管线短号", dataIndex: "pipeRunShort", width: 100 }, { title: "寸口数", dataIndex: "inch", width: 80 }, { title: "内场寸口数", dataIndex: "inInch", width: 100 }, { title: "外场寸口数", dataIndex: "outInch", width: 100 }, { title: "设计大区域", dataIndex: "largeArea", width: 100 }, { title: "设计中区域", dataIndex: "area", width: 100 }, { title: "设计房间号", dataIndex: "roomNo", width: 100 }, { title: "房间描述", dataIndex: "roomDesp", width: 120 }, { title: "舾装片体", dataIndex: "sheet", width: 80 }, { title: "邻壁房间", dataIndex: "linkRoomNo", width: 80 }, { title: "邻壁分段", dataIndex: "linkBlock", width: 80 }, { title: "安装类型", dataIndex: "instType", width: 80 }, { title: "绝缘属性", dataIndex: "insulation", width: 80 }, { title: "流体类型", dataIndex: "fluidType", width: 80 }, { title: "清洁方式", dataIndex: "cleaningMethod", width: 80 }, { title: "高度值", dataIndex: "elevation", width: 80 }, { title: "是否化学清洗", dataIndex: "isChemicalCleaning", width: 90, type: 'select', options: {options: [{value: 'Y', label: "Y"}, {value: 'N', label: "N"}]}, }, { title: "Nr13", dataIndex: "nr13", width: 80 }, { title: "操作温度", dataIndex: "operationTemperature", width: 80 }, { title: "材质描述", dataIndex: "materialDesp", width: 100 }, { title: "绝缘类型", dataIndex: "insulationType", width: 80 }, { title: "绝缘厚度", dataIndex: "insulationThick", width: 80 }, { title: "PID图号", dataIndex: "pidDrawNo", width: 170 }, { title: "船东规格书", dataIndex: "pipingClass", width: 120 }, { title: "安装三维坐标X", dataIndex: "instLocationX", width: 120 }, { title: "安装三维坐标Y", dataIndex: "instLocationY", width: 120 }, { title: "安装三维坐标Z", dataIndex: "instLocationZ", width: 120 }, { title: "空间代码", dataIndex: "spaceNo", width: 80 }, { title: "设计备注", dataIndex: "designRemark", width: 120 }, { title: "油漆面积影响", dataIndex: "paintingAreaImpact", width: 100 }, { title: "舾装件腿坐标", dataIndex: "fittingLegCoordinate", width: 100 }, { title: "舾装件焊接点型材", dataIndex: "fittingWeldedStiff", width: 120 }, { title: "舾装件腿数量", dataIndex: "fittingLegQty", width: 100 }, { title: "操作", key: "action", scopedSlots: {customRender: "action"}, width: 200, fixed: "right", formInvisible: true, } ], }) 两个columns是相同的,提取出来,然后一起引用
10-15
请把代码按照以下调整下顺序,顺序:项目/预制基地/图号/最新图号/管线号/管段号/版本号/管状态/最新版/删除/是否预制/暂停/暂停时间/暂停人/暂停原因/暂停备注/预计解除暂停日期/解除暂停时间/解除暂停人/属性/材质/管路等级/原始处理方式/处理方式/处理位置/内外场/是否裸管/管径壁厚/长度/重量/寸口数/内场寸口数/外场寸口数/内表面积/外表面积/穿舱件/绝缘厚度/测试压力/管内涂装/管外涂装/系统代码/系统名称/MC包号/MC系统/MC子系统/分段/分段区域/总段/打砂开始时间/搭载开始时间/房间编码/房间描述/设计大区域/设计中区域/房间及房间拆分/空间代码/原图图号/页号/修改图号/修改图页号/修改方式/修管场所/备注/设计备注/工艺提交状态/工艺审核时间/检查人/继承/工时状态/下料派工单/计划下料时间/下料时间/下料人/下料承包商/下料班组/装配派工单/计划装配时间/装配时间/装配人/装配班组/装配承包商/焊接派工单/计划焊接时间/焊接完成时间/焊接人/焊接班组/焊接承包商/焊前检验单号/焊前检验日期/焊后检验单号/焊后检验日期/压力报验单号/放行单号/放行日期/船校交接单号/船校发出日期/船校接收日期/船校入筐时间/内场交接单/出厂日期/集配接收日期/表面处理交接单/表面处理发出日期/表面处理接收日期/涂装交接单/涂装发出日期/涂装接收日期/返厂发出日期/返厂接收日期/入筐日期/现场接收/现场返回时间/筐号/安装三维坐标X/安装三维坐标Y/安装三维坐标Z/分段托盘号/区域托盘号/施工托盘号/托盘需求时间/安装需求时间/分段需求时间/区域需求时间/计划安装阶段/实际安装阶段/吊装上船日期/吊装日期/安装日期/安装备注/安装承包商/生成大区域/生产中区域/生产小区域/图纸路径/流体类型/检验等级/船东管路等级/转序原因/安装基地/安装件端坐标/船装件焊接点型材/船装件腿数量/油漆面积影响/是否安装倒运到位/再视机测量完成时间/再视机测量人 代码:columns: [ { title: “项目”, dataIndex: “projectNo”, width: 100, type: “project”, fixed: “left”, condition: true, options: { options: [], fieldNames: { label: “projId”, value: “projId” } }, decorator: { rules: [{ required: true, message: “请选择项目!” }] } }, { title: “管段号”, dataIndex: “pipeNo”, fixed: “left”, condition: true, conditionNotice: t(“pipeControll.search.content”), width: 150 }, { title: “版本号”, dataIndex: “pipeVersion”, width: 80 }, { title: “最新版”, dataIndex: “isTopVersion”, condition: true, width: 80, type: ‘select’, options: { options: [{ value: ‘Y’, label: “Y” }, { value: ‘N’, label: “N” }] }, decorator: { initialValue: ‘Y’ } }, { title: “删除”, dataIndex: “isDelete”, condition: true, width: 80, type: ‘select’, options: { options: [{ value: ‘Y’, label: “Y” }, { value: ‘N’, label: “N” }] }, decorator: { initialValue: ‘N’ } }, { title: “暂停”, dataIndex: “isPause”, condition: true, width: 80, type: ‘select’, options: { options: [{ value: ‘Y’, label: “Y” }, { value: ‘N’, label: “N” }] }, decorator: { initialValue: ‘N’ } }, { title: “是否预制”, dataIndex: “isPre”, condition: true, width: 80, type: ‘select’, options: {options: [{value: ‘Y’, label: “Y”}, {value: ‘N’, label: “N”}]} }, { title: “预计解除暂停日期”, dataIndex: “preResumeDate”, width: 150, type: “date” }, { title: “暂停原因”, dataIndex: “pauseReason”, width: 100 }, { title: “暂停备注”, dataIndex: “pauseRemark”, width: 100 }, { dataIndex: ‘pauseUserNo’, width: 110, title: ‘暂停人’, }, { title: “暂停时间”, dataIndex: “pauseDate”, width: 120, type: “date” }, { title: “解除暂停时间”, dataIndex: “resumeDate”, width: 120, type: “date” }, { dataIndex: ‘resumeUserNo’, width: 110, title: ‘解除暂停人’, }, { title: “材质”, dataIndex: “pipeGrade”, width: 120 }, { title: “属性”, dataIndex: “matDefinition”, width: 100, condition: true, type: “select”, options: { options: [], fieldNames: {label: “matDefinitionCn”, value: “matDefinitionCn”}, ajax: server.matDefinitionDropList().then((res) => { return res }) }, }, { title: “图号”, dataIndex: “drawNo”, condition: true, width: 150 }, { title: “页号”, dataIndex: “pageNo”, width: 100 }, { title: “最新图号”, dataIndex: “lastDrawNo”, width: 150 }, { title: “原图图号”, dataIndex: “originDrawNo”, width: 150 }, { title: “修改图号”, dataIndex: “modifyDrawNo”, width: 150 }, { title: “修改图页号”, dataIndex: “modifyDrawPageNo”, width: 100 }, { title: “修改方式”, dataIndex: “modifyType”, condition: true, width: 100 }, { title: “修管场所”, dataIndex: “pipeRevisePosition”, width: 100 }, { title: “管线号”, dataIndex: “pipeRun”, condition: true, width: 150 }, { title: “预制基地”, condition: true, dataIndex: “preOrgNo”, type: “buildCase”, options:{ allowCustom:false }, width: 100, }, { title: “管状态”, dataIndex: “pipeStatus”, width: 100 }, { title: “管路等级”, condition: true, dataIndex: “pipeClass”, type: “select”, options: { options: [], fieldNames: { label: “name”, value: “code” }, ajax: getDislist({ code: “pipespoolGrade” }).then((res) => { return res }) }, width: 100 }, { title: “检验等级”, dataIndex: “inspectionClass”, width: 100 }, { title: “原始处理方式”, dataIndex: “treatment”, width: 120 }, { title: “处理方式”, condition: true, dataIndex: “prodTreatment”, type: “select”, options: { options: [], fieldNames: { label: “name”, value: “code” }, ajax: getDislist({ code: “pipespoolSurfaceTreatmentCategory” }).then((res) => { return res }) }, width: 100 }, { title: “处理位置”, dataIndex: “surfaceDealPosition”, width: 100 }, { title: “绝缘厚度”, dataIndex: “insulationThick”, width: 100 }, { title: “内外场”, condition: true, type: ‘select’, dataIndex: “shopFieldFlag”, options: { options: [{ value: ‘内场’, label: “内场” }, { value: ‘外场’, label: “外场” }] }, width: 100 }, { title: “是否裸管”, condition: true, dataIndex: “isBarePipe”, width: 100, type: ‘select’, options: { options: [{ value: ‘Y’, label: “Y” }, { value: ‘N’, label: “N” }] }, }, { title: “系统代码”, dataIndex: “systemNo”, width: 100 }, { title: “系统名称”, dataIndex: “systemName”, width: 100 }, { title: “MC包号”, dataIndex: “mcPackageNo”, width: 100 }, { title: “MC系统”, dataIndex: “mcSysNo”, width: 100 }, { title: “MC子系统”, dataIndex: “mcSubSysNo”, width: 100 }, { title: “测试压力”, dataIndex: “testPressure”, width: 100 }, { title: “管径壁厚”, dataIndex: “pipeDiaThickness”, width: 100 }, { title: “长度”, dataIndex: “length”, width: 100 }, { title: “重量”, dataIndex: “weight”, width: 100 }, { title: “寸口数”, dataIndex: “inch”, width: 100 }, { title: “内场寸口数”, dataIndex: “inInch”, width: 100 }, { title: “外场寸口数”, dataIndex: “outInch”, width: 100 }, { title: “穿舱件”, condition: true, dataIndex: “isThroughCabin”, width: 100, type: ‘select’, options: { options: [{ value: ‘Y’, label: “Y” }, { value: ‘N’, label: “N” }] }, }, { title: “内表面积”, dataIndex: “inSurface”, width: 100 }, { title: “外表面积”, dataIndex: “outSurface”, width: 100 }, { title: “分段”, condition: true, dataIndex: “block”, width: 100 }, { title: “分段区域”, dataIndex: “areaDescribe”, width: 100 }, { title: “总段”, dataIndex: “blockCode”, width: 100 }, { title: “打砂开始时间”, dataIndex: “blastingStartDate”, width: 150, type: “date” }, { title: “搭载开始时间”, dataIndex: “loadingDate”, width: 150, type: “date” }, { title: “房间编码”, dataIndex: “roomNo”, width: 100 }, { title: “房间描述”, dataIndex: “roomDesp”, width: 100 }, { title: “设计大区域”, dataIndex: “largeArea”, width: 100 }, { title: “设计中区域”, dataIndex: “area”, width: 100 }, { title: “房间及房间拆分”, dataIndex: “linkRoomNo”, width: 150 }, { title: “空间代码”, dataIndex: “spaceNo”, width: 100 }, { title: “管内涂装”, dataIndex: “inPaintNo”, width: 100 }, { title: “管外涂装”, dataIndex: “outPaintNo”, width: 100 }, { title: “备注”, dataIndex: “preRemark”, width: 100 }, { title: “设计备注”, dataIndex: “designRemark”, width: 100 }, { title: “工艺提交状态”, condition: true, dataIndex: “craftCheckFlag”, width: 150, type: ‘select’, options: { options: [{ value: ‘0’, label: “已撤销” }, { value: ‘1’, label: “已提交” },{ value: ‘2’, label: “异常” }] }, }, { title: “工艺审核时间”, dataIndex: “craftCheckDate”, width: 150, type: “date” }, { dataIndex: ‘craftCheckUserNo’, width: 110, title: ‘检查人’, type: ‘employeeDescription’, customFilterType: ‘checkbox’, options: { fieldNames: { label: ‘craftCheckUserName’, value: ‘craftCheckUserNo’ } } }, { title: “继承”, dataIndex: “isInherit”, width: 100 }, { title: “工时状态”, dataIndex: “workHourStatus”, width: 100 }, { title: “下料人”, dataIndex: “cutWorkSpaceNo”, width: 100 }, { title: “下料承包商”, dataIndex: “cutCoopName”, width: 100 }, { title: “下料班组”, dataIndex: “cutTeamName”, width: 100 }, { title: “计划下料时间”, dataIndex: “cutPlanDate”, width: 150, type: “date” }, { title: “下料时间”, dataIndex: “cutFinishDate”, width: 150, type: “date” }, { title: “下料派工单”, dataIndex: “cutOrderNo”, width: 100 }, { title: “装配人”, dataIndex: “assyWorkSpaceNo”, width: 100 }, { title: “装配承包商”, dataIndex: “assyCoopName”, width: 100 }, { title: “装配班组”, dataIndex: “assyTeamNo”, width: 100 }, { title: “计划装配时间”, dataIndex: “assyPlanDate”, width: 150, type: “date” }, { title: “装配时间”, dataIndex: “assyFinishDate”, width: 150, type: “date” }, { title: “装配派工单”, dataIndex: “assyOrderNo”, width: 100 }, { title: “焊接人”, dataIndex: “weldingWorkSpaceNo”, width: 100 }, { title: “焊接承包商”, dataIndex: “weldingCoopName”, width: 100 }, { title: “焊接班组”, dataIndex: “weldingTeamNo”, width: 100 }, { title: “计划焊接时间”, dataIndex: “weldingPlanDate”, width: 150, type: “date” }, { title: “焊接完成时间”, dataIndex: “weldingFinishDate”, width: 150, type: “date” }, { title: “焊接派工单”, dataIndex: “weldingOrderNo”, width: 100 }, { title: “焊前检验单号”, dataIndex: “weldingPreOrderNo”, width: 150 }, { title: “焊前检验日期”, dataIndex: “weldingPreFinishDate”, width: 150, type: “date” }, { title: “焊后检验单号”, dataIndex: “weldingPostOrderNo”, width: 150 }, { title: “焊后检验日期”, dataIndex: “weldingPostFinishDate”, width: 150, type: “date” }, { title: “压力报验单号”, dataIndex: “ptOrderNo”, width: 150 }, { title: “放行单号”, dataIndex: “preFinishOrderNo”, width: 100 }, { title: “放行日期”, dataIndex: “preFinishFinishDate”, width: 150, type: “date” }, { title: “船校交接单号”, dataIndex: “cxOrderNo”, width: 150 }, { title: “船校发出日期”, dataIndex: “cxHandoverDate”, width: 150, type: “date” }, { title: “船校接收日期”, dataIndex: “cxHandoverReceiveDate”, width: 150, type: “date” }, { title: “船校入筐时间”, dataIndex: “cxInTaryDate”, width: 150, type: “date” }, { title: “内场交接单”, dataIndex: “infieldOrderNo”, width: 100 }, { title: “出厂日期”, dataIndex: “infieldHandoverDate”, width: 150, type: “date” }, { title: “集配接收日期”, dataIndex: “infieldHandoverReceiveDate”, width: 150, type: “date” }, { title: “表面处理交接单”, dataIndex: “surfaceDealOrderNo”, width: 150 }, { title: “表面处理发出日期”, dataIndex: “surfaceDealHandoverDate”, width: 150, type: “date” }, { title: “表面处理接收日期”, dataIndex: “surfaceDealHandoverReceiveDate”, width: 150, type: “date” }, { title: “涂装交换单”, dataIndex: “paintOrderNo”, width: 100 }, { title: “涂装发出日期”, dataIndex: “paintHandoverDate”, width: 150, type: “date” }, { title: “涂装接收日期”, dataIndex: “paintHandoverReceiveDate”, width: 150, type: “date” }, { title: “返厂发出日期”, dataIndex: “paintBackHandoverDate”, width: 150, type: “date” }, { title: “返场接收日期”, dataIndex: “paintBackHandoverReceiveDate”, width: 150, type: “date” }, { title: “入筐日期”, dataIndex: “inTaryDate”, width: 150, type: “date” }, { title: “现场接收”, dataIndex: “outfieldHandoverReceiveDate”, width: 150, type: “date” }, { title: “现场返回时间”, dataIndex: “outfieldBackHandoverReceiveDate”, width: 150, type: “date” }, { title: “筐号”, condition: true, dataIndex: “basketNo”, width: 100 }, { title: “安装三维坐标X”, dataIndex: “instlocationx”, width: 150 }, { title: “安装三维坐标Y”, dataIndex: “instlocationy”, width: 150 }, { title: “安装三维坐标Z”, dataIndex: “instlocationz”, width: 150 }, { title: “分段托盘号”, dataIndex: “blockPalletNo”, width: 100 }, { title: “区域托盘号”, dataIndex: “areaPalletNo”, width: 100 }, { title: “施工托盘号”, dataIndex: “instPalletNo”, width: 100 }, { title: “托盘需求时间”, dataIndex: “needDate”, width: 150, type: “date” }, { title: “计划安装阶段”, dataIndex: “instStage”, width: 150 }, { title: “实际安装阶段”, dataIndex: “prodInstStage”, width: 150 }, { title: “吊装上船日期”, dataIndex: “liftedOnShipDate”, width: 150, type: “date” }, { title: “吊装日期”, dataIndex: “liftingDate”, width: 150, type: “date” }, { title: “安装日期”, dataIndex: “instFinishDate”, width: 150, type: “date” }, { title: “安装备注”, dataIndex: “installRemark”, width: 100 }, { title: “安装承包商”, dataIndex: “instCoopName”, width: 150 }, { title: “生产大区域”, condition: true, dataIndex: “bigAreaNo”, width: 100 }, { title: “生产中区域”, condition: true, dataIndex: “middleAreaNo”, width: 100 }, { title: “生产小区域”, condition: true, dataIndex: “smallAreaNo”, width: 100 }, { title: “图纸路径”, dataIndex: “drawFilePath”, width: 100 }, { title: “流体类型”, dataIndex: “fluidType”, width: 100 }, { title: “船东管路等级”, dataIndex: “pipingClass”, width: 150 }, { title: “转序原因”, dataIndex: “transferReason”, width: 100 }, { title: “安装基地”, condition: true, dataIndex: “installOrgNo”, options:{ allowCustom:false }, type: “buildCase”, width: 100, }, { title: “安装件端坐标”, dataIndex: “fittingLegCoordinate”, width: 150 }, { title: “船装件焊接点型材”, dataIndex: “fittingWeldedStiff”, width: 150 }, { title: “船装件腿数量”, dataIndex: “fittingLegQty”, width: 150 }, { title: “油漆面积影响”, dataIndex: “paintingAreaImpact”, width: 150 }, { title: “是否安装倒运到位”, dataIndex: “isInstMovedPosition”, width: 180 }, { title: “再视机测量完成时间”, dataIndex: “zxjMeasuringDate”, width: 180, type: “date” }, { dataIndex: ‘zxjMeasuringUserNo’, width: 150, title: ‘再视机测量人’, type: ‘employeeDescription’, customFilterType: ‘checkbox’, options: { fieldNames: { label: ‘zxjMeasuringUserName’, value: ‘zxjMeasuringUserNo’ } } }, { title: “工艺线类型”, dataIndex: “craftLineType”, width: 100 }, { title:操作”, key:action”, scopedSlots: { customRender:action” }, width: 280, fixed: “right”, formInvisible: true } ]
10-21
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值