|
|
@ -4,10 +4,13 @@ import { http } from '/nerv-lib/util'; |
|
|
|
import { ref } from 'vue'; |
|
|
|
import { group } from '/@/api/deviceManage'; |
|
|
|
import { dict } from '/@/api'; |
|
|
|
const tableKeyMap = [ |
|
|
|
import { origanizemanage } from '/@/api/origanizemanage'; |
|
|
|
const tableCalKeyMap = [ |
|
|
|
{ |
|
|
|
title: '来源企业', |
|
|
|
dataIndex: 'id', |
|
|
|
dataIndex: 'orgName', |
|
|
|
// textEllipsis: true,
|
|
|
|
// textNumber: 4,
|
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '设备id', |
|
|
@ -32,20 +35,18 @@ const tableKeyMap = [ |
|
|
|
dataIndex: 'position', |
|
|
|
}, |
|
|
|
]; |
|
|
|
const tableCalKeyMap = [ |
|
|
|
const tableKeyMap = [ |
|
|
|
{ |
|
|
|
title: '来源企业', |
|
|
|
dataIndex: 'id', |
|
|
|
dataIndex: 'orgName', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '节点编号', |
|
|
|
dataIndex: 'deviceName', |
|
|
|
textNumber: 8, |
|
|
|
textEllipsis: true, |
|
|
|
dataIndex: 'pointNum', |
|
|
|
}, |
|
|
|
{ |
|
|
|
title: '节点路径', |
|
|
|
dataIndex: 'position', |
|
|
|
dataIndex: 'routeName', |
|
|
|
}, |
|
|
|
]; |
|
|
|
const doWnload = (url) => { |
|
|
@ -125,6 +126,26 @@ export const formSchema = [ |
|
|
|
], |
|
|
|
}, |
|
|
|
]; |
|
|
|
export const editTreeConfig = (orgId) => ({ |
|
|
|
selectedKeys: ['0-0'], |
|
|
|
defaultExpandAll: true, |
|
|
|
api: group.queryEditGroup, |
|
|
|
params: { orgId }, |
|
|
|
resultField: 'data.orgInfos', |
|
|
|
fieldNames: { title: 'orgName', key: 'orgId' }, |
|
|
|
formConfig: { |
|
|
|
schemas: [ |
|
|
|
{ |
|
|
|
field: 'orgName', |
|
|
|
component: 'NsInput', |
|
|
|
autoSubmit: true, |
|
|
|
componentProps: { |
|
|
|
placeholder: '请输入企业名称', |
|
|
|
}, |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|
}); |
|
|
|
export const treeConfig = (orgId) => { |
|
|
|
return { |
|
|
|
defaultExpandAll: true, |
|
|
@ -133,15 +154,8 @@ export const treeConfig = (orgId) => { |
|
|
|
title: '能耗分组', |
|
|
|
}, |
|
|
|
params: { orgId }, |
|
|
|
showLine: { showLeafIcon: false }, |
|
|
|
|
|
|
|
api: group.queryDeviceGroupTree, |
|
|
|
// api: () => {
|
|
|
|
// return new Promise((resolve) => {
|
|
|
|
// setTimeout(() => {
|
|
|
|
// resolve({ data: [{ title: '全部', key: 'all', children: data.data }] });
|
|
|
|
// }, 100);
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
transform: (data) => { |
|
|
|
return [{ pointName: '全部', id: 'all', selectable: false, children: data }]; |
|
|
|
}, |
|
|
@ -176,12 +190,11 @@ export const treeConfig = (orgId) => { |
|
|
|
}, |
|
|
|
}; |
|
|
|
}; |
|
|
|
export const tableConfig = (el, elGroup, elFormula) => { |
|
|
|
export const tableConfig = (el, elGroup, elFormula, defaultParams) => { |
|
|
|
return { |
|
|
|
title: '点位信息', |
|
|
|
// api: '/carbon_emission/device/getDeviceList',
|
|
|
|
value: mockData.value, |
|
|
|
|
|
|
|
api: group.queryGroupPage, |
|
|
|
params: defaultParams.value, |
|
|
|
headerActions: [ |
|
|
|
{ |
|
|
|
label: '编辑', |
|
|
@ -193,7 +206,7 @@ export const tableConfig = (el, elGroup, elFormula) => { |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '批量删除', |
|
|
|
name: 'groupTemDownload', |
|
|
|
name: 'groupBatDelete', |
|
|
|
type: 'primary', |
|
|
|
dynamicDisabled: (data: any) => { |
|
|
|
return data.list.length === 0; |
|
|
@ -244,7 +257,7 @@ export const tableConfig = (el, elGroup, elFormula) => { |
|
|
|
|
|
|
|
{ |
|
|
|
label: '批量分组', |
|
|
|
name: 'groupTemDownload', |
|
|
|
name: 'groupBatGroup', |
|
|
|
type: 'primary', |
|
|
|
handle: () => { |
|
|
|
elGroup.value.toggle(); |
|
|
@ -252,7 +265,7 @@ export const tableConfig = (el, elGroup, elFormula) => { |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '公式编辑', |
|
|
|
name: 'groupTemDownload', |
|
|
|
name: 'groupFormulaEdit', |
|
|
|
type: 'primary', |
|
|
|
handle: () => { |
|
|
|
elFormula.value.toggle(); |
|
|
@ -265,7 +278,7 @@ export const tableConfig = (el, elGroup, elFormula) => { |
|
|
|
actions: [ |
|
|
|
{ |
|
|
|
label: '删除', |
|
|
|
name: 'FeedBackDetail', |
|
|
|
name: 'groupDelete', |
|
|
|
dynamicParams: ['uuid', 'appealType'], |
|
|
|
confirm: true, |
|
|
|
handle: () => { |
|
|
@ -341,11 +354,13 @@ export const tableConfig = (el, elGroup, elFormula) => { |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
export const tableConfigCal = (el, elGroup, elFormula) => { |
|
|
|
export const tableConfigCal = (el, elGroup, elFormula, defaultParams) => { |
|
|
|
// 分组节点
|
|
|
|
return { |
|
|
|
title: '点位信息', |
|
|
|
// api: '/carbon_emission/device/getDeviceList',
|
|
|
|
value: mockData.value, |
|
|
|
params: defaultParams, |
|
|
|
|
|
|
|
headerActions: [ |
|
|
|
{ |
|
|
@ -413,12 +428,12 @@ export const tableConfigCal = (el, elGroup, elFormula) => { |
|
|
|
actions: [ |
|
|
|
{ |
|
|
|
label: '删除', |
|
|
|
name: 'FeedBackDetail', |
|
|
|
dynamicParams: ['uuid', 'appealType'], |
|
|
|
name: 'groupDelete', |
|
|
|
dynamicParams: 'id', |
|
|
|
confirm: true, |
|
|
|
handle: () => { |
|
|
|
mockData.value.splice(0, 1); |
|
|
|
}, |
|
|
|
isReload: true, |
|
|
|
isClearCheck: true, |
|
|
|
api: group.delGroupList, |
|
|
|
}, |
|
|
|
], |
|
|
|
}, |
|
|
|