|
@@ -1,8 +1,9 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="content">
|
|
<div class="content">
|
|
|
<button @click="showRightForm">from test</button>
|
|
<button @click="showRightForm">from test</button>
|
|
|
- <div></div>
|
|
|
|
|
|
|
+ <ListFilter></ListFilter>
|
|
|
<List
|
|
<List
|
|
|
|
|
+ style="margin-top: 10px"
|
|
|
:listData="bugData"
|
|
:listData="bugData"
|
|
|
:total="300"
|
|
:total="300"
|
|
|
:is-show-checkbox="isShowCheckbox" @current-change="handleCurrentChange"></List>
|
|
:is-show-checkbox="isShowCheckbox" @current-change="handleCurrentChange"></List>
|
|
@@ -14,9 +15,10 @@
|
|
|
<script>
|
|
<script>
|
|
|
import RightForm from '../../components/RightForm.vue';
|
|
import RightForm from '../../components/RightForm.vue';
|
|
|
import List from '../../components/List.vue';
|
|
import List from '../../components/List.vue';
|
|
|
|
|
+import ListFilter from '../../components/ListFilter.vue';
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
- components: { RightForm, List },
|
|
|
|
|
|
|
+ components: { ListFilter, RightForm, List },
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
bugData: [
|
|
bugData: [
|