|
|
|
@ -7,7 +7,7 @@ import { ApiFactory } from 'src/modules/crud/apiFactory';
|
|
|
|
|
const api = new ApiFactory().create(); |
|
|
|
|
import './maintain.less'; |
|
|
|
|
import { connectionType } from '@constants/env'; |
|
|
|
|
import { getJdbcDatabaseType } from '../../app.service'; |
|
|
|
|
import { getJdbcDatabaseType, getTextByDatabaseType } from '../../app.service'; |
|
|
|
|
import { ConnectionJDBC } from 'src/modules/crud/crud.typings'; |
|
|
|
|
|
|
|
|
|
export const MaintainXtype = 'dec.dcm.maintain'; |
|
|
|
@ -20,8 +20,8 @@ export class Maintain extends BI.Widget {
|
|
|
|
|
listView: any; |
|
|
|
|
|
|
|
|
|
render() { |
|
|
|
|
const { text, isEdit, databaseType } = this.getEditConnection(); |
|
|
|
|
const titleText = this.model.isCopy ? `${text}-${BI.i18nText('Dec-Dcm_Copy')}` : text; |
|
|
|
|
const { isEdit, databaseType } = this.getEditConnection(); |
|
|
|
|
const titleText = getTextByDatabaseType(databaseType); |
|
|
|
|
|
|
|
|
|
return { |
|
|
|
|
type: Vtape, |
|
|
|
@ -43,7 +43,7 @@ export class Maintain extends BI.Widget {
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
type: Label, |
|
|
|
|
text: `${titleText}(${databaseType})`, |
|
|
|
|
text: titleText, |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
height: 40, |
|
|
|
|