疯狂的狮子Li
2022-03-25 a6f30412ade38bc49585fd64e3f0746161db3ea6
ruoyi-ui/src/views/system/user/profile/index.vue
@@ -33,7 +33,7 @@
              </li>
              <li class="list-group-item">
                <svg-icon icon-class="date" />创建日期
                <div class="pull-right">2018-08-23 09:11:56</div>
                <div class="pull-right">{{ user.createTime }}</div>
              </li>
            </ul>
          </div>
@@ -81,9 +81,9 @@
  methods: {
    getUser() {
      getUserProfile().then(response => {
        this.user = response.data;
        this.roleGroup = response.roleGroup;
        this.postGroup = response.postGroup;
        this.user = response.data.user;
        this.roleGroup = response.data.roleGroup;
        this.postGroup = response.data.postGroup;
      });
    }
  }