管道基础大数据平台系统开发-【前端】-新系統界面
Surpriseplus
2023-06-20 8ecb5398a70edbd0ebe8dc50d95b4b57ed6715d4
发布管理,数据上传页面修改
已修改3个文件
19 ■■■■ 文件已修改
src/views/Synthesis/LeftMenu.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/datamanage/dataUpdata.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/datamanage/uploadmanage.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/Synthesis/LeftMenu.vue
@@ -3180,9 +3180,9 @@
    });
    this.$store.state.isProjectLayer = [],
      this.$store.state.pigCode = null,
      this.$store.state.showAllLayers = true;
    this.$store.state.isProjectLayer = [];
    this.$store.state.pigCode = null;
    this.$store.state.showAllLayers = true;
    this.$store.state.layerMnage = false;
    this.$store.state.treeData = null;
    this.$store.state.checkedKeys = [];
src/views/datamanage/dataUpdata.vue
@@ -2090,7 +2090,8 @@
      for (var i = 0; i < val1.length; i++) {
        const stdTab = this.setSplitWare(val1[i].tab);
        for (var j = 0; j < val2.length; j++) {
          if (val2[j].tab == stdTab) {
          if (val2[j].tab.indexOf(stdTab) > -1) {
            std.push(val1[i].tab);
            val1[i].entity = val2[j].entity;
            val1[i].tabDesc = val2[j].tabDesc;
src/views/datamanage/uploadmanage.vue
@@ -889,7 +889,7 @@
        return
      }
      if (this.formInline.type == "DOM" || this.formInline.type == "DEM") {
        debugger
        this.insertLayer.name = this.multipleSelection[0].name.split('.')[0];
        this.insertLayer.number = this.multipleSelection.length
        this.insertLayer.noData = '0';
@@ -922,15 +922,15 @@
        this.insertDialogVisible = false;
        const data = await publish_insert(obj);
        if (data.code != 200) {
          this.$message.error("数据发布失败")
        } else {
        if (data.code == 200 && data.result > 0) {
          this.$message({
            message: '数据发布成功',
            type: 'success'
          });
        } else {
          this.$message.error("数据发布失败")
        }
        this.loadDialogVisible = false
        this.getTableData();
      }