REQ015 - Acceso web
This commit is contained in:
parent
b0a9bd2334
commit
26d4176fab
|
@ -17,6 +17,9 @@ export {NAME as CUSTOMER_DATA_BASIC_INDEX,
|
||||||
COMPONENT as CUSTOMER_DATA_BASIC_INDEX_COMPONENT} from './customer/dataBasic';
|
COMPONENT as CUSTOMER_DATA_BASIC_INDEX_COMPONENT} from './customer/dataBasic';
|
||||||
|
|
||||||
|
|
||||||
|
export {NAME as CUSTOMER_WEB_CLIENT_INDEX,
|
||||||
|
COMPONENT as CUSTOMER_WEB_CLIENT_INDEX_COMPONENT} from './customer/webclient';
|
||||||
|
|
||||||
|
|
||||||
export {NAME as NAVIGATION_INDEX,
|
export {NAME as NAVIGATION_INDEX,
|
||||||
COMPONENT as NAVIGATION_INDEX_COMPONENT} from './navigation/index';
|
COMPONENT as NAVIGATION_INDEX_COMPONENT} from './navigation/index';
|
||||||
|
|
|
@ -33,5 +33,14 @@
|
||||||
module: 'crud',
|
module: 'crud',
|
||||||
description: '',
|
description: '',
|
||||||
image: ''
|
image: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: '/customer/webclient',
|
||||||
|
state: 'customer-web-client',
|
||||||
|
template: '<customer-web-client vn-one></customer-web-client>',
|
||||||
|
module: 'crud',
|
||||||
|
description: '',
|
||||||
|
image: ''
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<vn-vertical full-height pad-medium>
|
||||||
|
<vn-one>
|
||||||
|
<h2>CLIENTE_acceso web</h2>
|
||||||
|
</vn-one>
|
||||||
|
<vn-two>
|
||||||
|
<vn-check label="Acceso web activo" name="accesoweb" model="customer.activo"></vn-check>
|
||||||
|
</vn-two>
|
||||||
|
<vn-three>
|
||||||
|
<vn-textfield label="USUARIO" model="customer.user"></vn-textfield>
|
||||||
|
</vn-three>
|
||||||
|
<vn-four>
|
||||||
|
<vn-button text="Generar Contraseña" class="colored"></vn-button>
|
||||||
|
</vn-four>
|
||||||
|
</vn-vertical>
|
|
@ -0,0 +1,8 @@
|
||||||
|
import template from './index.html';
|
||||||
|
import {module} from '../../module';
|
||||||
|
|
||||||
|
export const NAME = 'customerWebClient';
|
||||||
|
export const COMPONENT = {
|
||||||
|
template: template
|
||||||
|
};
|
||||||
|
module.component(NAME, COMPONENT);
|
Loading…
Reference in New Issue