Merge remote-tracking branch 'yudao/dev' into dev

This commit is contained in:
jason
2025-12-01 20:47:51 +08:00
41 changed files with 451 additions and 261 deletions

View File

@@ -45,7 +45,7 @@ const bpmnInstances = () => (window as any)?.bpmnInstances;
const generateStandardId = (type: string): string => {
const prefix = type === 'message' ? 'Message_' : 'Signal_';
const timestamp = Date.now();
const random = Math.random().toString(36).substring(2, 6).toUpperCase();
const random = Math.random().toString(36).slice(2, 6).toUpperCase();
return `${prefix}${timestamp}_${random}`;
};

View File

@@ -153,14 +153,14 @@ watch(
.header-editor {
.header-list {
max-height: 400px;
overflow-y: auto;
margin-bottom: 16px;
overflow-y: auto;
}
.header-item {
display: flex;
align-items: center;
gap: 8px;
align-items: center;
margin-bottom: 12px;
.header-key {
@@ -168,8 +168,8 @@ watch(
}
.separator {
color: #606266;
font-weight: 500;
color: #606266;
}
.header-value {

View File

@@ -1,3 +1,4 @@
<!-- eslint-disable prettier/prettier -->
<script lang="ts" setup>
import { inject, nextTick, onBeforeUnmount, ref, toRaw, watch } from 'vue';
@@ -203,7 +204,7 @@ const updateHttpExtensions = (force = false) => {
? String(!!rawValue)
: (rawValue === undefined
? ''
: String(rawValue));
: rawValue.toString());
desiredEntries.push([name, persisted]);
});

View File

@@ -13,7 +13,7 @@ import { useGridColumns, useGridFormSchema } from './data';
defineOptions({ name: 'BpmManagerTask' });
/** 查看历史 */
function handleHistory(row: BpmTaskApi.TaskManager) {
function handleHistory(row: BpmTaskApi.Task) {
router.push({
name: 'BpmProcessInstanceDetail',
query: {