Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-shop-manage
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
lin
5 years ago
Commit
55046d48b5cd58f75b5a7530194323d343c13b2f
1 parent
4d6da8bb
调整页面显示
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
19 deletions
app/pages/finance/withdraw/store/transaction-list.js
app/pages/finance/withdraw/store/withdraw-list.js
app/pages/finance/withdraw/transaction-list.vue
app/pages/finance/withdraw/withdraw-list.vue
app/pages/finance/withdraw/store/transaction-list.js
View file @
55046d4
...
...
@@ -152,6 +152,9 @@ export default function() {
key
:
'applyTime'
,
align
:
'center'
,
render
(
h
,
params
)
{
if
(
!
params
.
row
.
applyTime
){
return
""
}
const
applyTime
=
moment
.
unix
(
params
.
row
.
applyTime
);
return
(
<
div
>
...
...
@@ -163,10 +166,13 @@ export default function() {
},
{
title
:
'提现成功日期'
,
key
:
'
applyS
uccessTime'
,
key
:
'
s
uccessTime'
,
align
:
'center'
,
render
(
h
,
params
)
{
const
appSuTime
=
moment
.
unix
(
params
.
row
.
applySuccessTime
);
if
(
!
params
.
row
.
successTime
){
return
""
}
const
appSuTime
=
moment
.
unix
(
params
.
row
.
successTime
);
return
(
<
div
>
<
div
>
{
appSuTime
.
format
(
'YYYY/MM/DD'
)}
<
/div
>
...
...
app/pages/finance/withdraw/store/withdraw-list.js
View file @
55046d4
...
...
@@ -89,6 +89,8 @@ export default function() {
},
{
title
:
'成功金额(元)'
,
key
:
'successAmount'
,
align
:
'center'
},
{
title
:
'提现状态'
,
...
...
@@ -109,7 +111,7 @@ export default function() {
},
{
title
:
'操作人'
,
key
:
'apply
Pid
'
,
key
:
'apply
Account
'
,
align
:
'center'
,
},
{
...
...
app/pages/finance/withdraw/transaction-list.vue
View file @
55046d4
...
...
@@ -70,24 +70,24 @@
<div class="select-container">
<Input v-model.trim="filters.productName.model" :placeholder="filters.productName.label" />
</div>
<div class="select-container">
<Select v-model.trim="filters.clearingType.model" :placeholder="filters.clearingType.label">
<Option v-for="option in filters.clearingType.options" :key="option.value" :value="option.value">{{
option.label
}}</Option>
</Select>
</div>
<div class="select-container">
<Select v-model.trim="filters.subClearingType.model" :placeholder="filters.subClearingType.label">
<Option v-for="option in filters.subClearingType.options" :key="option.value" :value="option.value">{{
option.label
}}</Option>
</Select>
</div>
<!-- <div class="select-container">-->
<!-- <Select v-model.trim="filters.clearingType.model" :placeholder="filters.clearingType.label">-->
<!-- <Option v-for="option in filters.clearingType.options" :key="option.value" :value="option.value">{{-->
<!-- option.label-->
<!-- }}</Option>-->
<!-- </Select>-->
<!-- </div>-->
<!-- <div class="select-container">-->
<!-- <Select v-model.trim="filters.subClearingType.model" :placeholder="filters.subClearingType.label">-->
<!-- <Option v-for="option in filters.subClearingType.options" :key="option.value" :value="option.value">{{-->
<!-- option.label-->
<!-- }}</Option>-->
<!-- </Select>-->
<!-- </div>-->
<div class="select-container">
<Button type="primary" @click="search">查询</Button>
<Button type="primary" @click="reset">全部</Button>
<Button>导出</Button
>
<!-- <Button>导出</Button>--
>
</div>
</filter-item>
</layout-filter>
...
...
app/pages/finance/withdraw/withdraw-list.vue
View file @
55046d4
...
...
@@ -67,7 +67,7 @@
<div class="select-container">
<Button type="primary" @click="search">查询</Button>
<Button type="primary" @click="reset">全部</Button>
<Button>导出</Button
>
<!-- <Button>导出</Button>--
>
</div>
</filter-item>
</layout-filter>
...
...
Please
register
or
login
to post a comment