标题优化

This commit is contained in:
‘huanghaiixia’
2026-01-30 15:55:59 +08:00
parent 9643a693a2
commit 2fcd09b943
14 changed files with 155 additions and 66 deletions

View File

@ -161,7 +161,7 @@
query: {
readonly: 1,
taskId: taskIds[0],
formName: formName,
formName: "查看"+formName,
formId:currentRoute.value.meta.formId,
id: record.id,
readonly: 1,
@ -173,7 +173,7 @@
query: {
readonly: 1,
taskId: '',
formName: formName,
formName: "查看"+formName,
formId:currentRoute.value.meta.formId,
id: record.id,
}
@ -184,7 +184,7 @@
path: '/flow/' + schemaIdComputedRef.value + '/0/createFlow',
query: {
formPath: 'contract/ContractPurPng',
formName: formName,
formName: "查看"+formName,
formId:currentRoute.value.meta.formId,
type:'edit',
id: record.id,
@ -215,7 +215,11 @@
function handleAdd() {
if (schemaIdComputedRef.value) {
router.push({
path: '/flow/' + schemaIdComputedRef.value + '/0/createFlow'
path: '/flow/' + schemaIdComputedRef.value + '/0/createFlow',
query: {
formPath: 'contract/ContractPurPng',
formName: "新建"+formName,
}
});
} else {
router.push({
@ -235,7 +239,7 @@
path: '/flow/' + schemaIdComputedRef.value + '/0/createFlow',
query: {
formPath: 'contract/ContractPurPng',
formName: formName,
formName: "编辑"+formName,
formId:currentRoute.value.meta.formId,
type:'edit',
id: record.id
@ -259,7 +263,7 @@
path: '/flow/' + schemaIdComputedRef.value + '/0/createFlow',
query: {
formPath: 'contract/ContractPurPng',
formName: formName,
formName: "变更"+formName,
formId:currentRoute.value.meta.formId,
type:'update',
id: record.id,
@ -275,7 +279,7 @@
path: '/flow/' + schemaId + '/' + (processId || '') + '/approveFlow',
query: {
taskId: taskIds[0],
formName: formName,
formName: "审批"+formName,
formId:currentRoute.value.meta.formId,
id: record.id
}