|
|
<template>
|
|
|
<LayoutApp>
|
|
|
<FormPage v-if="status === -1"></FormPage>
|
|
|
<StatusPage v-else></StatusPage>
|
|
|
<div></div>
|
|
|
<Scroll>
|
|
|
<FormPage v-if="status === -1"></FormPage>
|
|
|
<StatusPage v-else></StatusPage>
|
|
|
</Scroll>
|
|
|
</LayoutApp>
|
|
|
</template>
|
|
|
|
...
|
...
|
@@ -11,6 +12,7 @@ import { createNamespacedHelpers } from 'vuex'; |
|
|
import FormPage from './form';
|
|
|
import StatusPage from './status';
|
|
|
import LayoutApp from '../components/layout/layout-app';
|
|
|
import {Scroll} from 'cube-ui';
|
|
|
|
|
|
const { mapState } = createNamespacedHelpers(
|
|
|
'license/form'
|
...
|
...
|
@@ -32,7 +34,8 @@ export default { |
|
|
components: {
|
|
|
FormPage,
|
|
|
StatusPage,
|
|
|
LayoutApp
|
|
|
LayoutApp,
|
|
|
Scroll
|
|
|
},
|
|
|
mounted() {
|
|
|
}
|
...
|
...
|
|