Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
4de0ab67
Commit
4de0ab67
authored
Jul 31, 2019
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
d93666c6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
879 additions
and
3 deletions
+879
-3
index.vue
src/components/personalCenter/index.vue
+73
-3
Manfunds.vue
src/components/systemManagement/Manfunds.vue
+438
-0
Maninfo.vue
src/components/systemManagement/Maninfo.vue
+351
-0
config.js
src/router/config.js
+17
-0
No files found.
src/components/personalCenter/index.vue
View file @
4de0ab67
...
@@ -95,6 +95,44 @@
...
@@ -95,6 +95,44 @@
v-if=
"queryCommonData.total>6"
v-if=
"queryCommonData.total>6"
></el-pagination>
></el-pagination>
</div>
</div>
<!-- 未认款 -->
<div
class=
"orders"
v-loading=
"RLoading"
>
<div
class=
"title"
>
未认款
</div>
<i
class=
"more iconfont icon-gengduo1"
title=
"查看所有未认款"
@
click=
"openAllMan"
></i>
<div
class=
"per-tab"
>
<table>
<thead>
<th>
户名
</th>
<th>
开户行
</th>
<th>
账号
</th>
<th>
交易时间
</th>
<th>
收
</th>
<th>
支
</th>
<th>
对方户名
</th>
</thead>
<tbody>
<tr
v-for=
"(item, index) in rList"
:key=
"index"
>
<td
class=
"blue bold"
>
{{
item
.
AccountName
}}
</td>
<td
class=
"bold"
>
{{
item
.
OpeningBank
}}
</td>
<td>
{{
item
.
BackNo
}}
</td>
<td
class=
"bold"
>
{{
item
.
TradeDate
}}
</td>
<td
class=
"bold org"
>
{{
item
.
Income
}}
</td>
<td
class=
"bold red"
>
{{
item
.
Refund
}}
</td>
<td
class=
"bold red"
>
{{
item
.
Remitter
}}
</td>
<!--
<td
class=
"op"
@
click=
"openOrders(item.orderId)"
>
<i
title=
"查看"
class=
"el-icon-view"
></i>
</td>
-->
</tr>
<tr
v-if=
"!rList || rList.length==0"
>
<td
colspan=
"8"
style=
"color:gray;border:none;padding:50px 0;text-align:center"
>
暂无数据
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div
class=
"first"
>
<div
class=
"first"
>
<div
class=
"pingtai"
>
<div
class=
"pingtai"
>
<div
class=
"title"
>
成交平台占比
</div>
<div
class=
"title"
>
成交平台占比
</div>
...
@@ -105,7 +143,7 @@
...
@@ -105,7 +143,7 @@
<cloud
:result=
"result.cloudStorageList"
></cloud>
<cloud
:result=
"result.cloudStorageList"
></cloud>
</div>
</div>
</div>
</div>
<div
class=
"first"
>
<
!--
<
div
class=
"first"
>
<div
class=
"imbox"
>
<div
class=
"imbox"
>
<div
class=
"title"
>
近期消息
</div>
<div
class=
"title"
>
近期消息
</div>
<imbox></imbox>
<imbox></imbox>
...
@@ -127,14 +165,13 @@
...
@@ -127,14 +165,13 @@
<gonggao
v-show=
"choseNoticeType==0"
></gonggao>
<gonggao
v-show=
"choseNoticeType==0"
></gonggao>
<notice
v-show=
"choseNoticeType==1"
></notice>
<notice
v-show=
"choseNoticeType==1"
></notice>
</div>
</div>
</div>
</div>
-->
</div>
</div>
<div
class=
"r-box"
>
<div
class=
"r-box"
>
<div
class=
"sell"
>
<div
class=
"sell"
>
<div
class=
"title"
>
本周销冠
</div>
<div
class=
"title"
>
本周销冠
</div>
<i
class=
"more iconfont icon-gengduo1 white"
title=
"查看往期排行"
></i>
<i
class=
"more iconfont icon-gengduo1 white"
title=
"查看往期排行"
></i>
<sell
:champion=
"result.orderRankList"
></sell>
<sell
:champion=
"result.orderRankList"
></sell>
<!-- // -->
</div>
</div>
<div
class=
"todayOpera"
>
<div
class=
"todayOpera"
>
<div
class=
"title"
>
今日操作
</div>
<div
class=
"title"
>
今日操作
</div>
...
@@ -182,6 +219,8 @@ export default {
...
@@ -182,6 +219,8 @@ export default {
result
:
null
,
result
:
null
,
orders
:
[],
orders
:
[],
pageLoading
:
false
,
pageLoading
:
false
,
RLoading
:
false
,
};
};
},
},
...
@@ -202,8 +241,39 @@ export default {
...
@@ -202,8 +241,39 @@ export default {
this
.
zoomW
=
(
document
.
documentElement
.
clientWidth
/
1920
).
toFixed
(
2
);
this
.
zoomW
=
(
document
.
documentElement
.
clientWidth
/
1920
).
toFixed
(
2
);
this
.
init
();
this
.
init
();
this
.
queryOrder
();
this
.
queryOrder
();
this
.
getList
();
},
},
methods
:
{
methods
:
{
openAllMan
(
id
)
{
const
{
href
}
=
this
.
$router
.
resolve
({
path
:
"/Manfunds"
});
window
.
open
(
href
,
"_blank"
);
},
getList
(){
let
msg
=
{
pageIndex
:
1
,
pageSize
:
6
,
StartTime
:
""
,
EndTime
:
""
,
BankAccountId
:
""
,
Remitter
:
""
,
SIncome
:
""
,
EIncome
:
""
,
SRefund
:
""
,
ERefund
:
""
,
AccountName
:
""
,
Type
:
-
1
,
};
this
.
RLoading
=
true
;
this
.
apipost
(
'Financial_post_GetFinanceRemittanceClaimPageList'
,
msg
,
res
=>
{
this
.
RLoading
=
false
;
console
.
log
(
"res"
,
res
)
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
rList
=
res
.
data
.
data
.
pageData
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{})
},
handleCurrentChange
(
index
)
{
handleCurrentChange
(
index
)
{
this
.
queryCommonData
.
pageIndex
=
index
;
this
.
queryCommonData
.
pageIndex
=
index
;
this
.
queryOrder
();
this
.
queryOrder
();
...
...
src/components/systemManagement/Manfunds.vue
0 → 100644
View file @
4de0ab67
This diff is collapsed.
Click to expand it.
src/components/systemManagement/Maninfo.vue
0 → 100644
View file @
4de0ab67
This diff is collapsed.
Click to expand it.
src/router/config.js
View file @
4de0ab67
...
@@ -961,6 +961,23 @@ export default {
...
@@ -961,6 +961,23 @@ export default {
title
:
'历史汇率'
title
:
'历史汇率'
},
},
},
},
{
path
:
'/Manfunds'
,
//未认款管理
name
:
'Manfunds'
,
component
:
resolve
=>
require
([
'@/components/systemManagement/Manfunds'
],
resolve
),
meta
:
{
title
:
'未认款管理'
},
},
{
path
:
'/Maninfo'
,
//未认款信息
name
:
'Maninfo'
,
component
:
resolve
=>
require
([
'@/components/systemManagement/Maninfo'
],
resolve
),
meta
:
{
title
:
'未认款信息'
},
},
{
{
path
:
'/transportCostsManagement'
,
//联运成本管理
path
:
'/transportCostsManagement'
,
//联运成本管理
name
:
'transportCostsManagement'
,
name
:
'transportCostsManagement'
,
...
...
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