Source/plt-web/plt-web-ui/src/components/actions/handlers.js
@@ -3,8 +3,12 @@
export const handlerAction=function (type,options, callback) {
  const handlers = {
    //查看
    //查看,tab展示详情
    view: () => {import("@/components/actions/base/ViewAction").then(module => {
      module.doAction(options,callback);
    })},
    //查看,弹窗展示详情
    viewdialog: () => {import("@/components/actions/base/ViewDialogAction").then(module => {
      module.doAction(options,callback);
    })},
    //创建
@@ -39,6 +43,10 @@
    downloadfile: () => {import("@/components/actions/base/downloadFileAction").then(module => {
      module.doAction(options,callback);
    })},
    //下载文件
    downloadfiles: () => {import("@/components/actions/base/downloadFileAction").then(module => {
      module.doAction(options,callback);
    })},
    uprevision: () => {import("@/components/actions/base/upRevisionAction").then(module => {
      module.doAction(options,callback);
    })}