Skip to content

Commit c634214

Browse files
committed
1、调度日志点击详情无数据显示
2、id显示序号问题 3、租户详情修改中不显示名称密码
1 parent 3354462 commit c634214

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@
166166
@click="processSave"
167167
:type="props.headerButtonType"
168168
:disabled="simulationStatus"
169-
170169
/>
171170
</template>
172171
<!-- 用于打开本地文件-->

src/views/infra/job/JobLog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const detailData = ref() // 详情 Ref
7070
// 详情操作
7171
const handleDetail = async (row: JobLogApi.JobLogVO) => {
7272
// 设置数据
73-
const res = JobLogApi.getJobLogApi(row.id)
73+
const res = await JobLogApi.getJobLogApi(row.id)
7474
detailData.value = res
7575
dialogTitle.value = t('action.detail')
7676
dialogVisible.value = true

src/views/infra/job/job.data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const rules = reactive({
1111
// CrudSchema
1212
const crudSchemas = reactive<VxeCrudSchema>({
1313
primaryKey: 'id',
14-
primaryType: 'seq',
14+
primaryType: 'id',
1515
primaryTitle: '任务编号',
1616
action: true,
1717
actionWidth: '280px',

src/views/infra/job/jobLog.data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { t } = useI18n()
44
// CrudSchema
55
const crudSchemas = reactive<VxeCrudSchema>({
66
primaryKey: 'id',
7-
primaryType: 'seq',
7+
primaryType: 'id',
88
primaryTitle: '日志编号',
99
action: true,
1010
columns: [

src/views/system/tenant/tenant.data.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
123123
title: '用户名称',
124124
field: 'username',
125125
isTable: false,
126-
isDetail: false
126+
isDetail: false,
127+
isForm: false
127128
},
128129
{
129130
title: '用户密码',
@@ -132,7 +133,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
132133
isDetail: false,
133134
form: {
134135
component: 'InputPassword'
135-
}
136+
},
137+
isForm: false
136138
},
137139
{
138140
title: '账号额度',

0 commit comments

Comments
 (0)