luohairen
2024-11-25 f12c46b1be892c16dcd958ae07a75b527dec2560
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;