kongdeqiang
2023-04-26 cb5c9968b763362d399e1c7fce1129ec7434aba8
src/views/activiti/process-manage/processManage.vue
@@ -458,7 +458,7 @@
  methods: {
    init() {
      this.accessToken = {
        accessToken: this.getStore("accessToken"),
        accessToken: this.getSessionStore("accessToken"),
      };
      this.deployByFileUrl = deployByFile;
      this.getDataList();
@@ -636,13 +636,13 @@
        window.open(
          `${exportResource}?id=${
            v.id
          }&type=${type}&accessToken=${this.getStore("accessToken")}`
          }&type=${type}&accessToken=${this.getSessionStore("accessToken")}`
        );
      } else if (type == 1) {
        this.viewTitle = "流程图片预览(" + v.diagramName + ")";
        this.diagramUrl = `${exportResource}?id=${
          v.id
        }&type=${type}&accessToken=${this.getStore("accessToken")}`;
        }&type=${type}&accessToken=${this.getSessionStore("accessToken")}`;
        this.viewImage = true;
      }
    },