xiangpei
2024-11-25 a68ba1749991285e226868922f90d80c30855f8b
模型、部署管理bug修改
3个文件已修改
11 ■■■■ 已修改文件
src/utils/common.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/process/deployManagement.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/process/modelManagement.vue 补丁 | 查看 | 原始文档 | blame | 历史
src/utils/common.js
@@ -18,7 +18,7 @@
    return queryStr.slice(1);
}
function openWindow(path) {
    const prefix = process.env.VUE_APP_TAB_URL_PREFIX;
    const prefix = process.env.VUE_APP_FLOWABLE_PREFIX;
    window.open(prefix + "" + path);
}
src/views/process/deployManagement.vue
@@ -203,15 +203,16 @@
            this.getListAndRenderByParams(this.searchParams)
        },
        handleDefinition(index, row) {
            const {deploymentId, resourceName} = row;
            const path = `/flow/manage/showProcessDefinition/${deploymentId}/${resourceName}`
            let {deploymentId, resourceName} = row;
            resourceName = encodeURIComponent(resourceName)
            const path = `/flow/manage/showProcessDefinition/${deploymentId}?resource=${resourceName}`
            commonHelper.openWindow(path);
        },
        handleProcess(index, row) {
            const {id} = row;
            console.log("id是多少", id);
            const path = `/flow/manage/showresource?pdid=${id}`;
            commonHelper.openWindow(path);
            const path = process.env.VUE_APP_FLOWABLE_PREFIX + `/flow/manage/showresource?pdid=${id}`;
            window.open(path)
        },
        handleExchange(index, row) {
            const {id} = row;
src/views/process/modelManagement.vue