vehicle-detail.vue 2.73 KB
<!-- 车辆详情 -->
<template>
  <div
    class="dashboard-container vehicle-detail"
  >
    <div class="app-container">
      <el-container
        class="out"
      >
        <div class="aside-box">
          <el-aside>
            <div
              v-for="(item, index) in menu"
              :key="index"
              class="aside-item"
              :class="{ active: isActive == item.value ? true : false }"
              @click="
                isActive = item.value
                currentComp = item.comp
              "
            >
              {{ item.name }}
            </div>
          </el-aside>
        </div>
        <el-container class="in">
          <test1 :is="currentComp" />
        </el-container>
      </el-container>
    </div>
  </div>
</template>
<script>
import vehicleInfo from './components/vehicle-info'
import vehicleDrivingLicense from './components/vehicle-driving-license'
import vehicleTrains from './components/vehicle-trains'
export default {
  // 注册组件
  components: {
    vehicleInfo,
    vehicleDrivingLicense,
    vehicleTrains
  },
  data() {
    return {
      // formData: {},
      // 当前选中的组件
      currentComp: 'vehicleInfo',
      // 当前选中的li标签
      isActive: '1',
      id: '',
      menu: [
        {
          name: '基本信息',
          value: '1',
          comp: 'vehicleInfo'
        },
        {
          name: '行驶证信息',
          value: '2',
          comp: 'vehicleDrivingLicense'
        }
      ]
    }
  },
  created() {},
  methods: {
    goBack() {}
  }
}
</script>
<style lang="scss" scoped>
.active {
  color: #ff643d;
}
</style>

<style lang="scss" scoped>
.vehicle-detail {
  /deep/ .el-container{
    flex-direction: column;
    margin-left: 0px;

  }
  .in{
    height: calc(100vh - 205px);
    // height: 100%;
  }
  .aside-box {
    background: #ffffff;
    border-radius: 4px;
    // width: 150px;
    padding: 24px 37px 24px 37px;
    box-sizing: border-box;

    // min-height: calc(100vh - 50px);
    /deep/ .el-aside {
      padding-bottom: 14px;
      width: 100%!important;
      display: flex;
      background-color: #ffffff;
      border-bottom:1px solid #E5E7EC ;
      text-align: left;
      font-size: 14px;
      .aside-item {
        // margin-top: 38px;
        cursor: pointer;
        &:first-child {
          margin-right: 53px;
          padding-left: 25px;

        }
      }
      .aside-item.active{
        font-size: 16px;
        font-weight: bold;
        color: #20232A;
        &:after{
          content: '';
          display: block;
          background-color:#E15536 ;
          height: 3px;
          width: 49px;
          margin: 0 auto;
          position: relative;
          top: 14px;
        }
      }
    }
  }
}
</style>