systemIntroduce.vue 984 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <div class="clearfix">
  3. <el-breadcrumb separator-class="el-icon-arrow-right">
  4. <el-breadcrumb-item :to="{ path: '/jc/workbench' }">首页</el-breadcrumb-item>
  5. <el-breadcrumb-item>系统介绍</el-breadcrumb-item>
  6. <!-- <el-breadcrumb-item>专项监测</el-breadcrumb-item> -->
  7. </el-breadcrumb>
  8. <div class="workblock">
  9. <el-image :src=r></el-image>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. r: require('../../assets/img/liuchengtu.jpg')
  18. }
  19. },
  20. mounted() {
  21. },
  22. created() {
  23. },
  24. methods: {
  25. // async getRoutineMonitor() {
  26. // this.$router.push({
  27. // path: '/jc/routineMonitor',
  28. // })
  29. // }
  30. }
  31. }
  32. </script>
  33. <style lang="less" scoped>
  34. .workblock{
  35. display: flex;
  36. justify-content: center;
  37. height: 80%;
  38. .block{
  39. margin: 1.25rem auto;
  40. }
  41. }
  42. </style>