yuxc
2024-12-25 90b6945445ee97109a57f26c83788d24729a098e
Merge remote-tracking branch 'origin/master'
已修改18个文件
93 ■■■■■ 文件已修改
Source/plt-web/plt-web-ui/src/components/PLT-basic-component/input-icon.vue 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/components/actions/base/AddEditDialog.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/config/iconList.js 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/router/axios.js 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/modelingMenu/modeling/enumType/index.vue 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/modelingMenu/modeling/linkType/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/Aciton/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/index.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/uiDefine/index.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/system/department/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/system/user/index.vue 20 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/systemModel/businessModel/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/systemModel/mangeModel/index.vue 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/systemModel/systemConfig/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/wel/adminIndex.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/views/wel/workIndex.vue 11 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/plt-web/plt-web-ui/src/components/PLT-basic-component/input-icon.vue
@@ -2,7 +2,7 @@
  <div>
    <el-input :width="width" :class="inputClass" :style="inputStyle" :clearable="true" :value="value"
              :disabled="disabled" :placeholder="placeholder" type="text" :size="size" @clear="clearValue" @focus="handleFocus">
      <span slot="append" v-html="svgHtml" style="font-size: 18px;height:18px;display: block"></span>
      <span slot="append" v-html="svgHtml" style="font-size: 20px;padding:3px 10px;width:20px;height:20px;display: block" @click="handleFocus"></span>
    </el-input>
    <el-dialog v-dialogDrag
               v-dialog-resize
@@ -200,7 +200,12 @@
}
</script>
<style scoped>
<style scoped lang="scss">
::v-deep{
  .el-input-group__append, .el-input-group__prepend{
    padding: 0;
  }
}
.tag-group{font-size: 14px;}
.el-tag{
  margin: 0 0 10px 10px;
Source/plt-web/plt-web-ui/src/components/actions/base/AddEditDialog.vue
@@ -161,13 +161,11 @@
              this.form = res.data.obj.data;
              this.loading = false;
            }).catch(error => {
              this.$message.error(error);
              this.loading = false;
            })
          }
          this.loading = false;
        }).catch(error => {
          this.$message.error(error);
          this.loading = false;
        });
Source/plt-web/plt-web-ui/src/components/actions/base/startWorkFlow.vue
@@ -184,7 +184,6 @@
        this.getProcessNode(data[0].attributes.oid); // 首次进入调用第一个模板的所有节点
      }).catch(err => {
        this.$message.error(err);
      })
    },
@@ -208,7 +207,6 @@
        })
        this.nodeLoading = false;
      }).catch(err => {
        this.$message.error(err);
      })
    },
@@ -245,7 +243,6 @@
          this.$message.error(res.data.obj.error);
        }
      }).catch(err => {
        this.$message.error(err);
      })
    },
Source/plt-web/plt-web-ui/src/config/iconList.js
@@ -149,6 +149,5 @@
      "iconfont icon-iframe",
      "iconfont icon-huanyingye",
    ]
  },
  ...fontIconList
  }
]
Source/plt-web/plt-web-ui/src/router/axios.js
@@ -66,7 +66,18 @@
  //如果在白名单里则自行catch逻辑处理
  if (statusWhiteList.includes(status)) return Promise.reject(res);
  //如果是401则跳转到登录页面
  if (status === 401) store.dispatch('FedLogOut').then(() => router.push({path: '/login'}));
  if (status === 401) {
    store.dispatch('FedLogOut').then(() => router.push({path: '/login'}));
    if(router.history.current.path!='/login'){
      Message({
        message: '会话过期,请重新登录',
        type: 'error'
      });
      return Promise.reject(new Error(message))
    }else {
      return Promise.reject()
    }
  }
  // 如果请求为非200否者默认统一处理
  if (status !== 200) {
    Message({
Source/plt-web/plt-web-ui/src/views/modelingMenu/modeling/enumType/index.vue
@@ -378,7 +378,6 @@
        this.tableData = data;
        this.tableLoading = false;
      }).catch(err => {
        this.$message.error(err)
      });
    },
@@ -694,7 +693,6 @@
        func.downloadFileByBlobHandler(res);
        this.$message.success('导出成功');
      }).catch(err => {
        this.$message.error(err);
      })
    },
@@ -704,7 +702,6 @@
        func.downloadFileByBlobHandler(res);
        this.$message.success('下载成功');
      }).catch(err => {
        this.$message.error(err);
      })
    },
