alan
6 years ago
12 changed files with 44 additions and 10 deletions
@ -0,0 +1,11 @@ |
|||||||
|
const className = 'fr.model.linkset.select'; |
||||||
|
const Model = BI.inherit(Fix.Model, { |
||||||
|
context: ['newLink'], |
||||||
|
actions: { |
||||||
|
setNewLink(value: string) { |
||||||
|
this.model.newLink = value; |
||||||
|
}, |
||||||
|
}, |
||||||
|
}); |
||||||
|
BI.model(className, Model); |
||||||
|
export default className; |
@ -1,5 +1,5 @@ |
|||||||
import {WidgetType, Htape} from '@ui'; |
import {WidgetType, Htape} from '@ui'; |
||||||
import linkStatusModel from './linkStatus.model'; |
import linkStatusModel from './link_status.model'; |
||||||
const className = 'fr.linkstatus'; |
const className = 'fr.linkstatus'; |
||||||
|
|
||||||
const Widget: WidgetType = { |
const Widget: WidgetType = { |
@ -1,6 +1,6 @@ |
|||||||
import {Label} from '@ui'; |
import {Label} from '@ui'; |
||||||
import tableItemModel from './title-item.model'; |
import tableItemModel from './title_item.model'; |
||||||
import {getSelectStyle} from './title-item.service'; |
import {getSelectStyle} from './title_item.service'; |
||||||
const className = 'fr.title.item'; |
const className = 'fr.title.item'; |
||||||
const Widget = BI.inherit(BI.Widget, { |
const Widget = BI.inherit(BI.Widget, { |
||||||
props: { |
props: { |
Loading…
Reference in new issue