田源
2023-11-29 6492265bd1955d13740f94bff72b027a02a964e1
主数据左侧树修改样式
已修改4个文件
13 ■■■■ 文件已修改
Source/UBCS-WEB/src/components/FormTemplate/FormTemplate.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/components/FormTemplate/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/components/Master/MasterTree.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/MasterData/items.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/components/FormTemplate/FormTemplate.vue
@@ -378,6 +378,7 @@
      }
      this.geDictData(dictKeys);
      this.getFormDetail();
    },
    //修改级联项
Source/UBCS-WEB/src/components/FormTemplate/index.vue
@@ -251,7 +251,7 @@
  methods: {
    openDialog() {
      this.getFormTemplate();
      if (this.type === "add") {
      if (this.type === "add" || this.status === "amend") {
        this.getCodeRule();
      }
    },
@@ -319,7 +319,7 @@
          that.secVOList = (res.data.data.secVOList || []).filter((item) =>
            typeList.includes(item.secType)
          );
          if (that.secVOList.length > 0 && that.type === "add") {
          if ((that.secVOList.length > 0 && that.type === "add") || that.status === "amend") {
            that.showCodeApply = true;
            that.activeName = "codeApply";
Source/UBCS-WEB/src/components/Master/MasterTree.vue
@@ -1,12 +1,12 @@
<template>
  <div class="app" style="display: flex;">
  <div class="app" style="position: relative;">
    <avue-tree ref="tree" v-model="CloneTreeAvueform" v-loading="loading" :data="Treedata" :defaultExpandAll="false"
               :option="Treeoption" style="width: fit-content;" @node-click="nodeClick">
      <template slot-scope="{ node }">
        <span v-html="node.label"></span>
      </template>
    </avue-tree>
    <div style="display: inline-block;">
    <div style="position: absolute; right: 0px; top: -1px;">
      <el-link class="refresh-icon" icon="el-icon-refresh" @click="getTreeLists"></el-link>
    </div>
  </div>
Source/UBCS-WEB/src/views/MasterData/items.vue
@@ -1,7 +1,7 @@
<template>
  <el-container>
    <el-aside>
      <basic-container style="overflow: hidden;">
    <el-aside style="width:250px">
      <basic-container>
        <!--          树组件-->
        <master-tree
          :currentPage="this.currentPage"