123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833 |
- <template>
- <hc-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-dropdown trigger="click">
- <el-button hc-btn type="success">
- <span>数据同步</span>
- <hc-icon name="arrow-down-s" />
- </el-button>
- <template #dropdown>
- <el-dropdown-menu>
- <template v-for="item in dataSyncMenu" :key="item.key">
- <el-dropdown-item @click="dataSyncMenuClick(item)">{{ item.name }}</el-dropdown-item>
- </template>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- <el-button v-if="isFormSet" class="ml-3" hc-btn type="primary" @click="setIsFormSetValue">表单设置</el-button>
- <el-button v-else class="ml-3" hc-btn type="primary" @click="setIsFormSetValue">元素设置</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-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="类型" style="width: 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-card>
- </template>
- <template v-if="isFormSet">
- <div class="body-top">
- <hc-card title="节点信息">
- <hc-table :is-index="false" :column="nodeTableColumn" :datas="nodeTableData">
- <template #nodeType="{ row }">{{ getDictionaryName(nodeTypelist, row.nodeType, true) }}</template>
- </hc-table>
- </hc-card>
- </div>
- <div class="body-content">
- <hc-card title="当前项目信息表">
- <template #extra>
- <el-button hc-btn type="primary" :disabled="infoTableData.length <= 0">编辑</el-button>
- <el-button hc-btn type="success" :disabled="infoTableData.length <= 0">排序</el-button>
- </template>
- <hc-table v-loading="infoTableLoading" :is-index="false" :column="infoTableColumn" :datas="infoTableData">
- <template #tableType="{ row }">{{ getDictionaryName(tableTypelist, row.tableType, true) }}</template>
- <template #tableOwner="{ row }">{{ getDictionaryName(ownerTypeList, row.tableOwner, true) }}</template>
- <template #action="{ row }">
- <el-link type="primary">预览</el-link>
- <el-link v-if="row.status === 1" type="warning">隐藏表单</el-link>
- <el-link v-if="row.status === 0" type="success">取消隐藏</el-link>
- <el-link v-del-com:[delInfoTableRow]="row" type="danger">删除</el-link>
- </template>
- </hc-table>
- </hc-card>
- </div>
- </template>
- <template v-else>
- <hc-card>
- <hc-table v-loading="infoTableLoading" :is-index="false" :column="infoTableColumn1" :datas="infoTableData">
- <template #tableType="{ row }">{{ getDictionaryName(tableTypelist, row.tableType, true) }}</template>
- <template #isLinkTable="{ row }">{{ row.isLinkTable === 2 ? '是' : '否' }}</template>
- <template #tableOwner="{ row }">{{ getDictionaryName(ownerTypeList, row.tableOwner, true) }}</template>
- <template #action="{ row }">
- <el-link type="success" @click="associationList(row)">关联清表</el-link>
- <el-link v-loading="editElementLoading" type="primary" :disabled="row.excelId === -1 || isNullES(row.excelId)" @click="editElement(row)">编辑元素</el-link>
- <el-link v-loading="adjustExcelLoading" type="warning" :disabled="row.excelId === -1 || isNullES(row.excelId)" @click="adjustExcelClick(row)">调整表单</el-link>
- <el-link type="primary" @click="elementFormulasClick(row)">编辑元素公式</el-link>
- <el-link type="warning">表单同步</el-link>
- <el-link type="primary">关联节点</el-link>
- <el-link v-del-com:[delInfoTableRow]="row" type="danger">删除表单</el-link>
- </template>
- </hc-table>
- </hc-card>
- </template>
- </hc-body>
- </div>
- </div>
- <!-- 编辑节点 -->
- <TreeNodeEditDialog
- v-model="isTreeNodeEditShow" :node="treeInfo" :type="Number(isType)" :wid="wbsId" :pid="projectInfo.id" :tree-props="treeProps"
- :node-type="nodeTypelist" :major-type="majorDataTypeList" @close="treeNodeEditClose" @change="treeNodeEditChange"
- />
- <!-- 节点排序 -->
- <hc-new-dialog v-model="nodeSortModalShow" is-table widths="1100px" title="调整排序" @save="nodeSortModalSave">
- <hc-table
- ui="hc-table-row-drop" :column="nodeSortTableColumn" :datas="nodeSortTableData"
- :loading="nodeSortNodeLoading" is-row-drop quick-sort :index-style="{ width: 80 }"
- @row-drop="nodeSortTableRowDrop" @row-sort="nodeSortTableRowDrop"
- >
- <template #action="{ row, index }">
- <span class="text-xl" :class="index === 0 ? 'text-gray' : 'text-link'" @click="upNodeSortClick(row, index)">
- <hc-icon name="arrow-up" fill />
- </span>
- <span class="ml-2 text-xl" :class="index === (nodeSortTableData.length - 1) ? 'text-gray' : 'text-link'" @click="downNodeSortClick(row, index)">
- <hc-icon name="arrow-down" fill />
- </span>
- </template>
- </hc-table>
- </hc-new-dialog>
- <!-- 关联清表 -->
- <HcAssociationList v-model="isAssociationShow" :info="associationInfo" @change="getInfoTableData" />
- <!-- 编辑元素 -->
- <HcEditElement v-model="isEditElementShow" :info="editElementInfo" :data="editElementData" @to-page="editElementToPage" />
- <!-- 调整表单 -->
- <HcAdjustExcel v-model="isAdjustExcelShow" :info="adjustExcelInfo" />
- <!-- 编辑元素公式 -->
- <hc-dialog v-model="elementFormulasShow" is-table widths="600px" :title="elementFormulasName" :footer="false" @close="elementFormulasClose">
- <template #search>
- <hc-search-input v-model="formulaInput" @search="searchFormulaClick" />
- </template>
- <hc-table v-loading="formulaTableLoading" :is-index="false" :is-current-row="false" :column="formulaTableColumn" :datas="formulaTableData">
- <template #action="{ row }">
- <el-link :type="row.globalFormula === 1 ? 'warning' : 'primary'" @click="toFormulaGlobal(row)">全局公式</el-link>
- <el-link v-show="row.hasPartFormula" :type="row.isSaveFormula === 1 ? 'warning' : 'primary'" @click="toFormulaNodes(row)">节点公式</el-link>
- </template>
- </hc-table>
- </hc-dialog>
- <!-- 编辑公式 -->
- <HcEditFormula v-model="isEditFormulaShow" :data="editFormulaData" @finish="editFormulaFinish" />
- </hc-drawer>
- </template>
- <script setup>
- import { nextTick, onDeactivated, ref, watch } from 'vue'
- import { useAppStore } from '~src/store'
- import { HcFirmMsg, getStore, setStore } from 'hc-vue3-ui'
- import { deepClone, getArrValue, getObjValue, isNullES } from 'js-fast-way'
- import { getDictionaryData, reloadPage } from '~uti/tools'
- import TreeNodeEditDialog from './tree-node-edit.vue'
- import HcAdjustExcel from './adjust-excel.vue'
- import HcAssociationList from './association-list.vue'
- import HcEditElement from './edit-element.vue'
- import HcEditFormula from './edit-formula.vue'
- import excelApi from '~api/exctab/exceltab'
- import wbsTreeApi from '~api/wbs/tree'
- import mainApi 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()
- } else {
- //projectInfo.value = {}
- //isType.value = ''
- emit('close')
- }
- })
- //获取项目信息
- 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)
- getTableTypelist(Number(type) - 1)
- getDataTypelist()
- getOwnerTypelist()
- getMajorDataTypeList()
- }
- //获取节点类型
- const nodeTypelist = ref([])
- const getNodeTypelist = async (type) => {
- //计量管理,征拆划分,实验划分,WBS树管理,日志树管理
- 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 tableTypelist = ref([])
- const getTableTypelist = async (type) => {
- //计量管理,征拆划分,实验划分,WBS树管理,日志树管理
- const types = ['table_type', 'trial_table_type', 'table_type', 'table_type', 'table_type']
- const data = await getDictionaryData(types[type])
- tableTypelist.value = getArrValue(data)
- }
- //获取数据类型
- const dataTypeList = ref([])
- const getDataTypelist = async () => {
- const data = await getDictionaryData('data_type')
- dataTypeList.value = getArrValue(data)
- }
- //获取业主类型
- const ownerTypeList = ref([])
- const getOwnerTypelist = async () => {
- const data = await getDictionaryData('owner_type')
- ownerTypeList.value = getArrValue(data)
- }
- //获取类型字典
- const majorDataTypeList = ref([])
- const getMajorDataTypeList = async () => {
- const data = await getDictionaryData('major_data_type')
- majorDataTypeList.value = getArrValue(data)
- }
- //获取字典里的数据
- const getDictionaryName = (arr, id, name) => {
- if (isNullES(id)) return name ? '' : {}
- const item = arr.find((item) => item.value === Number(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: 'arrow-up-down', label: '调整排序', key: 'rank' },
- { icon: 'delete-bin', label: '删除节点', key: 'del' },
- ]
- //菜单被点击
- const treeMenuItem = ref({})
- const treeMenuClick = async ({ key, node, data }) => {
- if (key === 'edit') { //编辑节点
- data.parentName = node?.parent?.data?.title ?? '' //获取父节点名称
- treeItem.value = data
- await getTreeDetail()
- await nextTick()
- isTreeNodeEditShow.value = true
- } else if (key === 'sync1') {
- const { primaryKeyId, pKeyId } = data
- const pid = primaryKeyId ? primaryKeyId : pKeyId
- if (isNullES(pid)) {
- window.$message.warning('参数异常,请稍后重试')
- return
- }
- //同步新增元素表单
- await HcFirmMsg({
- text: `是否同步节点【${data.title}】?`,
- loadingText: '数据同步中...',
- }, (resolve) => {
- const { isRes } = mainApi.syncNodeTable(pid)
- resolve() //关闭弹窗
- if (!isRes) return
- window.$message.success('同步成功')
- getInfoTableData()
- })
- } else if (key === 'sync3') {
- const { id } = projectInfo.value
- if (isNullES(id)) {
- window.$message.warning('参数异常,请稍后重试')
- return
- }
- //同步元素表单排序到合同段
- await HcFirmMsg({
- text: '同步元素表单排序到合同段?',
- loadingText: '数据同步中...',
- }, (resolve) => {
- const { isRes } = mainApi.syncContractTabSort(id)
- resolve() //关闭弹窗
- if (!isRes) return
- window.$message.success('同步成功')
- getInfoTableData()
- })
- } else if (key === 'sync2') {
- const { primaryKeyId, pKeyId } = data
- const pid = primaryKeyId ? primaryKeyId : pKeyId
- if (isNullES(pid)) {
- window.$message.warning('参数异常,请稍后重试')
- return
- }
- //同步节点基础信息及表单URL
- await HcFirmMsg({
- text: `是否同步节点【${data.title}】到合同段?`,
- loadingText: '数据同步中...',
- }, (resolve) => {
- const { isRes } = mainApi.syncNodeinfo(pid)
- resolve() //关闭弹窗
- if (!isRes) return
- window.$message.success('同步成功')
- getInfoTableData()
- })
- } else if (key === 'rank') {
- const { parentId } = data
- const { id } = projectInfo.value
- if (isNullES(id) || isNullES(wbsId.value)) {
- window.$message.warning('参数异常,请稍后重试')
- return
- }
- //调整排序
- nodeSortModalShow.value = true
- nodeSortNodeLoading.value = true
- const { data: apiData } = await wbsTreeApi.findWbsTreePrivateSameLevel({
- parentId: parentId,
- projectId: id,
- wbsId: wbsId.value,
- })
- nodeSortNodeLoading.value = false
- nodeSortTableData.value = getArrValue(apiData)
- } else if (key === 'del') {
- if (node.level <= 1) {
- window.$message.warning('当前节点无法删除')
- return
- }
- const { primaryKeyId, pKeyId } = data
- const pid = primaryKeyId ? primaryKeyId : pKeyId
- if (isNullES(pid)) {
- window.$message.warning('参数异常,请稍后重试')
- return
- }
- //删除节点
- await HcFirmMsg({
- text: `此操作将删除节点【${data.title}】,是否继续?`,
- loadingText: '删除节点中...',
- }, (resolve) => {
- const { isRes } = mainApi.del(pid)
- resolve() //关闭弹窗
- if (!isRes) return
- window.$message.success('删除成功')
- reloadPage()
- })
- }
- }
- //节点排序
- const nodeSortModalShow = ref(false)
- const nodeSortTableColumn = ref([
- { key:'tableName', name: '节点名称' },
- { key:'action', name: '排序', width: 90 },
- ])
- const nodeSortTableData = ref([])
- const nodeSortNodeLoading = ref(false)
- //拖动完成
- const nodeSortTableRowDrop = (rows) => {
- nodeSortTableData.value = [] // 先清空,否则排序会异常
- nextTick(() => {
- nodeSortTableData.value = rows
- })
- }
- //向上
- const upNodeSortClick = (row, index) => {
- const data = nodeSortTableData.value || []
- if (index !== 0) {
- const tmp = data.splice(index - 1, 1)
- nodeSortTableData.value.splice(index, 0, tmp[0])
- } else {
- window?.$message?.warning('已经处于置顶,无法上移')
- }
- }
- //向下
- const downNodeSortClick = (row, index) => {
- const indexs = index + 1
- const data = nodeSortTableData.value
- if (indexs !== data.length) {
- const tmp = data.splice(indexs, 1)
- nodeSortTableData.value.splice(index, 0, tmp[0])
- } else {
- window?.$message?.warning('已经处于置底,无法下移')
- }
- }
- //节点排序完成
- const nodeSortModalSave = async () => {
- const arr = deepClone(nodeSortTableData.value)
- if (arr.length <= 0) {
- window.$message.warning('数据异常,请稍后重试')
- nodeSortModalShow.value = false
- return
- }
- //处理顺序
- for (let i = 0; i < arr.length; i++) {
- arr[i].sort = i + 1
- }
- //发起请求
- const { isRes } = await wbsTreeApi.wbsTreePrivateSort(arr)
- if (!isRes) return
- window.$message.success('排序完成')
- nodeSortModalShow.value = false
- reloadPage()
- }
- //编辑节点
- const isTreeNodeEditShow = ref(false)
- //编辑节点被关闭
- const treeNodeEditClose = () => {
- isTreeNodeEditShow.value = false
- treeMenuItem.value = {}
- }
- //编辑节点被修改
- const treeNodeEditChange = () => {
- isTreeNodeEditShow.value = false
- treeMenuItem.value = {}
- console.log('编辑节点被修改')
- }
- //懒加载树
- const treeLoadNode = async ({ item, level }, resolve) => {
- let pid = level !== 0 ? item.id : 0
- const { data } = await mainApi.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: '当前节点', align: 'center' },
- { key: 'nodeType', name: '节点类型', align: 'center' },
- { key: 'parentName', name: '上级节点', align: 'center' },
- ])
- 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()
- getInfoTableData()
- }
- //获取节点详情
- const treeInfo = ref({})
- const getTreeDetail = async () => {
- const { id, parentName } = treeItem.value
- const { data } = await mainApi.detail({
- id,
- wbsId: wbsId.value,
- projectId: projectInfo.value.id,
- })
- const res = getObjValue(data)
- res.parentName = parentName
- treeInfo.value = res
- nodeTableData.value = [res]
- }
- //当前项目信息表
- const infoTableLoading = ref(false)
- const infoTableColumn = ref([
- { key: 'tableName', name: '表单名称' },
- { key: 'elementTotal', name: '字段总量', align: 'center', width: 80 },
- { key: 'fillRate', name: '填报率', align: 'center', width: 80 },
- { key: 'tableType', name: '表单类型', align: 'center', width: 100 },
- { key: 'tableOwner', name: '所属方', align: 'center', width: 100 },
- { key: 'action', name: '操作', align: 'center', width: 160 },
- ])
- const infoTableData = ref([])
- const getInfoTableData = async () => {
- const { id } = treeItem.value
- infoTableLoading.value = true
- const { data } = await mainApi.findNodeTableByCondition({
- parentId: id,
- wbsId: wbsId.value,
- projectId: projectInfo.value.id,
- })
- infoTableData.value = getArrValue(data)
- infoTableLoading.value = false
- }
- //当前项目信息表删除
- const delInfoTableRow = async ({ item }, resolve) => {
- const { isRes } = await mainApi.removeTableByCondition({
- id: item.id,
- wbsId: wbsId.value,
- projectId: projectInfo.value.id,
- })
- resolve() //关闭弹窗
- if (!isRes) return
- window.$message.success('删除成功')
- getInfoTableData().then()
- }
- //表单设置
- const isFormSet = ref(true)
- const infoTableColumn1 = ref([
- { key: 'tableName', name: '表单名称' },
- { key: 'tableType', name: '表单类型', align: 'center', width: 80 },
- { key: 'fillRate', name: '填报率', align: 'center', width: 80 },
- { key: 'isLinkTable', name: '关联清表', align: 'center', width: 80 },
- { key: 'tableOwner', name: '所属方', align: 'center', width: 100 },
- { key: 'action', name: '操作', width: 490, align: 'center', fixed: 'right' },
- ])
- const setIsFormSetValue = () => {
- isFormSet.value = !isFormSet.value
- if (isFormSet.value) {
- getTreeDetail()
- }
- getInfoTableData()
- }
- //数据同步按钮菜单
- const dataSyncMenu = [
- { key: 'jdSync', name: '节点参数同步', load:false },
- { key: 'dqSync', name: '电签同步', load:false },
- { key: 'gsSync', name: '公式同步', load:false },
- ]
- const dataSyncMenuClick = (item) => {
- console.log( item)
- }
- // 关联清表
- const isAssociationShow = ref(false)
- const associationInfo = ref({})
- const associationList = async (item) => {
- associationInfo.value = item
- await nextTick()
- isAssociationShow.value = true
- }
- //编辑元素
- const isEditElementShow = ref(false)
- const editElementInfo = ref({})
- const editElementData = ref({})
- const editElementLoading = ref(false)
- const editElement = async (row) => {
- editElementLoading.value = true
- const { code, data } = await excelApi.getExcelHtml({ pkeyId: row.pkeyId })
- if (code !== 200 || isNullES(data)) {
- editElementLoading.value = false
- window?.$message.warning('表单异常,请联系管理员')
- return
- }
- editElementLoading.value = false
- editElementInfo.value = row
- editElementData.value = {
- pid: projectInfo.value.id,
- wbsid: wbsId.value,
- nodeid: treeItem.value.id,
- }
- await nextTick()
- isEditElementShow.value = true
- }
- //调整表单
- const isAdjustExcelShow = ref(false)
- const adjustExcelLoading = ref(false)
- const adjustExcelInfo = ref({})
- const adjustExcelClick = async (row) => {
- const { pkeyId, excelId } = row
- if (isNullES(pkeyId) || isNullES(excelId)) {
- window?.$message.warning('表单值异常,请联系管理员')
- return
- }
- adjustExcelLoading.value = true
- const { code, data } = await excelApi.getExcelHtml({ pkeyId })
- if (code !== 200 || isNullES(data)) {
- adjustExcelLoading.value = false
- window?.$message.warning('表单异常,请联系管理员')
- return
- }
- adjustExcelInfo.value = deepClone(row)
- adjustExcelLoading.value = false
- isAdjustExcelShow.value = true
- }
- //编辑元素里的跳转页面
- const editElementToPage = async (name) => {
- const row = deepClone(editElementInfo.value)
- //表单调整
- if (name === 'adjustment') {
- adjustExcelInfo.value = deepClone(row)
- await nextTick()
- isAdjustExcelShow.value = true
- }
- //公式配置
- if (name === 'formula') {
- console.log('还没做')
- }
- }
- //编辑元素公式
- const elementFormulasName = ref('')
- const elementFormulasObj = ref({})
- const elementFormulasShow = ref(false)
- const elementFormulasClick = async (row) => {
- elementFormulasObj.value = row
- elementFormulasName.value = row.tableName + ' 元素公式'
- elementFormulasShow.value = true
- formulaTableLoading.value = true
- const { data } = await wbsTreeApi.selectFormElements({
- id: row.pkeyId,
- type: 0,
- })
- const arr = getArrValue(data)
- formulaTableData.value = arr
- formulaTableList.value = deepClone(arr)
- formulaTableLoading.value = false
- }
- //元素公式列表
- const formulaTableLoading = ref(false)
- const formulaTableColumn = [
- { key: 'eName', name: '字段信息' },
- { key: 'action', name: '操作', width: 160, align: 'center' },
- ]
- const formulaTableData = ref([])
- const formulaTableList = ref([])
- // 搜索元素公式
- const formulaInput = ref('')
- const searchFormulaClick = () => {
- const arr = formulaTableList.value
- formulaTableData.value = arr.filter(({ eName }) => {
- return eName.indexOf(formulaInput.value) > -1
- })
- }
- //编辑元素公式关闭
- const elementFormulasClose = () => {
- elementFormulasShow.value = false
- formulaTableLoading.value = false
- elementFormulasName.value = ''
- formulaTableData.value = []
- formulaTableList.value = []
- }
- //编辑公式
- const isEditFormulaShow = ref(false)
- const editFormulaData = ref({})
- //全局公式,10
- const toFormulaGlobal = async (row) => {
- elementFormulasClose()
- const formulasObj = elementFormulasObj.value
- formulasObj.hasPartFormula = row.hasPartFormula
- editFormulaData.value = {
- node: formulasObj,
- pid: projectInfo.value.id,
- wbsId: wbsId.value,
- nodeId: treeItem.value.id,
- eleId: row.id,
- eleType: false,
- tableType: true,
- globalType: 10,
- }
- await nextTick()
- isEditFormulaShow.value = true
- }
- //节点公式,20
- const toFormulaNodes = async (row) => {
- elementFormulasClose()
- editFormulaData.value = {
- node: treeItem.value,
- pid: projectInfo.value.id,
- wbsId: wbsId.value,
- nodeId: treeItem.value.id,
- eleId: row.id,
- tableType: false,
- globalType: 20,
- }
- await nextTick()
- isEditFormulaShow.value = true
- }
- //公式操作完成
- const editFormulaFinish = () => {
- isEditFormulaShow.value = false
- editFormulaData.value = {}
- }
- //离开了当前页面
- onDeactivated(() => {
- isAdjustExcelShow.value = false
- })
- </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 {
- .el-card.hc-card-box {
- --el-card-padding: 12px;
- --el-card-border-radius: 5px;
- }
- .hc-page-split-content {
- position: relative;
- .body-top {
- position: relative;
- height: 119.5px;
- }
- .body-content {
- position: relative;
- margin-top: 10px;
- height: calc(100% - 129.5px);
- }
- }
- }
- </style>
|