diff --git a/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue b/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue index 60430c25..a14b0b60 100644 --- a/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue +++ b/src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue @@ -166,7 +166,6 @@ @click="processSave" :type="props.headerButtonType" :disabled="simulationStatus" - /> diff --git a/src/views/infra/job/JobLog.vue b/src/views/infra/job/JobLog.vue index 7f860cec..1bf9d745 100644 --- a/src/views/infra/job/JobLog.vue +++ b/src/views/infra/job/JobLog.vue @@ -70,7 +70,7 @@ const detailData = ref() // 详情 Ref // 详情操作 const handleDetail = async (row: JobLogApi.JobLogVO) => { // 设置数据 - const res = JobLogApi.getJobLogApi(row.id) + const res = await JobLogApi.getJobLogApi(row.id) detailData.value = res dialogTitle.value = t('action.detail') dialogVisible.value = true diff --git a/src/views/infra/job/job.data.ts b/src/views/infra/job/job.data.ts index a0fc3bec..38761cd7 100644 --- a/src/views/infra/job/job.data.ts +++ b/src/views/infra/job/job.data.ts @@ -11,7 +11,7 @@ export const rules = reactive({ // CrudSchema const crudSchemas = reactive({ primaryKey: 'id', - primaryType: 'seq', + primaryType: 'id', primaryTitle: '任务编号', action: true, actionWidth: '280px', diff --git a/src/views/infra/job/jobLog.data.ts b/src/views/infra/job/jobLog.data.ts index ac6e39f2..ccca3d08 100644 --- a/src/views/infra/job/jobLog.data.ts +++ b/src/views/infra/job/jobLog.data.ts @@ -4,7 +4,7 @@ const { t } = useI18n() // CrudSchema const crudSchemas = reactive({ primaryKey: 'id', - primaryType: 'seq', + primaryType: 'id', primaryTitle: '日志编号', action: true, columns: [ diff --git a/src/views/system/tenant/tenant.data.ts b/src/views/system/tenant/tenant.data.ts index 1137b44a..adda1807 100644 --- a/src/views/system/tenant/tenant.data.ts +++ b/src/views/system/tenant/tenant.data.ts @@ -123,7 +123,8 @@ const crudSchemas = reactive({ title: '用户名称', field: 'username', isTable: false, - isDetail: false + isDetail: false, + isForm: false }, { title: '用户密码', @@ -132,7 +133,8 @@ const crudSchemas = reactive({ isDetail: false, form: { component: 'InputPassword' - } + }, + isForm: false }, { title: '账号额度',