index.vue 1.86 KB
<template>
  <div class="information from-clues">
    <div class="from-clues-header">
      <el-form ref="ruleForm" label-width="100px">
        <el-form-item>
          <Breadcrumb />
        </el-form-item>
        <el-row class="mb-5">
          <el-col :span="3" class="btnColRight">
            <btn nativeType="cx" @click="information">基本信息</btn>
            <btn nativeType="cx" @click="password">修改密码</btn>
          </el-col>
        </el-row>
      </el-form>
    </div>
    <div class="from-clues-content">
      <div class="contentbox">
        <base-set v-show="isshow" :user-info="userData" />
        <password-edit v-show="!isshow" :user-info="userData" />
      </div>
    </div>
  </div>
</template>
<script>
  import "@/utils/flexible.js";
  import BaseSet from "./base-set.vue";
  import PasswordEdit from "./password-edit.vue";
  export default {
    components: {
      BaseSet,
      PasswordEdit,
    },
    data () {
      return {
        isshow: true,
        userData: null
      };
    },
    computed: {
      departmentid () {
        return this.$store.state.user.userInfo;
      },
    },
    watch: {},
    created () { },
    mounted () {
      if (this.departmentid) {
        this.userData = this.departmentid
      }

    },
    methods: {
      information () {
        this.isshow = true;
      },
      password () {
        this.isshow = false;
      },
    },
  };
</script>

<style scoped lang="scss">
  @import "~@/styles/mixin.scss";
  @import "~@/styles/public.scss";
  .information {
    .btnColRight {
      margin-top: 20px;
    }
    /deep/.content {
      .el-input__inner {
        background: none;
      }
      .user-info {
        background: none;
      }
    }
    /deep/.el-tabs {
      .el-tabs__content {
        height: 100%;
        width: 100%;
      }
    }
    .contentbox {
      height: 3.0854rem;
    }
  }
</style>