田源
2024-11-15 b77c70bb4fd39f3a08d2a3bc5e16155652452990
整合代码
已修改3个文件
27 ■■■■ 文件已修改
Source/plt-web/plt-web-ui/src/views/custom-ui/product.vue 22 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/uiDefine/rightRegion/bottomTable/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/system/password/option.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/custom-ui/product.vue
@@ -1,6 +1,8 @@
<template>
  <avue-tree ref="tree" v-loading="treeLoading" :data="treeData" :option="treeOption" @node-click="nodeClick">
  </avue-tree>
  <div style="height: 720px">
    <avue-tree ref="tree" v-loading="treeLoading" :data="treeData" :option="treeOption" @node-click="nodeClick">
    </avue-tree>
  </div>
</template>
<script>
@@ -58,11 +60,19 @@
    }
  },
  created() {
    // console.log(this.sourceData);
    console.log(this.dataStore);
    // console.log(this.paramVOS);
    console.log('create');
  },
  methods: {}
  methods: {
    nodeClick(row){
      console.log(row);
      this.$emit("setDataStore", {
        area: 'westAreaInDialog',
        type: 'tree',
        btmType:'workcontext',
        dataStore:row
      });
    }
  }
}
</script>
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/uiDefine/rightRegion/bottomTable/index.vue
@@ -444,6 +444,7 @@
              // list.forEach(item => {
              //   this.form[item] = "";
              // })
              this.form.searchTarger = '1'
              const searchTarger = this.option.column.find(item => item.prop === 'searchTarger');  // 获取搜索类型配置项
              searchTarger.display = true; // 切换默认展示搜索类型
              // 模板类型为表格
Source/plt-web/plt-web-ui/src/views/system/password/option.js
@@ -240,10 +240,10 @@
    labelWidth: "30%",
    dicData: [{
      label: '否',
      value: 0
      value: false
    }, {
      label: '是',
      value: 1
      value: true
    }]
  },
]