diff --git a/src/api/advance-boot/bearingCapacity.ts b/src/api/advance-boot/bearingCapacity.ts index 25babf16..b3b5b9cf 100644 --- a/src/api/advance-boot/bearingCapacity.ts +++ b/src/api/advance-boot/bearingCapacity.ts @@ -123,3 +123,11 @@ export function getLineDetailData(data) { params: data }) } +// 承载能力评估_充电站、电加热负荷、电气化铁路承载能力评估 +export function carryCapacityEvaluate(data) { + return createAxios({ + url: '/advance-boot/carrycapacity/carryCapacityEvaluate', + method: 'POST', + data + }) +} diff --git a/src/views/pqs/bearingCapacity/evaluationList/components/charge.vue b/src/views/pqs/bearingCapacity/evaluationList/components/charge.vue index 2865d4f8..c47e73a8 100644 --- a/src/views/pqs/bearingCapacity/evaluationList/components/charge.vue +++ b/src/views/pqs/bearingCapacity/evaluationList/components/charge.vue @@ -1,115 +1,213 @@ diff --git a/src/views/pqs/bearingCapacity/evaluationList/components/policy.vue b/src/views/pqs/bearingCapacity/evaluationList/components/policy.vue index 0e36cdbe..88f33bc1 100644 --- a/src/views/pqs/bearingCapacity/evaluationList/components/policy.vue +++ b/src/views/pqs/bearingCapacity/evaluationList/components/policy.vue @@ -4,18 +4,11 @@ 一键还原 光伏电站承载能力评估策略 - + - + - + - + - + @@ -72,15 +72,106 @@ 取消 + + + 基本信息 + + + + + + + + + + + + + + + + + + + 入网评估报告上传 + + + + + + + + 入网评估结论填报 + + + + + +
+ + + + {{ item.name }} + + + +
+ + + + + +
+ + + +
+
+ 提交 + 保存 + 取消 +
+
+ + diff --git a/src/views/pqs/supervise/technology/components/overview.vue b/src/views/pqs/supervise/technology/components/overview.vue index 446e809d..28d99d04 100644 --- a/src/views/pqs/supervise/technology/components/overview.vue +++ b/src/views/pqs/supervise/technology/components/overview.vue @@ -13,8 +13,8 @@
- - + +
diff --git a/src/views/pqs/supervise/terminal/components/add.vue b/src/views/pqs/supervise/terminal/components/add.vue new file mode 100644 index 00000000..8209c435 --- /dev/null +++ b/src/views/pqs/supervise/terminal/components/add.vue @@ -0,0 +1,26 @@ + + + diff --git a/src/views/pqs/supervise/terminal/components/networkTab.vue b/src/views/pqs/supervise/terminal/components/networkTab.vue index f32eb0f5..453125cf 100644 --- a/src/views/pqs/supervise/terminal/components/networkTab.vue +++ b/src/views/pqs/supervise/terminal/components/networkTab.vue @@ -36,7 +36,7 @@
+ + @@ -54,6 +56,7 @@ import { ref, onMounted, provide, nextTick } from 'vue' import TableStore from '@/utils/tableStore' import Table from '@/components/table/index.vue' import TableHeader from '@/components/table/header/index.vue' +import newlyIncreased from './add.vue' import { ElMessage, ElMessageBox } from 'element-plus' import { mainHeight } from '@/utils/layout' import { useDictData } from '@/stores/dictData' @@ -75,7 +78,7 @@ const uploadData = [ const dialogVisible = ref(false) const TableHeaderRef = ref() -const title = ref('') +const addRef = ref() const ruleFormRef = ref() const tableStore = new TableStore({ @@ -84,7 +87,7 @@ const tableStore = new TableStore({ method: 'POST', column: [ { width: '60', type: 'checkbox' }, - + { field: 'orgName', title: '所属单位' }, { field: 'id', title: '终端编号' }, { field: 'name', title: '终端名称' }, @@ -140,6 +143,13 @@ tableStore.table.params.searchValue = '' tableStore.table.params.type = '' provide('tableStore', tableStore) + +const add = () => { + addRef.value.open({ + title: '新增' + }) +} + onMounted(() => { tableStore.index() })