From 886ce995aff3f14368661edf9f59fccdcb3bb2a4 Mon Sep 17 00:00:00 2001
From: wugh <328043740@qq.com>
Date: Mon, 21 Dec 2020 11:58:15 +0800
Subject: [PATCH] [bug修复] 解决get请求,如果参数值为false或0等特殊值会导致无法正确传参
---
ruoyi-ui/src/views/system/user/profile/index.vue | 12 +-----------
1 files changed, 1 insertions(+), 11 deletions(-)
diff --git a/ruoyi-ui/src/views/system/user/profile/index.vue b/ruoyi-ui/src/views/system/user/profile/index.vue
index 3b7a117..aa8d9e6 100644
--- a/ruoyi-ui/src/views/system/user/profile/index.vue
+++ b/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>
@@ -89,13 +89,3 @@
}
};
</script>
-
-<style rel="stylesheet/scss" lang="scss">
-.avatar-uploader-icon {
- font-size: 28px;
- width: 120px;
- height: 120px;
- line-height: 120px;
- text-align: center;
-}
-</style>
--
Gitblit v1.9.2