cfel-base-components 2.5.33 → 2.5.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cfel-base-components",
3
- "version": "2.5.33",
3
+ "version": "2.5.34",
4
4
  "description": "cfel-base-components",
5
5
  "main": "/src/index.tsx",
6
6
  "types": "src/index.d.ts",
@@ -37,6 +37,7 @@ body {
37
37
  overflow: hidden;
38
38
 
39
39
  .layout-logo {
40
+ cursor: pointer;
40
41
  height: 60px;
41
42
  margin: 8px auto;
42
43
  display: flex;
@@ -96,7 +96,9 @@ export default function LiosLayout(props: LiosLayoutlProps) {
96
96
  setCollapsed(value);
97
97
  }}
98
98
  >
99
- <div className="layout-logo">
99
+ <div className="layout-logo" onClick={()=>{
100
+ window.open('/home')
101
+ }}>
100
102
  {
101
103
  <img
102
104
  className={`logo-img ${
@@ -131,18 +131,6 @@ export default function UserCard({
131
131
  <div className="lios-keyMare">租户</div>
132
132
  <div className="lios-valueMare" title={tenant?.name}>{tenant?.name}</div>
133
133
  </div>
134
- <div className='lios-li li-flex'>
135
- <div className='lios-keyMare'>资金账户</div>
136
- <div className='lios-valueMare'>
137
- <a
138
- onClick={() => {
139
- window.open('/web/capital-wallet')
140
- }}
141
- >
142
- 跳转
143
- </a>
144
- </div>
145
- </div>
146
134
  </div>
147
135
 
148
136