wangyan
4 months ago
49 changed files with 2559 additions and 1183 deletions
@ -0,0 +1,20 @@ |
|||||
|
|
||||
|
// 照明系统及相关接口
|
||||
|
export enum lightingManage { |
||||
|
|
||||
|
// 主页 ========================================================
|
||||
|
|
||||
|
// 获得分区与线路
|
||||
|
getArea = '/carbon-smart/IlluminationInfo/region', |
||||
|
// 修改线路的可用/禁用状态
|
||||
|
setDisable = '/carbon-smart/IlluminationInfo/revisePanel', |
||||
|
|
||||
|
// 计划列表tab页 ================================================
|
||||
|
|
||||
|
// 获得计划列表tab页的表格数据
|
||||
|
getPlanTable = '/carbon-smart/IlluminationPlan/selectPanelPlan', |
||||
|
// 获得计划列表tab页的穿梭框左侧数据
|
||||
|
getLeftPlan = '/carbon-smart/IlluminationPlan/getPlan', |
||||
|
// 提交穿梭框被选择的数据
|
||||
|
submitLeftPlan = '/carbon-smart/IlluminationPlan/joinPlan', |
||||
|
} |
@ -0,0 +1,5 @@ |
|||||
|
export enum notificationManagementApi { |
||||
|
getTableList = '/carbon-smart/api/AlarmContactInformation/selectAlarmContactInformation', //通知管理分页
|
||||
|
upData = '/carbon-smart/api/AlarmContactInformation/update', //通知管理 修改
|
||||
|
findById = '/carbon-smart/api/AlarmContactInformation/findById', //通知管理 查询详情
|
||||
|
} |
@ -1,22 +0,0 @@ |
|||||
import { department } from '/@/api/origanizemanage'; |
|
||||
|
|
||||
export const editTreeConfig = (orgId) => ({ |
|
||||
selectedKeys: ['0-0'], |
|
||||
defaultExpandAll: true, |
|
||||
api: department.queryDeptTree, |
|
||||
params: { orgId }, |
|
||||
resultField: 'data.orgInfos', |
|
||||
fieldNames: { title: 'orgName', key: 'orgId' }, |
|
||||
formConfig: { |
|
||||
schemas: [ |
|
||||
{ |
|
||||
field: 'orgName', |
|
||||
component: 'NsInput', |
|
||||
autoSubmit: true, |
|
||||
componentProps: { |
|
||||
placeholder: '请输入企业名称', |
|
||||
}, |
|
||||
}, |
|
||||
], |
|
||||
}, |
|
||||
}); |
|
@ -0,0 +1,306 @@ |
|||||
|
<template> |
||||
|
<div> |
||||
|
<!-- <a-table |
||||
|
:columns="column" |
||||
|
:data-source="data" |
||||
|
bordered |
||||
|
:pagination="false" |
||||
|
:scroll="{ x: 2000 }"> |
||||
|
<template #title> |
||||
|
<a-date-picker v-model:value="selectYear" picker="year" @change="changeYearData" valueFormat="YYYY" /> |
||||
|
</template> |
||||
|
</a-table> --> |
||||
|
<ns-view-list-table v-bind="tableConfig" :model="data" ref="mainRef" /> |
||||
|
<!-- <a-pagination |
||||
|
:current="queryParams.pageNum" |
||||
|
:total="total" |
||||
|
:page-size="queryParams.pageSize" |
||||
|
style="display: flex;justify-content: center;margin-top: 16px;" |
||||
|
:show-size-changer="true" |
||||
|
:show-quick-jumper="true" |
||||
|
@change="onChange" /> --> |
||||
|
</div> |
||||
|
</template> |
||||
|
<script lang="ts" setup> |
||||
|
import { ref } from 'vue'; |
||||
|
import { http } from '/nerv-lib/util/http'; |
||||
|
import { Pagination } from 'ant-design-vue'; |
||||
|
import dayjs, { Dayjs } from 'dayjs'; |
||||
|
import { carbonEmission } from '/@/api/carbonEmissionFactorLibrary'; |
||||
|
defineOptions({ |
||||
|
energyType: 'CarbonEmissions', // 与页面路由name一致缓存才可生效 |
||||
|
components: { |
||||
|
'a-pagination': Pagination, |
||||
|
}, |
||||
|
}); |
||||
|
const orgId = ref(''); |
||||
|
const result = JSON.parse(sessionStorage.getItem('ORGID')!); |
||||
|
orgId.value = result; |
||||
|
const fetch = (api, params = { orgId } ) => { |
||||
|
return http.post(api, params); |
||||
|
}; |
||||
|
const data = ref([]); |
||||
|
const selectYear = ref<Dayjs>(dayjs( new Date().getFullYear().toString())); |
||||
|
const total = ref<number>() |
||||
|
const queryParams = ref({ |
||||
|
pageNum: 1, |
||||
|
pageSize: 10, |
||||
|
year: selectYear.value.format('YYYY'), |
||||
|
orgId: orgId.value |
||||
|
}) |
||||
|
|
||||
|
// 年份选择改变触发 |
||||
|
// const changeYearData = () => { |
||||
|
// queryParams.value.year = selectYear.value |
||||
|
// getTableList() |
||||
|
// } |
||||
|
// 表头 |
||||
|
const mainRef = ref(); |
||||
|
const column: TableColumnsType [] = [ |
||||
|
{ |
||||
|
title: '排放类型', |
||||
|
dataIndex: 'cnValue', |
||||
|
customCell: (record, rowIndex) => { |
||||
|
if (rowIndex == undefined) { |
||||
|
return { |
||||
|
rowSpan: 0, |
||||
|
colSpan: 0, |
||||
|
}; |
||||
|
} |
||||
|
const rowSpan = getRowSpan('cnValue', record, data.value); |
||||
|
if (rowIndex != 0 && data.value[rowIndex - 1].name == record.name) { |
||||
|
return { |
||||
|
rowSpan: 0, |
||||
|
colSpan: 0, |
||||
|
}; |
||||
|
} |
||||
|
return { |
||||
|
rowSpan: rowSpan, |
||||
|
}; |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
title: '能源种类', |
||||
|
dataIndex: 'energyType', |
||||
|
}, |
||||
|
{ |
||||
|
title: '计量单位', |
||||
|
dataIndex: 'unit', |
||||
|
}, |
||||
|
{ |
||||
|
title: '加权平均', |
||||
|
dataIndex: 'averageFactorValue', |
||||
|
}, |
||||
|
{ |
||||
|
title: '全年', |
||||
|
dataIndex: 'carbonYearly', |
||||
|
}, |
||||
|
{ |
||||
|
title: '1月', |
||||
|
dataIndex: 'jan', |
||||
|
}, |
||||
|
{ |
||||
|
title: '2月', |
||||
|
dataIndex: 'feb', |
||||
|
}, |
||||
|
{ |
||||
|
title: '3月', |
||||
|
dataIndex: 'mar', |
||||
|
}, |
||||
|
{ |
||||
|
title: '4月', |
||||
|
dataIndex: 'apr', |
||||
|
}, |
||||
|
{ |
||||
|
title: '5月', |
||||
|
dataIndex: 'may', |
||||
|
}, |
||||
|
{ |
||||
|
title: '6月', |
||||
|
dataIndex: 'jun', |
||||
|
}, |
||||
|
{ |
||||
|
title: '7月', |
||||
|
dataIndex: 'jul', |
||||
|
}, |
||||
|
{ |
||||
|
title: '8月', |
||||
|
dataIndex: 'aug', |
||||
|
}, |
||||
|
{ |
||||
|
title: '9月', |
||||
|
dataIndex: 'sep', |
||||
|
}, |
||||
|
{ |
||||
|
title: '10月', |
||||
|
dataIndex: 'oct', |
||||
|
}, |
||||
|
{ |
||||
|
title: '11月', |
||||
|
dataIndex: 'nov', |
||||
|
}, |
||||
|
{ |
||||
|
title: '12月', |
||||
|
dataIndex: 'dec', |
||||
|
}, |
||||
|
]; |
||||
|
const year = ref(selectYear.value.format('YYYY')) |
||||
|
const tableConfig = ref({ |
||||
|
title: '碳排统计', |
||||
|
api: carbonEmission.carbonEmissionStatistics, |
||||
|
params: { |
||||
|
orgId, |
||||
|
year |
||||
|
}, |
||||
|
columns: [ |
||||
|
{ |
||||
|
title: '排放类型', |
||||
|
dataIndex: 'cnValue', |
||||
|
customCell: (record, rowIndex) => { |
||||
|
if (rowIndex == undefined) { |
||||
|
return { |
||||
|
rowSpan: 0, |
||||
|
colSpan: 0, |
||||
|
}; |
||||
|
} |
||||
|
const rowSpan = getRowSpan('cnValue', record, data.value); |
||||
|
if (rowIndex != 0 && data.value[rowIndex - 1].name == record.name) { |
||||
|
return { |
||||
|
rowSpan: 0, |
||||
|
colSpan: 0, |
||||
|
}; |
||||
|
} |
||||
|
return { |
||||
|
rowSpan: rowSpan, |
||||
|
}; |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
title: '能源种类', |
||||
|
dataIndex: 'energyType', |
||||
|
}, |
||||
|
{ |
||||
|
title: '计量单位', |
||||
|
dataIndex: 'unit', |
||||
|
}, |
||||
|
{ |
||||
|
title: '加权平均', |
||||
|
dataIndex: 'averageFactorValue', |
||||
|
}, |
||||
|
{ |
||||
|
title: '全年', |
||||
|
dataIndex: 'carbonYearly', |
||||
|
}, |
||||
|
{ |
||||
|
title: '1月', |
||||
|
dataIndex: 'jan', |
||||
|
}, |
||||
|
{ |
||||
|
title: '2月', |
||||
|
dataIndex: 'feb', |
||||
|
}, |
||||
|
{ |
||||
|
title: '3月', |
||||
|
dataIndex: 'mar', |
||||
|
}, |
||||
|
{ |
||||
|
title: '4月', |
||||
|
dataIndex: 'apr', |
||||
|
}, |
||||
|
{ |
||||
|
title: '5月', |
||||
|
dataIndex: 'may', |
||||
|
}, |
||||
|
{ |
||||
|
title: '6月', |
||||
|
dataIndex: 'jun', |
||||
|
}, |
||||
|
{ |
||||
|
title: '7月', |
||||
|
dataIndex: 'jul', |
||||
|
}, |
||||
|
{ |
||||
|
title: '8月', |
||||
|
dataIndex: 'aug', |
||||
|
}, |
||||
|
{ |
||||
|
title: '9月', |
||||
|
dataIndex: 'sep', |
||||
|
}, |
||||
|
{ |
||||
|
title: '10月', |
||||
|
dataIndex: 'oct', |
||||
|
}, |
||||
|
{ |
||||
|
title: '11月', |
||||
|
dataIndex: 'nov', |
||||
|
}, |
||||
|
{ |
||||
|
title: '12月', |
||||
|
dataIndex: 'dec', |
||||
|
}, |
||||
|
], |
||||
|
formConfig: { |
||||
|
schemas: [ |
||||
|
{ |
||||
|
field: 'year', |
||||
|
label: '年份', |
||||
|
component: 'NsDatePicker', |
||||
|
componentProps: { |
||||
|
picker: 'year', |
||||
|
valueFormat: 'YYYY', |
||||
|
defaultValue: selectYear.value.format('YYYY'), |
||||
|
}, |
||||
|
}, |
||||
|
], |
||||
|
params: {}, |
||||
|
}, |
||||
|
rowKey: 'id', |
||||
|
}); |
||||
|
// 合并单元格 |
||||
|
const getRowSpan = (dataIndex: string, record: any, data: any, dependents: string[] = []) => { |
||||
|
let rowSpan = 1; |
||||
|
for (let i = data.indexOf(record) + 1; i < data.length; i++) { |
||||
|
let shouldMerge = true; |
||||
|
for (const dependent of dependents) { |
||||
|
if (data[i][dependent] !== record[dependent]) { |
||||
|
shouldMerge = false; |
||||
|
break; |
||||
|
} |
||||
|
} |
||||
|
if (shouldMerge && data[i][dataIndex] === record[dataIndex]) { |
||||
|
rowSpan++; |
||||
|
} else { |
||||
|
break; |
||||
|
} |
||||
|
} |
||||
|
return rowSpan; |
||||
|
}; |
||||
|
// 获取表格数据 |
||||
|
// const getTableList = () => { |
||||
|
// fetch(carbonEmission.carbonEmissionStatistics , queryParams.value).then((res) => { |
||||
|
// data.value = res.data.records |
||||
|
// total.value = res.data.total |
||||
|
// }); |
||||
|
// }; |
||||
|
// 分页器 |
||||
|
// const onChange = (pageNumber: number,size: number) => { |
||||
|
// queryParams.value.pageNum = pageNumber; |
||||
|
// queryParams.value.pageSize = size; |
||||
|
// getTableList() |
||||
|
// }; |
||||
|
</script> |
||||
|
<style scoped lang="less"> |
||||
|
::v-deep .ant-table-title{ |
||||
|
display: flex; |
||||
|
} |
||||
|
::v-deep .ant-table-container{ |
||||
|
padding: 0px 16px; |
||||
|
} |
||||
|
</style> |
||||
|
<style scoped> |
||||
|
th.column-money, |
||||
|
td.column-money { |
||||
|
text-align: right !important; |
||||
|
} |
||||
|
</style> |
@ -0,0 +1,283 @@ |
|||||
|
import { ref } from 'vue'; |
||||
|
import { http } from '/nerv-lib/util'; |
||||
|
import { origanizemanage } from '/@/api/origanizemanage'; |
||||
|
import { carbonEmissionFactorLibrary } from '/@/api/carbonEmissionFactorLibrary'; |
||||
|
export const formConfig = (disabled) => { |
||||
|
return ref([ |
||||
|
{ |
||||
|
field: 'fields', |
||||
|
component: 'NsChildForm', |
||||
|
componentProps: { |
||||
|
schemas: [ |
||||
|
{ |
||||
|
label: '排放源', |
||||
|
field: 'emissionSources', |
||||
|
component: 'NsInput', |
||||
|
componentProps: { |
||||
|
placeholder: '请输入排放源', |
||||
|
maxLength: 20, |
||||
|
}, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: '请输入排放源', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
{ |
||||
|
field: 'emissionType', |
||||
|
label: '排放分类', |
||||
|
component: 'NsCascader', |
||||
|
fieldMap: ['emissionType'], |
||||
|
componentProps: { |
||||
|
placeholder: '请选择排放分类', |
||||
|
api: carbonEmissionFactorLibrary.getCarbonFactorTree, |
||||
|
fieldNames: { label: 'emissionName', value: 'id' }, |
||||
|
showSearch: true, |
||||
|
}, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: '请选择排放分类', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
{ |
||||
|
field: 'emissionGas', |
||||
|
label: '排放气体', |
||||
|
component: 'NsSelect', |
||||
|
componentProps: { |
||||
|
allowClear: true, |
||||
|
placeholder: '请选择排放气体', |
||||
|
options: [ |
||||
|
{ |
||||
|
label: 'CO2', |
||||
|
value: 'CO2', |
||||
|
}, |
||||
|
{ |
||||
|
label: 'CO2e', |
||||
|
value: 'CO2e', |
||||
|
}, |
||||
|
{ |
||||
|
label: 'SF6', |
||||
|
value:'SF6', |
||||
|
}, |
||||
|
{ |
||||
|
label: 'CH4', |
||||
|
value: 'CH4', |
||||
|
}, |
||||
|
{ |
||||
|
label: 'PFCs', |
||||
|
value: 'PFCs', |
||||
|
}, |
||||
|
{ |
||||
|
label: 'HFCs', |
||||
|
value: 'HFCs', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: '请选择排放气体', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
// {
|
||||
|
// field: 'emissionProcess',
|
||||
|
// label: '排放环节',
|
||||
|
// component: 'NsSelectApi',
|
||||
|
// componentProps: {
|
||||
|
// api: carbonEmissionFactorLibrary.getEmissionProcess,
|
||||
|
// params: {
|
||||
|
// emissionType: sessionStorage.getItem('checkedTreeNode'),
|
||||
|
// },
|
||||
|
// resultField: 'data',
|
||||
|
// labelField: 'emissionProcess',
|
||||
|
// valueField: 'emissionProcess',
|
||||
|
// immediate: true,
|
||||
|
// autoSelectFirst: false,
|
||||
|
// filterOption:false,
|
||||
|
// showSearch:true,
|
||||
|
// autoClearSearchValue:false
|
||||
|
// },
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '排放环节', |
||||
|
field: 'emissionProcess', |
||||
|
component: 'NsInput', |
||||
|
componentProps: { |
||||
|
placeholder: '请输入排放环节', |
||||
|
maxLength: 20, |
||||
|
}, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: '请输入排放环节', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
{ |
||||
|
label: '排放因子', |
||||
|
field: 'emissionFactors', |
||||
|
component: 'NsInputNumber', |
||||
|
componentProps: { |
||||
|
placeholder: '请输入排放因子值', |
||||
|
maxLength: 20, |
||||
|
}, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: '请输入排放因子值', |
||||
|
trigger: 'change', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
{ |
||||
|
field: 'carbonEmissionPrefix', |
||||
|
label: '碳排前缀', |
||||
|
component: 'NsSelect', |
||||
|
componentProps: { |
||||
|
disabled: true, |
||||
|
allowClear: true, |
||||
|
defaultValue: 't', |
||||
|
placeholder: '请选择碳排前缀', |
||||
|
options: [ |
||||
|
{ |
||||
|
label: 'g', |
||||
|
value: 'g', |
||||
|
}, |
||||
|
{ |
||||
|
label: 'kg', |
||||
|
value: 'kg', |
||||
|
}, |
||||
|
{ |
||||
|
label: 't', |
||||
|
value: 't', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: '请选择碳排前缀', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
{ |
||||
|
label: '碳排后缀', |
||||
|
field: 'carbonEmissionSuffix', |
||||
|
component: 'NsInput', |
||||
|
componentProps: { |
||||
|
placeholder: '请输入碳排后缀', |
||||
|
maxLength: 20, |
||||
|
}, |
||||
|
rules: [ |
||||
|
{ |
||||
|
required: true, |
||||
|
message: '请输入碳排后缀', |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
{ |
||||
|
label: '已引用数', |
||||
|
field: 'numberOfReferences', |
||||
|
component: 'NsInput', |
||||
|
componentProps: { |
||||
|
defaultValue: 10, |
||||
|
disabled: true, |
||||
|
maxLength: 20, |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '参考文献', |
||||
|
field: 'reference', |
||||
|
component: 'NsTextarea', |
||||
|
componentProps: { |
||||
|
placeholder: '请输入参考文献', |
||||
|
maxLength: 20, |
||||
|
}, |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
}, |
||||
|
]); |
||||
|
}; |
||||
|
const options = ref([]); |
||||
|
|
||||
|
const getUserPerList = (transform, params = {}) => { |
||||
|
return http.post(origanizemanage.queryUserPerList, { ...params }).then((res) => { |
||||
|
return res.data?.map((item) => { |
||||
|
item = { ...item, ...transform(item) }; |
||||
|
return item; |
||||
|
}); |
||||
|
}); |
||||
|
}; |
||||
|
export const formConfig2 = (casData: any) => { |
||||
|
return ref([ |
||||
|
{ |
||||
|
field: 'information', |
||||
|
component: 'NsCascader', |
||||
|
componentProps: { |
||||
|
placeholder: '请选择', |
||||
|
displayRender: ({ labels, selectedOptions }: any) => { |
||||
|
console.log(labels, selectedOptions); |
||||
|
|
||||
|
casData.value = selectedOptions.map(({ label, value }) => { |
||||
|
return { label, value }; |
||||
|
}); |
||||
|
return labels.join('/'); |
||||
|
}, |
||||
|
loadData: (selectedOptions, options) => { |
||||
|
console.log(selectedOptions, options, 'selectedOptions, options'); |
||||
|
|
||||
|
const targetOption = selectedOptions[selectedOptions.length - 1]; |
||||
|
let transForm, params; |
||||
|
// load options lazily
|
||||
|
if (!selectedOptions.length) { |
||||
|
transForm = (data) => { |
||||
|
data['label'] = data.orgName; |
||||
|
data['value'] = data.orgId; |
||||
|
data['isLeaf'] = false; |
||||
|
data['level'] = 1; |
||||
|
return data; |
||||
|
}; |
||||
|
getUserPerList(transForm).then((res) => { |
||||
|
options.value = [...res]; |
||||
|
}); |
||||
|
} |
||||
|
const id = targetOption?.value; |
||||
|
const level = targetOption?.level; |
||||
|
if (targetOption) { |
||||
|
targetOption.loading = true; |
||||
|
} |
||||
|
|
||||
|
if (level === 1) { |
||||
|
transForm = (data) => { |
||||
|
data['label'] = data.deptName; |
||||
|
data['value'] = data.deptId; |
||||
|
data['isLeaf'] = false; |
||||
|
data['level'] = 2; |
||||
|
return data; |
||||
|
}; |
||||
|
params = { orgId: id }; |
||||
|
} else if (level === 2) { |
||||
|
transForm = (data) => { |
||||
|
data['label'] = data.roleName; |
||||
|
data['value'] = data.roleId; |
||||
|
data['level'] = 3; |
||||
|
return data; |
||||
|
}; |
||||
|
params = { deptId: id }; |
||||
|
} |
||||
|
if (targetOption) { |
||||
|
getUserPerList(transForm, { ...params }).then((res) => { |
||||
|
targetOption.loading = false; |
||||
|
targetOption.children = [...res]; |
||||
|
}); |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
]); |
||||
|
}; |
@ -0,0 +1,10 @@ |
|||||
|
<template> |
||||
|
|
||||
|
</template> |
||||
|
|
||||
|
<script lang="ts" setup> |
||||
|
</script> |
||||
|
|
||||
|
<style lang="less" scoped> |
||||
|
|
||||
|
</style> |
@ -0,0 +1,197 @@ |
|||||
|
<template> |
||||
|
<!-- 首页 --> |
||||
|
<div v-if="isMainPage"> |
||||
|
<ns-view-list-table v-bind="tableConfig" :model="data" ref="mainRef" /> |
||||
|
</div> |
||||
|
<!-- 填报页 --> |
||||
|
<div v-if="fillInPage"> |
||||
|
|
||||
|
</div> |
||||
|
<!-- 新增报告弹窗 --> |
||||
|
<a-drawer |
||||
|
:width="500" |
||||
|
:visible="visible" |
||||
|
:body-style="{ paddingBottom: '80px' }" |
||||
|
:footer-style="{ textAlign: 'right' }" |
||||
|
destroyOnClose |
||||
|
@close="onClose"> |
||||
|
<a-form |
||||
|
ref="formRef" |
||||
|
:model="formState" |
||||
|
:rules="rules" |
||||
|
:label-col="labelCol" |
||||
|
:wrapper-col="wrapperCol" |
||||
|
> |
||||
|
<a-form-item ref="name" label="报告名称" name="energyType"> |
||||
|
<a-input v-model:value="formState.energyType" placeholder="请输入报告名称" /> |
||||
|
</a-form-item> |
||||
|
<a-form-item ref="name" label="报告年度" name="energyType"> |
||||
|
<a-date-picker v-model:value="value5" picker="year" /> |
||||
|
</a-form-item> |
||||
|
<a-form-item ref="name" label="适用标准" name="energyType"> |
||||
|
<a-input v-model:value="formState.energyType" placeholder="请输入适用标准" /> |
||||
|
</a-form-item> |
||||
|
<a-form-item label="报告周期" name="emissionType" :required="isRequired"> |
||||
|
<a-select v-model:value="formState.emissionType" placeholder="请选择排放类型"> |
||||
|
<a-select-option v-for="(item, index) in emissionTypeDic" :key="index" :value="item.id"> |
||||
|
{{ item.cnValue }} |
||||
|
</a-select-option> |
||||
|
</a-select> |
||||
|
</a-form-item> |
||||
|
<a-form-item ref="name" label="适用标准" name="energyType"> |
||||
|
<a-range-picker v-model:value="value4" picker="month" /> |
||||
|
</a-form-item> |
||||
|
</a-form> |
||||
|
<template #footer> |
||||
|
<a-button style="margin-right: 8px" @click="onClose">取消</a-button> |
||||
|
<a-button type="primary" @click="onSubmit">确定</a-button> |
||||
|
</template> |
||||
|
</a-drawer> |
||||
|
</template> |
||||
|
|
||||
|
<script lang="ts" setup> |
||||
|
import { ref } from 'vue'; |
||||
|
import { http } from '/nerv-lib/util/http'; |
||||
|
import { carbonEmissionFactorLibrary } from '/@/api/carbonEmissionFactorLibrary'; |
||||
|
defineOptions({ name: 'CarbonInventoryCheck' }); |
||||
|
const orgId = ref(''); |
||||
|
const result = JSON.parse(sessionStorage.getItem('ORGID')!); |
||||
|
orgId.value = result; |
||||
|
const fetch = (api, params = { orgId }) => { |
||||
|
return http.post(api, params); |
||||
|
}; |
||||
|
// 判断展示哪个页面 |
||||
|
const isMainPage = ref(false); |
||||
|
const fillInPage = ref(true); |
||||
|
// 新增相关数据 |
||||
|
const visible = ref(false); |
||||
|
const formState = ref({}) |
||||
|
const formRef = ref(); |
||||
|
const labelCol = { span: 5 }; |
||||
|
const wrapperCol = { span: 19 }; |
||||
|
// 定义form表单的必填 |
||||
|
const rules: Record<string, Rule[]> = { |
||||
|
energyType: [{ required: true, message: '请输入能源种类', trigger: 'change' }], |
||||
|
isComputeCarbon: [{ required: true, message: '请选择是否计算碳排', trigger: 'change' }] |
||||
|
}; |
||||
|
// 关闭新增抽屉 |
||||
|
const onClose = () => { |
||||
|
visible.value = false; |
||||
|
formState.value = {} |
||||
|
formRef.value.resetFields(); |
||||
|
}; |
||||
|
// 表格相关数据 |
||||
|
const tableConfig = ref({ |
||||
|
title: '数据库', |
||||
|
api: carbonEmissionFactorLibrary.getTableList, |
||||
|
params: { |
||||
|
orgId |
||||
|
}, |
||||
|
headerActions: [ |
||||
|
{ |
||||
|
label: '新增', |
||||
|
name: 'userAdd', |
||||
|
type: 'primary', |
||||
|
handle: () => { |
||||
|
visible.value = true |
||||
|
}, |
||||
|
}, |
||||
|
], |
||||
|
columns: [ |
||||
|
{ |
||||
|
title: '序号', |
||||
|
customRender: (text: any) => { |
||||
|
return text.index + 1; |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
title: '企业名称', |
||||
|
dataIndex: 'emissionSources', |
||||
|
}, |
||||
|
{ |
||||
|
title: '报告名称', |
||||
|
dataIndex: 'emissionTypeColumn', |
||||
|
}, |
||||
|
{ |
||||
|
title: '报告年度', |
||||
|
dataIndex: 'emissionGas', |
||||
|
}, |
||||
|
{ |
||||
|
title: '适用标准', |
||||
|
dataIndex: 'emissionProcess', |
||||
|
}, |
||||
|
{ |
||||
|
title: '更新人', |
||||
|
dataIndex: 'emissionFactors', |
||||
|
}, |
||||
|
{ |
||||
|
title: '更新时间', |
||||
|
dataIndex: 'emissionFactorUnits', |
||||
|
}, |
||||
|
], |
||||
|
columnActions: { |
||||
|
title: '操作', |
||||
|
actions: [ |
||||
|
{ |
||||
|
label: '编辑', |
||||
|
name: 'userEdit', |
||||
|
handle: (record: any) => { |
||||
|
visible.value = true |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '填报', |
||||
|
name: 'fillIn', |
||||
|
handle: (record: any) => { |
||||
|
isMainPage.value = false |
||||
|
fillInPage.value = true |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '下载', |
||||
|
name: 'download', |
||||
|
handle: (record: any) => { |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '删除', |
||||
|
name: 'userDelete', |
||||
|
dynamicParams: { ids: 'id[]' }, |
||||
|
confirm: true, |
||||
|
isReload: true, |
||||
|
api: carbonEmissionFactorLibrary.del, |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
formConfig: { |
||||
|
schemas: [ |
||||
|
{ |
||||
|
field: 'emissionSources', |
||||
|
label: '报告名称', |
||||
|
component: 'NsInput', |
||||
|
componentProps: { |
||||
|
placeholder: '请输入报告名称', |
||||
|
maxLength: 30, |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
field: 'createTime1', |
||||
|
label: '采购日期', |
||||
|
component: 'NsRangePicker', |
||||
|
fieldMap: ['purchaseBeginDate', 'purchaseEndDate'], |
||||
|
componentProps: { |
||||
|
valueFormat: 'YYYY-MM-DD', |
||||
|
placeholder: ['报告年度', '报告年度'], |
||||
|
}, |
||||
|
}, |
||||
|
], |
||||
|
params: {}, |
||||
|
}, |
||||
|
rowKey: 'id', |
||||
|
}); |
||||
|
// 填报页 |
||||
|
</script> |
||||
|
|
||||
|
<style lang="less" scoped> |
||||
|
|
||||
|
</style> |
@ -0,0 +1,45 @@ |
|||||
|
import { ref } from 'vue'; |
||||
|
import { origanizemanage } from '/@/api/origanizemanage'; |
||||
|
import { http } from '/nerv-lib/saas'; |
||||
|
|
||||
|
export const mockData = ref([ |
||||
|
{ |
||||
|
id: 3, |
||||
|
zhanghao: 'axb', |
||||
|
name: '张三', |
||||
|
sex: '男', |
||||
|
phone: '123456789', |
||||
|
email: '1234567889', |
||||
|
relation: '1', |
||||
|
role: '1', |
||||
|
status: '1', |
||||
|
}, |
||||
|
]); |
||||
|
|
||||
|
export const mockData2 = ref([ |
||||
|
{ |
||||
|
information: '铁路局1/产品部1/产品总监1', |
||||
|
}, |
||||
|
]); |
||||
|
|
||||
|
export const treeData = ref([ |
||||
|
{ |
||||
|
title: '铁路总局', |
||||
|
key: '0-0', |
||||
|
children: [ |
||||
|
{ title: '济阳站', key: '0-0-0' }, |
||||
|
{ title: '临沂站', key: '0-0-1' }, |
||||
|
], |
||||
|
}, |
||||
|
]); |
||||
|
|
||||
|
export const treeData2 = [ |
||||
|
{ |
||||
|
title: '全部', |
||||
|
key: '0-0', |
||||
|
children: [ |
||||
|
{ title: '产品部', key: '0-0-0' }, |
||||
|
{ title: '运维部', key: '0-0-1' }, |
||||
|
], |
||||
|
}, |
||||
|
]; |
@ -0,0 +1,439 @@ |
|||||
|
// 抽屉 |
||||
|
.drawer-item { |
||||
|
|
||||
|
.light-area, |
||||
|
.circuit-area, |
||||
|
.control-area, |
||||
|
.control-scene-area, |
||||
|
.light-parameters-area { |
||||
|
width: 100%; |
||||
|
margin-top: 20px; |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
} |
||||
|
|
||||
|
.light-area-tab, |
||||
|
.circuit-tab, |
||||
|
.control-tab, |
||||
|
.control-scene-tab, |
||||
|
.light-parameters-tab { |
||||
|
width: 5px; |
||||
|
height: 23px; |
||||
|
opacity: 1; |
||||
|
background: rgba(26, 174, 251, 1); |
||||
|
margin-right: 4px; |
||||
|
} |
||||
|
|
||||
|
.light-area-text, |
||||
|
.circuit-text, |
||||
|
.control-text, |
||||
|
.control-scene-text, |
||||
|
.light-parameters-text { |
||||
|
font-size: 14px; |
||||
|
color: white; |
||||
|
padding-left: 5px; |
||||
|
line-height: 23px; |
||||
|
width: 110px; |
||||
|
height: 23px; |
||||
|
background: linear-gradient(270deg, rgba(86, 221, 253, 0) 0%, rgba(25, 176, 255, 1) 100%); |
||||
|
user-select: none; |
||||
|
} |
||||
|
|
||||
|
.light-area-tab, |
||||
|
.light-area-text { |
||||
|
display: inline-block; |
||||
|
justify-content: center; |
||||
|
} |
||||
|
|
||||
|
.plan.enabled { |
||||
|
border: none; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
border-radius: 5px; |
||||
|
vertical-align: top; |
||||
|
margin-left: 235px; |
||||
|
width: 88px; |
||||
|
height: 32px; |
||||
|
background: linear-gradient(180deg, rgba(103, 222, 0, 1) 0%, rgba(0, 181, 6, 1) 100%); |
||||
|
color: white; |
||||
|
} |
||||
|
|
||||
|
.plan.disabled { |
||||
|
border: none; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
border-radius: 5px; |
||||
|
color: white; |
||||
|
vertical-align: top; |
||||
|
margin-left: 235px; |
||||
|
width: 88px; |
||||
|
height: 32px; |
||||
|
background-color: red; |
||||
|
} |
||||
|
|
||||
|
.plan:disabled { |
||||
|
cursor: not-allowed; |
||||
|
} |
||||
|
|
||||
|
.openPlan.enabled2 { |
||||
|
border: none; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
border-radius: 5px; |
||||
|
color: white; |
||||
|
vertical-align: top; |
||||
|
width: 88px; |
||||
|
height: 32px; |
||||
|
background: linear-gradient(180deg, rgba(103, 222, 0, 1) 0%, rgba(0, 181, 6, 1) 100%); |
||||
|
color: white; |
||||
|
} |
||||
|
|
||||
|
.openPlan.disabled2 { |
||||
|
border: none; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
border-radius: 5px; |
||||
|
color: white; |
||||
|
vertical-align: top; |
||||
|
width: 88px; |
||||
|
height: 32px; |
||||
|
background-color: red; |
||||
|
} |
||||
|
|
||||
|
.openPlan:disabled { |
||||
|
cursor: not-allowed; |
||||
|
} |
||||
|
|
||||
|
.btn2 { |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
margin-left: 80px; |
||||
|
} |
||||
|
|
||||
|
.openzm { |
||||
|
cursor: pointer; |
||||
|
color: rgba(34, 183, 255, 1); |
||||
|
margin-left: 20px; |
||||
|
font-size: 14px; |
||||
|
} |
||||
|
|
||||
|
.custom-checkbox { |
||||
|
width: 13px; |
||||
|
height: 13px; |
||||
|
} |
||||
|
|
||||
|
.both { |
||||
|
width: 59.79px; |
||||
|
height: 32px; |
||||
|
opacity: 1; |
||||
|
background: linear-gradient(180deg, |
||||
|
rgba(255, 187, 0, 1) 0%, |
||||
|
rgba(255, 112, 3, 1) 91.21%, |
||||
|
rgba(255, 129, 3, 1) 100%); |
||||
|
margin-left: 8px; |
||||
|
font-size: 12px; |
||||
|
color: white; |
||||
|
border: none; |
||||
|
border-radius: 5px; |
||||
|
} |
||||
|
|
||||
|
.btn2 { |
||||
|
button { |
||||
|
margin: 0 5px; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.allBtn { |
||||
|
border: 0; |
||||
|
width: 40px; |
||||
|
color: white; |
||||
|
background-color: transparent; |
||||
|
} |
||||
|
|
||||
|
.blue-background.ant-switch-checked { |
||||
|
background-color: linear-gradient(180deg, |
||||
|
rgba(1, 206, 255, 1) 0%, |
||||
|
rgba(0, 150, 229, 1) 100%) !important; |
||||
|
} |
||||
|
|
||||
|
.grey-background.ant-switch { |
||||
|
background-color: grey !important; |
||||
|
} |
||||
|
|
||||
|
.blue-background.ant-switch-checked .ant-switch-handle { |
||||
|
background-color: linear-gradient(180deg, |
||||
|
rgba(1, 206, 255, 1) 0%, |
||||
|
rgba(0, 150, 229, 1) 100%) !important; |
||||
|
} |
||||
|
|
||||
|
.grey-background.ant-switch .ant-switch-handle { |
||||
|
background-color: grey !important; |
||||
|
} |
||||
|
|
||||
|
p { |
||||
|
color: white; |
||||
|
} |
||||
|
|
||||
|
.area, |
||||
|
.btnArea, |
||||
|
.control-mode-btn-area, |
||||
|
.control-scene-btn-area { |
||||
|
margin-left: -17px; |
||||
|
|
||||
|
button { |
||||
|
width: 21%; |
||||
|
padding: 0 2%; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.btn { |
||||
|
width: 92px; |
||||
|
height: 40px; |
||||
|
border-radius: 4px; |
||||
|
opacity: 1; |
||||
|
margin-top: 10px; |
||||
|
margin-left: 17px; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
opacity: 1; |
||||
|
border: 1px solid rgba(207, 212, 219, 1); |
||||
|
line-height: 20.27px; |
||||
|
color: white; |
||||
|
text-align: center; |
||||
|
vertical-align: top; |
||||
|
background-color: rgba(255, 255, 255, 0.1); |
||||
|
} |
||||
|
|
||||
|
.selected { |
||||
|
background: linear-gradient(180deg, rgba(201, 245, 255, 1) 0%, rgba(138, 215, 255, 1) 100%); |
||||
|
color: rgba(0, 61, 90, 1); |
||||
|
border: 1px solid white; |
||||
|
} |
||||
|
|
||||
|
.btn:hover { |
||||
|
background-color: rgba(207, 212, 219, 1); |
||||
|
} |
||||
|
|
||||
|
.btn:active { |
||||
|
background-color: rgba(102, 102, 102, 1); |
||||
|
color: white; |
||||
|
} |
||||
|
|
||||
|
.circuit-area, |
||||
|
.control-scene-area, |
||||
|
.light-parameters-area { |
||||
|
left: 51px; |
||||
|
width: 100%; |
||||
|
margin-top: 20px; |
||||
|
} |
||||
|
|
||||
|
.circuit-tab, |
||||
|
.circuit-text { |
||||
|
display: inline-block; |
||||
|
} |
||||
|
|
||||
|
.batch { |
||||
|
width: 60px; |
||||
|
height: 32px; |
||||
|
opacity: 1; |
||||
|
border: 1px solid rgba(67, 136, 251, 1); |
||||
|
color: rgba(67, 136, 251, 1); |
||||
|
border-radius: 5px; |
||||
|
background-color: white; |
||||
|
margin-left: 11px; |
||||
|
} |
||||
|
|
||||
|
.control-area { |
||||
|
left: 51px; |
||||
|
width: 100%; |
||||
|
margin-top: 20px; |
||||
|
} |
||||
|
|
||||
|
.control-tab, |
||||
|
.control-text { |
||||
|
display: inline-block; |
||||
|
} |
||||
|
|
||||
|
:deep(.cell) { |
||||
|
text-align: center; |
||||
|
} |
||||
|
|
||||
|
:deep(#pane-first) { |
||||
|
height: 100%; |
||||
|
} |
||||
|
|
||||
|
.control-scene-tab, |
||||
|
.control-scene-text { |
||||
|
display: inline-block; |
||||
|
} |
||||
|
|
||||
|
.light-parameters-tab, |
||||
|
.light-parameters-text { |
||||
|
display: inline-block; |
||||
|
} |
||||
|
|
||||
|
.light-parameters-textarea>p { |
||||
|
height: 100%; |
||||
|
display: flex; |
||||
|
border: 1px solid rgba(236, 239, 245, 1); |
||||
|
justify-content: center; |
||||
|
align-items: center; |
||||
|
} |
||||
|
|
||||
|
.bottom { |
||||
|
width: 100%; |
||||
|
height: 64px; |
||||
|
display: flex; |
||||
|
justify-content: flex-end; |
||||
|
align-items: center; |
||||
|
position: fixed; |
||||
|
bottom: 0; |
||||
|
right: 0; |
||||
|
} |
||||
|
|
||||
|
.execute { |
||||
|
margin-right: 20px; |
||||
|
width: 74px; |
||||
|
height: 40px; |
||||
|
opacity: 1; |
||||
|
cursor: pointer; |
||||
|
border-radius: 4px; |
||||
|
background: rgba(67, 136, 251, 1); |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: white; |
||||
|
border: 0; |
||||
|
margin: 0 10px; |
||||
|
} |
||||
|
|
||||
|
.flushed { |
||||
|
width: 74px; |
||||
|
height: 40px; |
||||
|
cursor: pointer; |
||||
|
opacity: 1; |
||||
|
border-radius: 4px; |
||||
|
font-size: 14px; |
||||
|
font-weight: 400; |
||||
|
color: rgba(102, 102, 102, 1); |
||||
|
background: white; |
||||
|
border: 1px solid rgba(193, 197, 204, 1); |
||||
|
margin: 0 10px; |
||||
|
} |
||||
|
|
||||
|
:deep(.ant-table-pagination) { |
||||
|
visibility: hidden; |
||||
|
} |
||||
|
|
||||
|
.drawer-content { |
||||
|
margin-left: 20px; |
||||
|
} |
||||
|
|
||||
|
.arrow-indicator { |
||||
|
position: absolute; |
||||
|
top: 50%; |
||||
|
left: 0; |
||||
|
transform: translateY(-50%); |
||||
|
z-index: 1; |
||||
|
} |
||||
|
|
||||
|
.drawer-title1 { |
||||
|
position: fixed; |
||||
|
width: 33px; |
||||
|
height: 33px; |
||||
|
top: 0; |
||||
|
bottom: 0; |
||||
|
right: 20px; |
||||
|
margin: auto; |
||||
|
z-index: 99999; |
||||
|
} |
||||
|
|
||||
|
.drawer-title2 { |
||||
|
position: fixed; |
||||
|
width: 33px; |
||||
|
height: 33px; |
||||
|
top: 0; |
||||
|
bottom: 0; |
||||
|
right: 495px; |
||||
|
margin: auto; |
||||
|
z-index: 99999; |
||||
|
} |
||||
|
|
||||
|
.arrowbtn { |
||||
|
display: flex; |
||||
|
justify-content: center; |
||||
|
align-items: center; |
||||
|
width: 28px; |
||||
|
height: 28px; |
||||
|
background: rgba(0, 0, 0, 1); |
||||
|
opacity: 0.5; |
||||
|
border: none; |
||||
|
} |
||||
|
|
||||
|
:deep(.ant-tabs-tab-btn) { |
||||
|
color: white; |
||||
|
} |
||||
|
|
||||
|
:deep(.ant-table) { |
||||
|
background-color: transparent; |
||||
|
} |
||||
|
|
||||
|
:deep(.ant-table-bordered) { |
||||
|
background-color: transparent; |
||||
|
} |
||||
|
|
||||
|
:deep(.ant-table-thead) { |
||||
|
background-color: transparent; |
||||
|
} |
||||
|
|
||||
|
:deep(.ant-table-cell) { |
||||
|
background-color: transparent; |
||||
|
color: #fff; |
||||
|
} |
||||
|
|
||||
|
.custom-table { |
||||
|
border-collapse: collapse; |
||||
|
width: 416px; |
||||
|
height: 60px; |
||||
|
color: rgba(255, 255, 255, 1); |
||||
|
} |
||||
|
|
||||
|
.custom-table th, |
||||
|
.custom-table td { |
||||
|
border: 1px solid rgba(163, 192, 243, 1); |
||||
|
text-align: left; |
||||
|
padding: 8px; |
||||
|
text-align: center; |
||||
|
} |
||||
|
|
||||
|
.table1 { |
||||
|
margin-top: 20px; |
||||
|
width: 100%; |
||||
|
cellspacing: 0; |
||||
|
cellpadding: 0; |
||||
|
border: 1px solid rgba(255, 255, 255); |
||||
|
border-radius: 5px; |
||||
|
background: rgba(255, 255, 255, 0.1); |
||||
|
} |
||||
|
|
||||
|
.light-area, |
||||
|
.circuit-area, |
||||
|
.control-area, |
||||
|
.control-scene-area, |
||||
|
.light-parameters-area { |
||||
|
width: 100%; |
||||
|
margin-top: 20px; |
||||
|
display: flex; |
||||
|
align-items: center; |
||||
|
} |
||||
|
|
||||
|
.zmhlbtn { |
||||
|
position: relative; |
||||
|
} |
||||
|
|
||||
|
// 禁用图标 |
||||
|
.anticon-stop { |
||||
|
position: absolute; |
||||
|
right: 3px; |
||||
|
bottom: 3px; |
||||
|
} |
||||
|
} |
File diff suppressed because it is too large
Loading…
Reference in new issue