123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- <template>
- <hc-new-drawer v-model="isShow" is-close to-id="hc-project-list">
- <div class="hc-project-wbs-tree flex">
- <div class="header hc-flex">
- <div class="name flex-1">{{ typeLable }} - {{ projectInfo.projectName }}</div>
- <div class="hc-flex">
- <el-button hc-btn type="success">数据同步</el-button>
- <el-button hc-btn type="primary">表单设置</el-button>
- <el-button hc-btn type="danger">节点参数</el-button>
- <el-button hc-btn color="#626aef">独立表单库</el-button>
- <el-button hc-btn type="warning">归档文件时间</el-button>
- </div>
- </div>
- <div class="body">
- <hc-body split padding="8px">
- <template #left>
- <hc-new-card v-loading="isTreeLoading" title="工程节点信息" scrollbar class="is-tree">
- <template #search>
- <hc-search-input v-model="searchTree.queryValue" @search="searchTreeClick">
- <template #prepend>
- <el-select v-model="searchTree.type" placeholder="类型" class="w-[75px]">
- <el-option label="节点" value="1" />
- <el-option label="表名" value="2" />
- </el-select>
- </template>
- </hc-search-input>
- </template>
- <hc-data-tree
- v-if="isSearchTree" :h-props="treeProps" :datas="treeLoadData" tree-key="id" :auto-expand-keys="treeExpandKeys"
- :menus="treeMenus" @menu-tap="treeMenuClick" @node-tap="treeNodeClick"
- />
- <hc-lazy-tree
- v-else :h-props="treeProps" tree-key="id" :auto-expand-keys="treeExpandKeys"
- :menus="treeMenus" @load="treeLoadNode" @menu-tap="treeMenuClick" @node-tap="treeNodeClick"
- />
- </hc-new-card>
- </template>
- <div :id="`hc_body_top_${uuid}`" class="body-top">
- <hc-body padding="0px">
- <hc-new-card title="节点信息">
- <hc-table is-new :column="nodeTableColumn" :datas="nodeTableData">
- <template #nodeType="{ row }">{{ getDictionaryName(nodeTypelist, row.nodeType, true) }}</template>
- </hc-table>
- </hc-new-card>
- </hc-body>
- </div>
- <div :id="`hc_body_content_${uuid}`" class="body-content">
- <hc-body padding="0px">
- <hc-new-card title="当前项目信息表">
- 当前项目信息表
- </hc-new-card>
- </hc-body>
- </div>
- </hc-body>
- </div>
- </div>
- </hc-new-drawer>
- </template>
- <script setup>
- import { ref, watch } from 'vue'
- import { useAppStore } from '~src/store'
- import { delMessage, getStore, setStore } from 'hc-vue3-ui'
- import { getArrValue, getObjValue, getRandom, isNullES } from 'js-fast-way'
- import { getDictionaryData, setSplit } from '~uti/tools'
- import mainApi from '~api/project/project'
- import wbsTreeApi from '~api/wbs/tree'
- import wbsPrivateApi from '~api/wbs/private'
- const props = defineProps({
- type: {
- type: [String, Number],
- default: '1',
- },
- info: {
- type: Object,
- default: () => ({}),
- },
- })
- //事件
- const emit = defineEmits(['change', 'close'])
- //双向绑定
- // eslint-disable-next-line no-undef
- const isShow = defineModel('modelValue', {
- default: false,
- })
- const store = useAppStore()
- //监听数据
- const isType = ref(props.type)
- const projectInfo = ref(props.info)
- watch(() => [
- props.type,
- props.info,
- ], ([type, info]) => {
- isType.value = type
- projectInfo.value = info
- }, { deep: true })
- //监听显示
- watch(isShow, (val) => {
- if (val) {
- getProjectData()
- setSplitRef()
- } else {
- projectInfo.value = {}
- isType.value = ''
- emit('close')
- }
- })
- //初始化设置拖动分割线
- const uuid = getRandom(4)
- const setSplitRef = () => {
- setSplit(['#hc_body_top_' + uuid, '#hc_body_content_' + uuid], {
- direction: 'vertical',
- sizes: [25, 75],
- snapOffset: 0,
- })
- }
- //获取项目信息
- const typeLable = ref('')
- const wbsId = ref('')
- const getProjectData = () => {
- const type = isType.value ?? 1
- const wbsArr = ['WBS树管理', '实验划分', '计量管理', '日志树管理', '征拆划分']
- typeLable.value = wbsArr[Number(type) - 1]
- const wbsIds = [
- 'referenceWbsTemplateId', 'referenceWbsTemplateIdTrial',
- 'referenceWbsTemplateIdMeter', 'referenceLogWbsTemplateId',
- 'referenceWbsTemplateIdLar',
- ]
- wbsId.value = projectInfo.value[wbsIds[Number(type) - 1]]
- console.log('info: ', projectInfo.value)
- getNodeTypelist(Number(type) - 1)
- }
- //获取节点类型
- const nodeTypelist = ref([])
- const getNodeTypelist = async (type) => {
- const types = ['wbs_node_type', 'trial_node_type', 'meter_node_type', 'wbs_node_type', 'lar_node_type']
- const data = await getDictionaryData(types[type])
- nodeTypelist.value = getArrValue(data)
- }
- //获取字典里的数据
- const getDictionaryName = (arr, id, name) => {
- const item = arr.find((item) => item.value === id)
- return name ? item?.label : getObjValue(item)
- }
- //树节点搜索
- const isSearchTree = ref(false)
- const isTreeLoading = ref(false)
- const searchTree = ref({ queryValue: '', type: '1' })
- const searchTreeClick = () => {
- const { queryValue } = searchTree.value
- isSearchTree.value = !isNullES(queryValue)
- getTreeLoadData()
- }
- //获取搜索树的数据
- const treeLoadData = ref([])
- const getTreeLoadData = async () => {
- isTreeLoading.value = true
- const { data } = await wbsTreeApi.getQueryValueByType({
- ...searchTree.value,
- wbsId: wbsId.value,
- projectId: projectInfo.value.id,
- })
- treeLoadData.value = getArrValue(data)
- isTreeLoading.value = false
- }
- //树属性
- const treeExpandKeys = ref(getStore('project-wbs-tree-expand-keys') || [])
- const treeProps = {
- children: 'children',
- label: 'title',
- isLeaf: ({ hasChildren, isExistForm, majorDataType, nodeType }) => {
- let tag = false
- if (!hasChildren) {
- tag = true
- }
- if (isExistForm === 1) {
- tag = true
- }
- if (nodeType >= 6 && nodeType <= 13) {
- tag = true
- }
- //中间交工。开工报告、质量评定)
- if (majorDataType >= 1 && majorDataType <= 3) {
- tag = true
- }
- return tag
- },
- }
- //树的右键菜单
- const treeMenus = [
- { icon: 'draft', label: '编辑节点', key: 'edit' },
- { icon: 'refresh', label: '同步新增元素表单', key: 'sync1' },
- { icon: 'loop-left', label: '同步元素表单排序到合同段', key: 'sync3' },
- { icon: 'loop-right', label: '同步节点基础信息及表单URL', key: 'sync2' },
- { icon: 'sort-asc', label: '调整排序', key: 'sort' },
- { icon: 'delete-bin', label: '删除节点', key: 'del' },
- ]
- //菜单被点击
- const treeMenuClick = ({ key, node, data, keys }) => {
- }
- //懒加载树
- const treeLoadNode = async ({ item, level }, resolve) => {
- let pid = level !== 0 ? item.id : 0
- const { data } = await wbsPrivateApi.getLazytree({
- wbsId: wbsId.value,
- parentId: pid,
- tenantId: store.tenantId,
- projectId: projectInfo.value.id,
- wbsType: isType.value,
- })
- resolve(getArrValue(data))
- }
- //节点信息
- const nodeTableColumn = ref([
- { key: 'nodeName', name: '当前节点' },
- { key: 'nodeType', name: '节点类型' },
- { key: 'parentName', name: '上级节点' },
- ])
- const nodeTableData = ref([])
- //节点被点击
- const treeItem = ref({})
- const treeNodeClick = ({ node, data, keys }) => {
- //获取父节点名称
- let parentName = ''
- if (node?.parent?.data) {
- parentName = node.parent.data.title ?? ''
- }
- data.parentName = parentName
- //设置相关数据
- treeItem.value = getObjValue(data)
- setStore('project-wbs-tree-expand-keys', keys)
- treeExpandKeys.value = getArrValue(keys)
- //获取节点详情
- getTreeDetail(data.id, parentName)
- }
- //获取节点详情
- const treeInfo = ref({})
- const getTreeDetail = async (id, parentName) => {
- const { data } = await wbsPrivateApi.detail({
- id,
- wbsId: wbsId.value,
- projectId: projectInfo.value.id,
- })
- const res = getObjValue(data)
- res.parentName = parentName
- treeInfo.value = res
- nodeTableData.value = [res]
- }
- </script>
- <style scoped lang="scss">
- .hc-project-wbs-tree {
- position: relative;
- background: #ececec;
- border-radius: 4px;
- height: 100%;
- flex-direction: column;
- overflow: hidden;
- .header {
- color: white;
- background: #54565A;
- padding: 10px 14px;
- flex-shrink: 0;
- .name {
- white-space:nowrap;
- overflow:hidden;
- text-overflow:ellipsis;
- }
- }
- .body {
- flex: 1;
- flex-basis: auto;
- position: relative;
- }
- }
- </style>
- <style lang="scss">
- .hc-project-wbs-tree .body .hc-page-split-content {
- position: relative;
- .body-top {
- position: relative;
- height: 166px;
- }
- .body-content {
- position: relative;
- height: calc(100% - 166px);
- }
- }
- </style>
|