123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <template>
- <div class="hc-layout-box">
- <div class="hc-layout-left-box" :style="'width:' + leftWidth + 'px;'" v-if="sbTableKey !== 'weather'">
- <div class="hc-project-box">
- <div class="hc-project-icon-box">
- <HcIcon name="stack"/>
- </div>
- <div class="ml-2 project-name-box">
- <span class="text-xl text-cut project-alias">{{projectInfo['projectAlias']}}</span>
- <div class="text-xs text-cut project-name">{{projectInfo['name']}}</div>
- </div>
- </div>
- <div class="hc-tree-box">
- <el-scrollbar>
- <WbsTree :autoExpandKeys="treeAutoExpandKeys" :projectId="projectId" :contractId="contractId" @nodeTap="nodeWbsElTreeClick"/>
- </el-scrollbar>
- </div>
- <!--左右拖动-->
- <div class="horizontal-drag-line" @mousedown="onmousedown"/>
- </div>
- <div class="hc-layout-content-box ledger-write-box">
- <HcTabsSimple :datas="sbTableData" :cur="sbTableKey" @tabClick="sbTableClick">
- <template #tab-internal>
- <HcInternal v-if="sbTableKey === 'internal'" :projectId="projectId" :contractId="contractId" :treeData="nodeDataInfo"/>
- </template>
- <template #tab-construction>
- <HcConstruction v-if="sbTableKey === 'construction'" :projectId="projectId" :contractId="contractId" :treeData="nodeDataInfo"/>
- </template>
- <template #tab-weather>
- <HcWeather v-if="sbTableKey === 'weather'" :projectId="projectId" :contractId="contractId"/>
- </template>
- </HcTabsSimple>
- </div>
- </div>
- </template>
- <script setup>
- import {onMounted, ref, watch} from 'vue'
- import {useAppStore} from "~src/store";
- import {useRouter, useRoute} from 'vue-router'
- import WbsTree from "./components/WbsTree.vue"
- import HcInternal from "./components/internal.vue"
- import HcWeather from "./components/weather.vue"
- import HcConstruction from "./components/construction.vue"
- import {getStoreData, setStoreData} from '~src/utils/storage'
- //变量
- const router = useRouter()
- const useRoutes = useRoute()
- const useAppState = useAppStore()
- const projectId = ref(useAppState.getProjectId);
- const contractId = ref(useAppState.getContractId);
- const projectInfo = ref(useAppState.getProjectInfo);
- const isCollapse = ref(useAppState.getCollapse)
- //路由参数
- const routerQuery = useRoutes?.query;
- const dataType = routerQuery?.type || 'weather';
- //监听
- watch(() => [
- useAppState.getCollapse
- ], ([Collapse]) => {
- isCollapse.value = Collapse
- })
- //自动展开缓存
- const treeAutoExpandKeys = ref([])
- //类型处理
- const sbTableKey = ref(dataType)
- const sbTableData = ref([
- {icon: 'bar-chart-box', label: '内业台账', key: 'internal'},
- {icon: 'tools', label: '施工台账', key: 'construction'},
- {icon: 'sun-cloudy', label: '天气台账', key: 'weather'},
- ])
- const sbTableClick = (key) => {
- sbTableKey.value = key
- router.push({
- path: useRoutes.path,
- query: {type: key}
- })
- getTypeData(key)
- }
- //加载完成
- onMounted(() => {
- getTypeData(dataType)
- })
- //根据类型获取相关数据
- const getTypeData = (key) => {
- if (key === 'internal' || key === 'construction') {
- treeAutoExpandKeys.value = getStoreData('ledgerWriteTreeKeys') || []
- }
- }
- //树被点击
- const nodeDataInfo = ref({})
- const nodeWbsElTreeClick = ({data, keys}) => {
- nodeDataInfo.value = data
- setStoreData('ledgerWriteTreeKeys',keys)
- treeAutoExpandKeys.value = keys || []
- }
- //左右拖动,改变树形结构宽度
- const leftWidth = ref(382);
- const onmousedown = () => {
- const leftNum = isCollapse.value ? 142 : 272
- document.onmousemove = (ve) => {
- const diffVal = ve.clientX - leftNum;
- if(diffVal >= 310 && diffVal <= 900) {
- leftWidth.value = diffVal;
- }
- }
- document.onmouseup = () => {
- document.onmousemove = null;
- document.onmouseup = null;
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "../../styles/ledger/write.scss";
- </style>
- <style lang="scss">
- .hc-layout-box .hc-layout-content-box.ledger-write-box .hc-card-box.el-card {
- border-radius: 0 var(--el-card-border-radius) var(--el-card-border-radius) var(--el-card-border-radius);
- height: calc(100% - 44px);
- }
- </style>
|