index.vue 974 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <div id="index">
  3. <el-row>
  4. <el-col :span="24">
  5. <el-col :span="24" class="leftTop"> <span>|</span> <span>展会管理</span> </el-col>
  6. <el-col :span="24" class="info">
  7. 展会管理
  8. </el-col>
  9. </el-col>
  10. </el-row>
  11. </div>
  12. </template>
  13. <script>
  14. import { mapState, createNamespacedHelpers } from 'vuex';
  15. export default {
  16. name: 'index',
  17. props: {},
  18. components: {},
  19. data: function() {
  20. return {};
  21. },
  22. created() {},
  23. methods: {},
  24. computed: {
  25. ...mapState(['user']),
  26. pageTitle() {
  27. return `${this.$route.meta.title}`;
  28. },
  29. },
  30. metaInfo() {
  31. return { title: this.$route.meta.title };
  32. },
  33. };
  34. </script>
  35. <style lang="less" scoped>
  36. .leftTop {
  37. font-size: 18px;
  38. width: 96%;
  39. height: 41px;
  40. line-height: 35px;
  41. border-bottom: 1px solid #e5e5e5;
  42. position: relative;
  43. bottom: 1px;
  44. margin: 10px;
  45. font-weight: 600;
  46. color: #22529a;
  47. }
  48. .info {
  49. padding: 0 40px 0 0;
  50. }
  51. </style>