Source/plt-web/plt-web-ui/src/views/modelingMenu/modeling/linkType/index.vue
@@ -672,9 +672,7 @@
        const data = res.data.data;
        this.treeData = data;
        this.tableLoading = false;
      }).catch(err => {
        this.$message.error(err);
      });
      })
    },
    // 导入
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/Aciton/index.vue
@@ -565,9 +565,7 @@
      exportAction(params).then(res => {
        func.downloadFileByBlobHandler(res);
        this.$message.success('导出成功');
      }).catch(err => {
        this.$message.error(err);
      })
      });
    },
    // action列表行删除
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue
@@ -1414,8 +1414,6 @@
        const data = res.data.data;
        this.customAttrData = data;
        this.customAttrLoading = false;
      }).catch(err => {
        this.$message.error(err)
      });
    },
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/index.vue
@@ -493,8 +493,6 @@
      exportExcel(params).then(res => {
        func.downloadFileByBlobHandler(res);
        this.$message.success('导出成功');
      }).catch(err => {
        this.$message.error(err);
      });
    },
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/uiDefine/index.vue
@@ -607,8 +607,6 @@
        func.downloadFileByBlobHandler(res);
        this.$message.success('导出成功');
        this.expDialogVisible = false;
      }).catch(err => {
        this.$message.error(err);
      });
    },
Source/plt-web/plt-web-ui/src/views/system/department/index.vue
@@ -381,9 +381,7 @@
      download().then(res => {
        func.downloadFileByBlobHandler(res);
        this.$message.success('下载成功')
      }).catch(err => {
        this.$message.error(err);
      })
      });
    },
    // 导入部门
Source/plt-web/plt-web-ui/src/views/system/user/index.vue
@@ -297,9 +297,7 @@
      stopUser(params).then(res => {
        this.$message.success(res.data.obj);
        this.getTableList();
      }).catch(err => {
        this.$message.error(err)
      })
      });
    },
    // 选择框
@@ -341,9 +339,7 @@
        listRoleByUserOid(userOid).then(res => {
          this.rightRoleData = res.data.data.map(item => item.oid);
        })
      }).catch(err => {
        this.$message.error(err)
      })
      });
      this.$refs.transfer.visible = true;
    },
@@ -356,9 +352,7 @@
      saveRights(params).then(res => {
        this.$message.success(res.data.obj);
        this.getTableList();
      }).catch(err => {
        this.$message.error(err)
      })
      });
    },
    // 设置密码策略
@@ -390,9 +384,7 @@
      saveUserPasswordStrateg(params).then(res => {
        this.pwdVisible = false;
        this.$message.success(res.data.obj)
      }).catch(err => {
        this.$message.error(err)
      })
      });
    },
    // 新增
@@ -523,9 +515,7 @@
          children: this.departData
        }]
        this.option.column[7].defaultExpandedKeys = ['ALLDept'];
      }).catch(err => {
        this.$message.error(err);
      })
      });
    },
    // 分配部门数据转换
Source/plt-web/plt-web-ui/src/views/systemModel/businessModel/index.vue
@@ -524,9 +524,7 @@
        func.downloadFileByBlobHandler(res);
        this.createdLoading = false
        this.$message.success('导出成功');
      }).catch(err => {
        this.$message.error(err);
      })
      });
    },
    // 导入
Source/plt-web/plt-web-ui/src/views/systemModel/mangeModel/index.vue
@@ -418,8 +418,6 @@
      exportFunctionSql({isFunction: true}).then(res => {
        func.downloadFileByBlobHandler(res);
        this.$message.success('导出成功');
      }).catch(err => {
        this.$message.error(err);
      });
    },
Source/plt-web/plt-web-ui/src/views/systemModel/systemConfig/index.vue
@@ -448,9 +448,7 @@
      exportSysConf(params).then(res => {
        func.downloadFileByBlobHandler(res);
        this.$message.success('导出成功');
      }).catch(err => {
        this.$message.error(err);
      })
      });
    }
  }
}
Source/plt-web/plt-web-ui/src/views/wel/adminIndex.vue
@@ -208,7 +208,6 @@
        this.loading = false;
      }).catch(error => {
        this.$message.error(error);
        this.loading = false;
      });
    }
Source/plt-web/plt-web-ui/src/views/wel/workIndex.vue
@@ -9,7 +9,6 @@
              <icon-show :name="item.icon" style="display: inline-block"></icon-show>
            </div>
            <component :height="height*item.ratio" :is="item.module" :key="item.module" :title="item.title" :icon="item.icon"></component>
          </el-card>
        </div>
      </el-col>
@@ -50,7 +49,15 @@
            ratio:1.00
          }];
        }
        this.loading = false;
      }).catch(error=>{
        this.homeData = [{
          orderNum:1,
          module: "UndoTaskPortlet",
          title: "待办流程任务",
          num:24,
          icon: "",
          ratio:1.00
        }];
      });
    }
  }