Browse Source

修改头像显示当前图片

RuoYi 6 years ago
parent
commit
1cb672f8bd
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/main/resources/templates/system/user/profile/avatar.html

+ 2 - 1
src/main/resources/templates/system/user/profile/avatar.html

@@ -26,10 +26,11 @@
 <script th:src="@{/ajax/libs/cropbox/cropbox.js}"></script>
 <script type="text/javascript">
 $(window).load(function() {
+	var avatar = '[[${user.avatar}]]';
     var options = {
         thumbBox: '.thumbBox',
         spinner: '.spinner',
-        imgSrc: '/img/profile.jpg'
+        imgSrc: $.common.isEmpty(avatar) ? '/img/profile.jpg' : '/profile/' + avatar
     }
     var cropper = $('.imageBox').cropbox(options);
     $('#avatar').on('change',