2017-06-03 11:01:47 +00:00
|
|
|
import ngModule from '../module';
|
2019-11-10 10:08:44 +00:00
|
|
|
import ModuleCard from 'salix/components/module-card';
|
2017-12-20 13:36:12 +00:00
|
|
|
|
2019-11-10 10:08:44 +00:00
|
|
|
export default class Controller extends ModuleCard {
|
2018-05-02 09:54:13 +00:00
|
|
|
reload() {
|
2019-11-10 10:08:44 +00:00
|
|
|
this.$http.get(`Clients/${this.$params.id}/getCard`)
|
|
|
|
.then(res => this.client = res.data);
|
2018-05-02 09:54:13 +00:00
|
|
|
}
|
2017-05-23 08:58:17 +00:00
|
|
|
}
|
2017-05-23 07:20:21 +00:00
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnClientCard', {
|
2018-05-23 12:26:51 +00:00
|
|
|
template: require('./index.html'),
|
2017-10-05 07:20:40 +00:00
|
|
|
controller: Controller
|
2017-05-23 08:58:17 +00:00
|
|
|
});
|
2018-05-02 09:54:13 +00:00
|
|
|
|