Browse Source

去掉总用户数的死数字

魏熙美 5 years ago
parent
commit
f65f487c47
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/pages/Welcome.jsx

+ 1
- 1
src/pages/Welcome.jsx View File

@@ -41,7 +41,7 @@ const welcome = (props) => {
41 41
           borderRadius: '12px', width: '32%', marginRight: '2%'
42 42
         }}>
43 43
           <span style={{ fontSize: '24px', color: '#fff' }}>总注册用户 </span>
44
-          <span style={{ fontSize: '52px', color: '#fff', marginLeft: '26px', fontFamily: 'fantasy' }}>{(data.selectRegisteredCount && data.selectRegisteredCount + 95) || '0'}</span>
44
+          <span style={{ fontSize: '52px', color: '#fff', marginLeft: '26px', fontFamily: 'fantasy' }}>{data.selectRegisteredCount || '0'}</span>
45 45
         </div>
46 46
         <div onClick={() => router.push('/indexEcharts/newUsers')} style={{
47 47
           textAlign: 'center', display: 'flex', justifyContent: 'center', background: 'linear-gradient(137deg,rgba(107,130,230,1) 0%,rgba(152,175,251,1) 100%)', height: '100px',