Commit 4b6399e8 authored by wuhao's avatar wuhao 🎯

adser

parent c03fdab0
...@@ -95,6 +95,13 @@ function upperCase(str) { ...@@ -95,6 +95,13 @@ function upperCase(str) {
const newStr = str.slice(0, 1).toUpperCase() + str.slice(1); const newStr = str.slice(0, 1).toUpperCase() + str.slice(1);
return newStr; return newStr;
} }
// tree遍历
function treeForeach(tree, func) {
tree.forEach((data) => {
func(data);
data.children && treeForeach(data.children, func); // 遍历子树
});
}
let FormRender = memo(({ fields = [], name, curindex, formRef }) => { let FormRender = memo(({ fields = [], name, curindex, formRef }) => {
return ( return (
...@@ -222,7 +229,6 @@ function MyAutoComplete({ item, colProps, formRef }) { ...@@ -222,7 +229,6 @@ function MyAutoComplete({ item, colProps, formRef }) {
}, },
); );
useEffect(() => { useEffect(() => {
console.log(username);
runAsync() runAsync()
.then((data) => { .then((data) => {
const options = data?.map((it) => ({ const options = data?.map((it) => ({
...@@ -674,15 +680,21 @@ function LinkTreeSelect({ item, colProps, formRef, name, curindex }) { ...@@ -674,15 +680,21 @@ function LinkTreeSelect({ item, colProps, formRef, name, curindex }) {
} else { } else {
let curval = formRef?.current?.getFieldValue(curkey), let curval = formRef?.current?.getFieldValue(curkey),
ifclean; ifclean;
//树结构所有value提取到数组
let allvalue = [];
treeForeach(res?.data?.dataList, (node) => {
allvalue.push(node.key);
});
//过滤存在的value
if (Array.isArray(curval)) { if (Array.isArray(curval)) {
ifclean = res?.data?.dataList ifclean = allvalue?.filter?.((it) => {
?.map((it) => it.value)
.filter?.((it) => {
return curval?.includes(it); return curval?.includes(it);
}); });
} else { } else {
ifclean = res?.data?.dataList.filter((it) => it.value == curval)?.[0]?.value; ifclean = allvalue?.filter?.((it) => it == curval)?.[0];
} }
formRef?.current?.setFieldsValue({ [curkey]: ifclean }); formRef?.current?.setFieldsValue({ [curkey]: ifclean });
} }
} }
...@@ -1323,7 +1335,6 @@ function UploadDragger({ item, colProps }) { ...@@ -1323,7 +1335,6 @@ function UploadDragger({ item, colProps }) {
}, },
}} }}
transform={(value) => { transform={(value) => {
console.log('11', value);
const key = item.key ?? item.dataIndex; const key = item.key ?? item.dataIndex;
const transvalue = value?.map((it) => { const transvalue = value?.map((it) => {
if (it.response) { if (it.response) {
...@@ -1384,7 +1395,6 @@ function Diyrules({ item, colProps, formRef }) { ...@@ -1384,7 +1395,6 @@ function Diyrules({ item, colProps, formRef }) {
<Col {...col}> <Col {...col}>
<ProForm.Item <ProForm.Item
convertValue={(value) => { convertValue={(value) => {
console.log(value);
if (value?.other) return value; if (value?.other) return value;
let nrList = { let nrList = {
other: {}, other: {},
...@@ -1397,7 +1407,6 @@ function Diyrules({ item, colProps, formRef }) { ...@@ -1397,7 +1407,6 @@ function Diyrules({ item, colProps, formRef }) {
nrList.value.push(it); nrList.value.push(it);
} }
}); });
console.log(nrList);
return nrList; return nrList;
}} }}
name={curkey} name={curkey}
...@@ -1510,7 +1519,6 @@ function TableSelect({ item, value, onChange, params = {} }) { ...@@ -1510,7 +1519,6 @@ function TableSelect({ item, value, onChange, params = {} }) {
} }
/> />
); );
console.log(value);
const Todo = ( const Todo = (
<EditTable <EditTable
actionRef={actionRef} actionRef={actionRef}
......
...@@ -6,14 +6,14 @@ function getcolumns(setdrawer) { ...@@ -6,14 +6,14 @@ function getcolumns(setdrawer) {
title: '设备编号', title: '设备编号',
dataIndex: 'equipmentNo', dataIndex: 'equipmentNo',
key: 'equipmentNo', key: 'equipmentNo',
align: 'center',
width: 120, width: 120,
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
}, },
{ {
title: '设备名称', title: '设备名称',
dataIndex: 'equipmentName', dataIndex: 'equipmentName',
align: 'center',
width: 220, width: 220,
key: 'equipmentName', key: 'equipmentName',
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
...@@ -21,7 +21,7 @@ function getcolumns(setdrawer) { ...@@ -21,7 +21,7 @@ function getcolumns(setdrawer) {
{ {
title: '位置号', title: '位置号',
width: 120, width: 120,
align: 'center',
dataIndex: 'positionNo', dataIndex: 'positionNo',
search: false, search: false,
hideInTable: true, hideInTable: true,
...@@ -30,7 +30,7 @@ function getcolumns(setdrawer) { ...@@ -30,7 +30,7 @@ function getcolumns(setdrawer) {
{ {
width: 120, width: 120,
title: '设备类型', title: '设备类型',
align: 'center',
dataIndex: 'equipmentTypeName', dataIndex: 'equipmentTypeName',
key: 'equipmentTypeId', key: 'equipmentTypeId',
valueType: 'treeSelect', valueType: 'treeSelect',
...@@ -45,7 +45,7 @@ function getcolumns(setdrawer) { ...@@ -45,7 +45,7 @@ function getcolumns(setdrawer) {
title: '设备型号', title: '设备型号',
dataIndex: 'equipmentModelName', dataIndex: 'equipmentModelName',
width: 120, width: 120,
align: 'center',
key: 'equipmentModelId', key: 'equipmentModelId',
valueType: 'select', valueType: 'select',
fieldProps: { fieldProps: {
...@@ -57,7 +57,7 @@ function getcolumns(setdrawer) { ...@@ -57,7 +57,7 @@ function getcolumns(setdrawer) {
}, },
{ {
title: '公司名称', title: '公司名称',
align: 'center',
dataIndex: 'organizationName', dataIndex: 'organizationName',
width: 120, width: 120,
key: 'organizationId', key: 'organizationId',
...@@ -72,7 +72,7 @@ function getcolumns(setdrawer) { ...@@ -72,7 +72,7 @@ function getcolumns(setdrawer) {
{ {
title: '部门名称', title: '部门名称',
width: 120, width: 120,
align: 'center',
valueType: 'treeSelect', valueType: 'treeSelect',
dataIndex: 'departmentName', dataIndex: 'departmentName',
fieldProps: { fieldProps: {
...@@ -96,7 +96,7 @@ function getcolumns(setdrawer) { ...@@ -96,7 +96,7 @@ function getcolumns(setdrawer) {
placeholder: '请选择', placeholder: '请选择',
showSearch: true, showSearch: true,
}, },
align: 'center',
valueType: 'select', valueType: 'select',
options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} }, options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} },
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
...@@ -104,7 +104,7 @@ function getcolumns(setdrawer) { ...@@ -104,7 +104,7 @@ function getcolumns(setdrawer) {
{ {
title: '车间名称', title: '车间名称',
dataIndex: 'shopName', dataIndex: 'shopName',
align: 'center',
width: 120, width: 120,
valueType: 'select', valueType: 'select',
fieldProps: { fieldProps: {
...@@ -124,7 +124,7 @@ function getcolumns(setdrawer) { ...@@ -124,7 +124,7 @@ function getcolumns(setdrawer) {
title: '工段名称', title: '工段名称',
width: 120, width: 120,
dataIndex: 'sectionName', dataIndex: 'sectionName',
align: 'center',
key: 'sectionId', key: 'sectionId',
fieldProps: { fieldProps: {
placeholder: '请选择', placeholder: '请选择',
...@@ -148,7 +148,7 @@ function getcolumns(setdrawer) { ...@@ -148,7 +148,7 @@ function getcolumns(setdrawer) {
showSearch: true, showSearch: true,
}, },
key: 'productLineId', key: 'productLineId',
align: 'center',
options: { options: {
path: '/auth/sysProductionLine/getAllProductLineSelectionByShop', path: '/auth/sysProductionLine/getAllProductLineSelectionByShop',
linkParams: { linkParams: {
...@@ -161,7 +161,7 @@ function getcolumns(setdrawer) { ...@@ -161,7 +161,7 @@ function getcolumns(setdrawer) {
width: 120, width: 120,
valueType: 'select', valueType: 'select',
dataIndex: 'supplierName', dataIndex: 'supplierName',
align: 'center',
hideInTable: true, hideInTable: true,
search: false, search: false,
key: 'supplierId', key: 'supplierId',
...@@ -175,7 +175,7 @@ function getcolumns(setdrawer) { ...@@ -175,7 +175,7 @@ function getcolumns(setdrawer) {
valueType: 'digit', valueType: 'digit',
search: false, search: false,
hideInTable: true, hideInTable: true,
align: 'center',
dataIndex: 'equipmentWorth', dataIndex: 'equipmentWorth',
key: 'equipmentWorth', key: 'equipmentWorth',
}, },
...@@ -183,7 +183,7 @@ function getcolumns(setdrawer) { ...@@ -183,7 +183,7 @@ function getcolumns(setdrawer) {
title: '安装投产日期', title: '安装投产日期',
hideInTable: true, hideInTable: true,
search: false, search: false,
align: 'center',
dataIndex: 'productDate', dataIndex: 'productDate',
key: 'productDate', key: 'productDate',
valueType: 'date', valueType: 'date',
...@@ -195,7 +195,7 @@ function getcolumns(setdrawer) { ...@@ -195,7 +195,7 @@ function getcolumns(setdrawer) {
search: false, search: false,
search: false, search: false,
key: 'picList', key: 'picList',
align: 'center',
valueType: 'uploadImage', valueType: 'uploadImage',
fieldProps: { fieldProps: {
limit: 1, limit: 1,
...@@ -219,9 +219,9 @@ function getcolumns(setdrawer) { ...@@ -219,9 +219,9 @@ function getcolumns(setdrawer) {
{ {
title: '二维码', title: '二维码',
width: 120, width: 120,
align: 'center',
search: false, search: false,
align: 'center',
dataIndex: 'qrCodeUrl', dataIndex: 'qrCodeUrl',
key: 'qrCodeUrl', key: 'qrCodeUrl',
valueType: 'uploadImage', valueType: 'uploadImage',
...@@ -237,7 +237,7 @@ function getcolumns(setdrawer) { ...@@ -237,7 +237,7 @@ function getcolumns(setdrawer) {
}, },
{ {
title: '状态名称', title: '状态名称',
align: 'center',
search: false, search: false,
hideInTable: true, hideInTable: true,
dataIndex: 'statusName', dataIndex: 'statusName',
...@@ -248,7 +248,7 @@ function getcolumns(setdrawer) { ...@@ -248,7 +248,7 @@ function getcolumns(setdrawer) {
title: '设备状态', title: '设备状态',
dataIndex: 'status', dataIndex: 'status',
width: 120, width: 120,
align: 'center',
hideInForm: true, hideInForm: true,
fixed: 'right', fixed: 'right',
valueType: 'select', valueType: 'select',
......
...@@ -777,7 +777,7 @@ function Model(props) { ...@@ -777,7 +777,7 @@ function Model(props) {
dataIndex: 'equipmentNo', dataIndex: 'equipmentNo',
key: 'equipmentNo', key: 'equipmentNo',
search: false, search: false,
align: 'center',
width: 120, width: 120,
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
}, },
...@@ -785,14 +785,14 @@ function Model(props) { ...@@ -785,14 +785,14 @@ function Model(props) {
title: '设备名称', title: '设备名称',
dataIndex: 'equipmentName', dataIndex: 'equipmentName',
search: false, search: false,
align: 'center',
width: 120, width: 120,
key: 'equipmentName', key: 'equipmentName',
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
}, },
{ {
title: '公司名称', title: '公司名称',
align: 'center',
search: false, search: false,
dataIndex: 'organizationName', dataIndex: 'organizationName',
width: 120, width: 120,
...@@ -805,7 +805,7 @@ function Model(props) { ...@@ -805,7 +805,7 @@ function Model(props) {
title: '部门名称', title: '部门名称',
width: 120, width: 120,
search: false, search: false,
align: 'center',
valueType: 'treeSelect', valueType: 'treeSelect',
dataIndex: 'departmentName', dataIndex: 'departmentName',
key: 'departmentId', key: 'departmentId',
...@@ -822,7 +822,7 @@ function Model(props) { ...@@ -822,7 +822,7 @@ function Model(props) {
search: false, search: false,
key: 'factoryId', key: 'factoryId',
width: 120, width: 120,
align: 'center',
valueType: 'select', valueType: 'select',
options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} }, options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} },
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
...@@ -830,7 +830,7 @@ function Model(props) { ...@@ -830,7 +830,7 @@ function Model(props) {
{ {
title: '车间名称', title: '车间名称',
dataIndex: 'shopName', dataIndex: 'shopName',
align: 'center',
search: false, search: false,
width: 120, width: 120,
valueType: 'select', valueType: 'select',
...@@ -848,7 +848,7 @@ function Model(props) { ...@@ -848,7 +848,7 @@ function Model(props) {
search: false, search: false,
width: 120, width: 120,
dataIndex: 'sectionName', dataIndex: 'sectionName',
align: 'center',
key: 'sectionId', key: 'sectionId',
valueType: 'select', valueType: 'select',
options: { options: {
...@@ -865,7 +865,7 @@ function Model(props) { ...@@ -865,7 +865,7 @@ function Model(props) {
dataIndex: 'productLineName', dataIndex: 'productLineName',
valueType: 'select', valueType: 'select',
key: 'productLineName', key: 'productLineName',
align: 'center',
options: { options: {
path: '/auth/sysProductionLine/getAllProductLineSelectionByShop', path: '/auth/sysProductionLine/getAllProductLineSelectionByShop',
linkParams: { linkParams: {
...@@ -887,7 +887,7 @@ function Model(props) { ...@@ -887,7 +887,7 @@ function Model(props) {
dataIndex: 'equipmentNo', dataIndex: 'equipmentNo',
search: false, search: false,
key: 'equipmentNo', key: 'equipmentNo',
align: 'center',
width: 120, width: 120,
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
}, },
...@@ -895,14 +895,14 @@ function Model(props) { ...@@ -895,14 +895,14 @@ function Model(props) {
title: '设备名称', title: '设备名称',
dataIndex: 'equipmentName', dataIndex: 'equipmentName',
search: false, search: false,
align: 'center',
width: 120, width: 120,
key: 'equipmentName', key: 'equipmentName',
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
}, },
{ {
title: '公司名称', title: '公司名称',
align: 'center',
dataIndex: 'organizationName', dataIndex: 'organizationName',
width: 120, width: 120,
key: 'organizationId', key: 'organizationId',
...@@ -914,7 +914,7 @@ function Model(props) { ...@@ -914,7 +914,7 @@ function Model(props) {
{ {
title: '部门名称', title: '部门名称',
width: 120, width: 120,
align: 'center',
search: false, search: false,
valueType: 'treeSelect', valueType: 'treeSelect',
dataIndex: 'departmentName', dataIndex: 'departmentName',
...@@ -932,7 +932,7 @@ function Model(props) { ...@@ -932,7 +932,7 @@ function Model(props) {
dataIndex: 'factoryName', dataIndex: 'factoryName',
key: 'factoryId', key: 'factoryId',
width: 120, width: 120,
align: 'center',
valueType: 'select', valueType: 'select',
options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} }, options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} },
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
...@@ -941,7 +941,7 @@ function Model(props) { ...@@ -941,7 +941,7 @@ function Model(props) {
title: '车间名称', title: '车间名称',
dataIndex: 'shopName', dataIndex: 'shopName',
search: false, search: false,
align: 'center',
width: 120, width: 120,
valueType: 'select', valueType: 'select',
options: { options: {
...@@ -957,7 +957,7 @@ function Model(props) { ...@@ -957,7 +957,7 @@ function Model(props) {
title: '工段名称', title: '工段名称',
width: 120, width: 120,
dataIndex: 'sectionName', dataIndex: 'sectionName',
align: 'center',
key: 'sectionId', key: 'sectionId',
search: false, search: false,
valueType: 'select', valueType: 'select',
...@@ -975,7 +975,7 @@ function Model(props) { ...@@ -975,7 +975,7 @@ function Model(props) {
valueType: 'select', valueType: 'select',
search: false, search: false,
key: 'productLineName', key: 'productLineName',
align: 'center',
options: { options: {
path: '/auth/sysProductionLine/getAllProductLineSelectionByShop', path: '/auth/sysProductionLine/getAllProductLineSelectionByShop',
linkParams: { linkParams: {
...@@ -1180,21 +1180,21 @@ function Model(props) { ...@@ -1180,21 +1180,21 @@ function Model(props) {
dataIndex: 'equipmentNo', dataIndex: 'equipmentNo',
key: 'equipmentNo', key: 'equipmentNo',
search: false, search: false,
align: 'center',
width: 120, width: 120,
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
}, },
{ {
title: '设备名称', title: '设备名称',
dataIndex: 'equipmentName', dataIndex: 'equipmentName',
align: 'center',
width: 120, width: 120,
key: 'equipmentName', key: 'equipmentName',
formItemProps: { rules: [{ required: true, message: '此项为必填项' }] }, formItemProps: { rules: [{ required: true, message: '此项为必填项' }] },
}, },
{ {
title: '公司名称', title: '公司名称',
align: 'center',
dataIndex: 'organizationName', dataIndex: 'organizationName',
width: 120, width: 120,
key: 'organizationId', key: 'organizationId',
...@@ -1209,7 +1209,7 @@ function Model(props) { ...@@ -1209,7 +1209,7 @@ function Model(props) {
{ {
title: '部门名称', title: '部门名称',
width: 120, width: 120,
align: 'center',
valueType: 'treeSelect', valueType: 'treeSelect',
dataIndex: 'departmentName', dataIndex: 'departmentName',
fieldProps: { fieldProps: {
...@@ -1229,7 +1229,7 @@ function Model(props) { ...@@ -1229,7 +1229,7 @@ function Model(props) {
dataIndex: 'factoryName', dataIndex: 'factoryName',
key: 'factoryId', key: 'factoryId',
width: 120, width: 120,
align: 'center',
fieldProps: { fieldProps: {
placeholder: '请选择', placeholder: '请选择',
showSearch: true, showSearch: true,
...@@ -1241,7 +1241,7 @@ function Model(props) { ...@@ -1241,7 +1241,7 @@ function Model(props) {
{ {
title: '车间名称', title: '车间名称',
dataIndex: 'shopName', dataIndex: 'shopName',
align: 'center',
width: 120, width: 120,
fieldProps: { fieldProps: {
placeholder: '请选择', placeholder: '请选择',
...@@ -1261,7 +1261,7 @@ function Model(props) { ...@@ -1261,7 +1261,7 @@ function Model(props) {
title: '工段名称', title: '工段名称',
width: 120, width: 120,
dataIndex: 'sectionName', dataIndex: 'sectionName',
align: 'center',
key: 'sectionId', key: 'sectionId',
fieldProps: { fieldProps: {
placeholder: '请选择', placeholder: '请选择',
...@@ -1285,7 +1285,7 @@ function Model(props) { ...@@ -1285,7 +1285,7 @@ function Model(props) {
placeholder: '请选择', placeholder: '请选择',
showSearch: true, showSearch: true,
}, },
align: 'center',
options: { options: {
path: '/auth/sysProductionLine/getAllProductLineSelectionByShop', path: '/auth/sysProductionLine/getAllProductLineSelectionByShop',
linkParams: { linkParams: {
......
...@@ -145,7 +145,7 @@ function getcolumns(setDrawer, ifs, formRef) { ...@@ -145,7 +145,7 @@ function getcolumns(setDrawer, ifs, formRef) {
}, },
{ {
title: '公司名称', title: '公司名称',
align: 'center',
dataIndex: 'organizationName', dataIndex: 'organizationName',
width: 120, width: 120,
key: 'organizationId', key: 'organizationId',
...@@ -160,7 +160,7 @@ function getcolumns(setDrawer, ifs, formRef) { ...@@ -160,7 +160,7 @@ function getcolumns(setDrawer, ifs, formRef) {
{ {
title: '部门名称', title: '部门名称',
width: 120, width: 120,
align: 'center',
valueType: 'treeSelect', valueType: 'treeSelect',
dataIndex: 'departmentName', dataIndex: 'departmentName',
fieldProps: { fieldProps: {
...@@ -176,24 +176,6 @@ function getcolumns(setDrawer, ifs, formRef) { ...@@ -176,24 +176,6 @@ function getcolumns(setDrawer, ifs, formRef) {
}, },
}, },
}, },
{
title: '负责工厂',
dataIndex: 'factoryNames',
align: 'center',
key: 'factoryNames',
hideInTable: true,
hideInForm: true,
formItemProps: { rules: [{ required: false, message: '此项为必填项' }] },
},
{
title: '负责车间',
dataIndex: 'shopNames',
key: 'shopNames',
align: 'center',
hideInTable: true,
hideInForm: true,
formItemProps: { rules: [{ required: false, message: '此项为必填项' }] },
},
{ {
title: '角色名称', title: '角色名称',
dataIndex: 'roleNames', dataIndex: 'roleNames',
...@@ -205,22 +187,20 @@ function getcolumns(setDrawer, ifs, formRef) { ...@@ -205,22 +187,20 @@ function getcolumns(setDrawer, ifs, formRef) {
title: '负责工厂', title: '负责工厂',
dataIndex: 'factoryNames', dataIndex: 'factoryNames',
key: 'factoryIdList', key: 'factoryIdList',
search: false,
fieldProps: { fieldProps: {
placeholder: '请选择', placeholder: '请选择',
showSearch: true, showSearch: true,
mode: 'multiple', mode: 'multiple',
}, },
width: 120, width: 120,
align: 'center',
valueType: 'select', valueType: 'select',
options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} }, options: { path: '/auth/sysFactory/getAllFactorySelection', params: {} },
}, },
{ {
title: '负责车间', title: '负责车间',
dataIndex: 'shopNames', dataIndex: 'shopNames',
search: false,
align: 'center',
fieldProps: { fieldProps: {
placeholder: '请选择', placeholder: '请选择',
showSearch: true, showSearch: true,
...@@ -241,7 +221,7 @@ function getcolumns(setDrawer, ifs, formRef) { ...@@ -241,7 +221,7 @@ function getcolumns(setDrawer, ifs, formRef) {
title: '负责工段', title: '负责工段',
width: 120, width: 120,
dataIndex: 'sectionNames', dataIndex: 'sectionNames',
align: 'center',
search: false, search: false,
key: 'sectionIdList', key: 'sectionIdList',
hideInTable: true, hideInTable: true,
...@@ -272,7 +252,7 @@ function getcolumns(setDrawer, ifs, formRef) { ...@@ -272,7 +252,7 @@ function getcolumns(setDrawer, ifs, formRef) {
search: false, search: false,
hideInTable: true, hideInTable: true,
key: 'productionLineIdList', key: 'productionLineIdList',
align: 'center',
options: { options: {
path: '/auth/sysProductionLine/getAllProductLineSelectionByShopIdList', path: '/auth/sysProductionLine/getAllProductLineSelectionByShopIdList',
linkParams: { linkParams: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment