add slicing worklist
This commit is contained in:
50
worklist/components/mainWorklist.vue
Normal file
50
worklist/components/mainWorklist.vue
Normal file
@@ -0,0 +1,50 @@
|
||||
<template>
|
||||
<v-app id="inspire">
|
||||
<one-navbar></one-navbar>
|
||||
<v-main>
|
||||
<div class="pa-5 bg-primary-lighten ml-2 rounded-xl h-100">
|
||||
<v-row>
|
||||
<v-col cols="12" md="12" sm="12" xs="12">
|
||||
<filter-component></filter-component>
|
||||
</v-col>
|
||||
<v-col cols="12" md="12" sm="12" xs="12">
|
||||
<list-worklist-component></list-worklist-component>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</div>
|
||||
</v-main>
|
||||
</v-app>
|
||||
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
|
||||
<script type="module">
|
||||
import NavbarComponent from "../../globalcomponent/one-navbar.vue";
|
||||
import filterComponent from "./filter.vue";
|
||||
import listWorklistComponent from "./listWorklist.vue";
|
||||
export default {
|
||||
name: "MainWorklist",
|
||||
components: {
|
||||
"one-navbar": NavbarComponent,
|
||||
"filter-component": filterComponent,
|
||||
"list-worklist-component": listWorklistComponent
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
},
|
||||
wacth: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user