Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
jinfa-admin
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
shenshaokai
jinfa-admin
Commits
660395a9
Commit
660395a9
authored
Mar 05, 2022
by
前端-许佳敏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 去掉首页查看
parent
1c9be452
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
10 deletions
+13
-10
MemberStatisticsContainer.tsx
...components/MemberStatistics/MemberStatisticsContainer.tsx
+2
-2
index.tsx
src/pages/home/components/Order/index.tsx
+1
-1
index.tsx
src/pages/home/components/PurchaseCenter/index.tsx
+1
-1
index.tsx
src/pages/home/components/Settlement/index.tsx
+6
-4
index.tsx
src/pages/home/components/StatisticsColumn/index.tsx
+3
-2
No files found.
src/pages/home/components/MemberStatistics/MemberStatisticsContainer.tsx
View file @
660395a9
...
@@ -45,11 +45,11 @@ const MemberStatisticsContainer = () => {
...
@@ -45,11 +45,11 @@ const MemberStatisticsContainer = () => {
</
div
>
</
div
>
</
div
>
</
div
>
<
div
>
<
div
>
{
{
/* {
item?.link && (
item?.link && (
<Link to={item.link}>查看 <RightOutlined /></Link>
<Link to={item.link}>查看 <RightOutlined /></Link>
) || <a>查看 <RightOutlined /></a>
) || <a>查看 <RightOutlined /></a>
}
}
*/
}
</
div
>
</
div
>
</
div
>
</
div
>
</
Col
>
</
Col
>
...
...
src/pages/home/components/Order/index.tsx
View file @
660395a9
...
@@ -49,7 +49,7 @@ const OrderContainer = () => {
...
@@ -49,7 +49,7 @@ const OrderContainer = () => {
return
(
return
(
<
List
.
Item
<
List
.
Item
key=
{
row
.
name
}
key=
{
row
.
name
}
actions=
{
[<
Link
to=
{
row
?.
link
}
>
查看
<
RightOutlined
/></
Link
>]
}
//
actions=
{[<
Link
to=
{
row
?.
link
}
>
查看
<
RightOutlined
/></
Link
>]}
>
>
<
List
.
Item
.
Meta
<
List
.
Item
.
Meta
title=
{
row
.
count
.
toString
()
}
title=
{
row
.
count
.
toString
()
}
...
...
src/pages/home/components/PurchaseCenter/index.tsx
View file @
660395a9
...
@@ -35,7 +35,7 @@ const PurchaseCenter = () => {
...
@@ -35,7 +35,7 @@ const PurchaseCenter = () => {
return
(
return
(
<
List
.
Item
<
List
.
Item
key=
{
row
.
name
}
key=
{
row
.
name
}
actions=
{
[<
Link
to=
{
row
?.
link
}
>
查看
<
RightOutlined
/></
Link
>]
}
//
actions=
{[<
Link
to=
{
row
?.
link
}
>
查看
<
RightOutlined
/></
Link
>]}
>
>
<
List
.
Item
.
Meta
<
List
.
Item
.
Meta
title=
{
row
.
count
.
toString
()
}
title=
{
row
.
count
.
toString
()
}
...
...
src/pages/home/components/Settlement/index.tsx
View file @
660395a9
...
@@ -91,13 +91,14 @@ const Settlement: React.FC = () => {
...
@@ -91,13 +91,14 @@ const Settlement: React.FC = () => {
<
div
className=
{
styles
.
noteGap
}
></
div
>
<
div
className=
{
styles
.
noteGap
}
></
div
>
<
div
className=
{
styles
.
noteBody
}
>
<
div
className=
{
styles
.
noteBody
}
>
<
span
className=
{
styles
.
value
}
>
{
_row
.
count
}
</
span
>
<
span
className=
{
styles
.
value
}
>
{
_row
.
count
}
</
span
>
{
<
div
></
div
>
{
/* {
_row.link && (
_row.link && (
<Link to={_row.link}>查看 <RightOutlined /></Link>
<Link to={_row.link}>查看 <RightOutlined /></Link>
) || (
) || (
<div>查看 <RightOutlined /></div>
<div>查看 <RightOutlined /></div>
)
)
}
}
*/
}
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
...
@@ -122,13 +123,14 @@ const Settlement: React.FC = () => {
...
@@ -122,13 +123,14 @@ const Settlement: React.FC = () => {
<
p
className=
{
styles
.
lineDescTip
}
>
{
_item
?.
title
}
</
p
>
<
p
className=
{
styles
.
lineDescTip
}
>
{
_item
?.
title
}
</
p
>
</
div
>
</
div
>
</
div
>
</
div
>
{
<
div
></
div
>
{
/* {
_item.link && (
_item.link && (
<Link to={_item.link}>查看 <RightOutlined /></Link>
<Link to={_item.link}>查看 <RightOutlined /></Link>
) || (
) || (
<div>查看 <RightOutlined /></div>
<div>查看 <RightOutlined /></div>
)
)
}
}
*/
}
</
div
>
</
div
>
</
Col
>
</
Col
>
)
)
...
...
src/pages/home/components/StatisticsColumn/index.tsx
View file @
660395a9
...
@@ -88,11 +88,12 @@ const StatisticsColumn = (props) => {
...
@@ -88,11 +88,12 @@ const StatisticsColumn = (props) => {
<
p
className=
{
styles
.
lineDescTip
}
>
{
_row
.
name
}
</
p
>
<
p
className=
{
styles
.
lineDescTip
}
>
{
_row
.
name
}
</
p
>
</
div
>
</
div
>
</
div
>
</
div
>
{
<
div
></
div
>
{
/* {
_row.link
_row.link
&& (<Link to={_row.link}>查看 <RightOutlined /></Link>)
&& (<Link to={_row.link}>查看 <RightOutlined /></Link>)
|| (<a>查看</a>)
|| (<a>查看</a>)
}
}
*/
}
</
div
>
</
div
>
</
Col
>
</
Col
>
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment