REQ015 - Acceso web

This commit is contained in:
SAMBA\vfalco 2016-11-21 15:15:46 +01:00
parent b0a9bd2334
commit 26d4176fab
4 changed files with 34 additions and 0 deletions

View File

@ -17,6 +17,9 @@ export {NAME as CUSTOMER_DATA_BASIC_INDEX,
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,
COMPONENT as NAVIGATION_INDEX_COMPONENT} from './navigation/index';

View File

@ -33,5 +33,14 @@
module: 'crud',
description: '',
image: ''
},
{
url: '/customer/webclient',
state: 'customer-web-client',
template: '<customer-web-client vn-one></customer-web-client>',
module: 'crud',
description: '',
image: ''
}
]

View File

@ -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>

View File

@ -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);