works
This commit is contained in:
parent
69bdc5d220
commit
63eef2ea18
|
@ -96,6 +96,20 @@ export const constantRoutes = [
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/plot',
|
||||||
|
hidden: true,
|
||||||
|
component: Layout,
|
||||||
|
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'plot',
|
||||||
|
component: () => import('@/views/plot/plot'),
|
||||||
|
name: 'plot',
|
||||||
|
meta: { title: 'plot' }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/analyzing',
|
path: '/analyzing',
|
||||||
hidden: true,
|
hidden: true,
|
||||||
|
|
|
@ -1,15 +1,21 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<span style="font-weight: bold">You could also run the analysis on the data from the specific date range</span><br>
|
<div>
|
||||||
<span>From: </span>
|
<span style="font-weight: bold">You could also run the analysis on the data from the specific date range</span><br>
|
||||||
<Datepicker v-model="state.from" style="display: inline-block" :bootstrap-styling="true">
|
<span>From: </span>
|
||||||
</Datepicker>
|
<Datepicker v-model="state.from" style="display: inline-block" :bootstrap-styling="true">
|
||||||
<span>To: </span>
|
</Datepicker>
|
||||||
<Datepicker v-model="state.to" style="display: inline-block" :bootstrap-styling="true"></Datepicker>
|
<span>To: </span>
|
||||||
<button type="button" class="btn btn-success" @click="onSendAnalyzeOnDateRequest">Apply</button>
|
<Datepicker v-model="state.to" style="display: inline-block" :bootstrap-styling="true"></Datepicker>
|
||||||
|
<button type="button" class="btn btn-success" @click="onSendAnalyzeOnDateRequest">Apply</button>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<iframe src="http://localhost:808" width=1000 height=600></iframe>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button type="button" class="btn btn-secondary" @click="onBackToUpload">Back</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<iframe src="http://localhost:808" width=1300 height=600></iframe>
|
|
||||||
<button type="button" class="btn btn-secondary" @click="onBackToUpload">Back</button>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
Loading…
Reference in New Issue