index.vue 1.9 KB
<!--
 * @Author: xiaomiao 1158771342@qq.com
 * @Date: 2023-03-09 20:54:28
 * @LastEditors: Please set LastEditors
 * @LastEditTime: 2023-03-30 11:21:49
 * @FilePath: \上报\bdcjg-web\src\views\system\information\index.vue
 * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template>
  <div class="information from-clues">
    <div class="from-clues-header">
      <el-form ref="ruleForm" label-width="100px">
        <Breadcrumb />
        <el-row class="mb-5">
          <el-col 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-if="isshow" :userInfo="userData" />
        <password-edit v-if="!isshow" :userInfo="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,
      };
    },
    computed: {
      userData () {
        return this.$store.state.user.userInfo;
      },
    },
    watch: {},
    created () { },
    mounted () { },
    methods: {
      /**
       * @description: information
       * @author: renchao
       */
      information () {
        this.isshow = true;
      },
      /**
       * @description: password
       * @author: renchao
       */
      password () {
        this.isshow = false;
      },
    },
  };
</script>

<style scoped lang="scss">
  @import "~@/styles/mixin.scss";
</style>