taskid:110 remark:'commit'

This commit is contained in:
fks-xuxinyue
2024-07-26 15:12:56 +08:00
parent e05a813a1e
commit 744aae1bba
22 changed files with 580 additions and 15 deletions

View File

@@ -0,0 +1,28 @@
<template>
<div class="detailTable">
</div>
<div class="total"> </div>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
import { http } from '/nerv-lib/util/http';
defineOptions({
energyType: 'carbonAssetsDetail', // 与页面路由name一致缓存才可生效
});
const orgId = ref('');
const result = JSON.parse(sessionStorage.getItem('ORGID')!);
orgId.value = result;
const fetch = (api, params = { orgId }) => {
return http.post(api, params);
};
</script>
<style lang="less" scoped>
.detailTable {
height: 80%;
}
.total {
height: 20%;
}
</style>