added avm scanner module to radius
This commit is contained in:
@@ -44,6 +44,9 @@ const Radius = {
|
||||
<section v-show="view === 'ontReverse'" class="card-in">
|
||||
<radius-ont-finder />
|
||||
</section>
|
||||
<section v-show="view === 'avmscanner'" class="card-in">
|
||||
<radius-avm-scanner ref="avmScannerView" />
|
||||
</section>
|
||||
</section>
|
||||
</div>
|
||||
`,
|
||||
@@ -59,7 +62,8 @@ const Radius = {
|
||||
const options = [
|
||||
{ id: 'users', name: 'Benutzer', icon: 'fa-duotone fa-users' },
|
||||
{ id: 'free', name: 'Freie Benutzer', icon: 'fa-duotone fa-user-plus' },
|
||||
{ id: 'unused', name: 'Ungenutzte Benutzer', icon: 'fa-duotone fa-user-clock' }
|
||||
{ id: 'unused', name: 'Ungenutzte Benutzer', icon: 'fa-duotone fa-user-clock' },
|
||||
{ id: 'avmscanner', name: 'AVM Scanner', icon: 'fa-duotone fa-router' }
|
||||
];
|
||||
|
||||
if (window.TT_CONFIG.CAN_BILLING === '1') {
|
||||
@@ -84,6 +88,7 @@ const Radius = {
|
||||
let refName = '';
|
||||
if (v === 'free') refName = 'freeView';
|
||||
else if (v === 'unused') refName = 'unusedView';
|
||||
else if (v === 'avmscanner') refName = 'avmScannerView';
|
||||
|
||||
if (refName) {
|
||||
this.$nextTick(() => {
|
||||
|
||||
Reference in New Issue
Block a user