|
@@ -0,0 +1,51 @@
|
|
|
|
+<template>
|
|
|
|
+ <div id="index">
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="24" class="main">
|
|
|
|
+ <el-col :span='24' class="one">
|
|
|
|
+ 查询
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span='24' class="two">
|
|
|
|
+
|
|
|
|
+ <el-button type='primary'>添加</el-button>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span='24' class="thr">
|
|
|
|
+ 列表
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import { mapState, createNamespacedHelpers } from 'vuex';
|
|
|
|
+export default {
|
|
|
|
+ name: 'index',
|
|
|
|
+ props: {},
|
|
|
|
+ components: {},
|
|
|
|
+ data: function () {
|
|
|
|
+ return {};
|
|
|
|
+ },
|
|
|
|
+ created() {},
|
|
|
|
+ methods: {},
|
|
|
|
+ computed: {
|
|
|
|
+ ...mapState(['user']),
|
|
|
|
+ },
|
|
|
|
+ metaInfo() {
|
|
|
|
+ return { title: this.$route.meta.title };
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ test: {
|
|
|
|
+ deep: true,
|
|
|
|
+ immediate: true,
|
|
|
|
+ handler(val) {},
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+.main{
|
|
|
|
+ padding: 25px 30px 30px;
|
|
|
|
+}
|
|
|
|
+</style>
|