Sfoglia il codice sorgente

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

gexinzhineng/gxzn27 2 anni fa
parent
commit
c634214213

+ 0 - 1
src/components/bpmnProcessDesigner/package/designer/ProcessDesigner.vue

@@ -166,7 +166,6 @@
           @click="processSave"
           :type="props.headerButtonType"
           :disabled="simulationStatus"
-
         />
       </template>
       <!-- 用于打开本地文件-->

+ 1 - 1
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

+ 1 - 1
src/views/infra/job/job.data.ts

@@ -11,7 +11,7 @@ export const rules = reactive({
 // CrudSchema
 const crudSchemas = reactive<VxeCrudSchema>({
   primaryKey: 'id',
-  primaryType: 'seq',
+  primaryType: 'id',
   primaryTitle: '任务编号',
   action: true,
   actionWidth: '280px',

+ 1 - 1
src/views/infra/job/jobLog.data.ts

@@ -4,7 +4,7 @@ const { t } = useI18n()
 // CrudSchema
 const crudSchemas = reactive<VxeCrudSchema>({
   primaryKey: 'id',
-  primaryType: 'seq',
+  primaryType: 'id',
   primaryTitle: '日志编号',
   action: true,
   columns: [

+ 4 - 2
src/views/system/tenant/tenant.data.ts

@@ -123,7 +123,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
       title: '用户名称',
       field: 'username',
       isTable: false,
-      isDetail: false
+      isDetail: false,
+      isForm: false
     },
     {
       title: '用户密码',
@@ -132,7 +133,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
       isDetail: false,
       form: {
         component: 'InputPassword'
-      }
+      },
+      isForm: false
     },
     {
       title: '账号额度',