Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
op-web-service
Project
Project
Details
Activity
Releases
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
bp
op-web-service
Commits
a0daee39
Commit
a0daee39
authored
Aug 11, 2021
by
pengyunqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:钱包账户
parent
833daa67
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
498 additions
and
0 deletions
+498
-0
config.js
src/pages/Withdrawal/components/PageHeader/config.js
+4
-0
flowRecord.vue
src/pages/Withdrawal/walletAccount/flowRecord.vue
+85
-0
index.vue
src/pages/Withdrawal/walletAccount/index.vue
+396
-0
index.js
src/router/Withdrawal/index.js
+13
-0
No files found.
src/pages/Withdrawal/components/PageHeader/config.js
View file @
a0daee39
...
@@ -3,6 +3,10 @@ const headerConfig = [
...
@@ -3,6 +3,10 @@ const headerConfig = [
name
:
"提现审核"
,
name
:
"提现审核"
,
path
:
"/op/withdrawal/examine"
path
:
"/op/withdrawal/examine"
},
},
{
name
:
"钱包账户"
,
path
:
"/op/withdrawal/walletaccount"
},
{
{
path
:
"/op/withdrawal/roleManageRole"
,
path
:
"/op/withdrawal/roleManageRole"
,
name
:
"角色管理"
,
name
:
"角色管理"
,
...
...
src/pages/Withdrawal/walletAccount/flowRecord.vue
0 → 100644
View file @
a0daee39
<
template
>
<el-card
class=
"role_management"
>
<!-- 检索区域 -->
<div
class=
"creatRole"
>
<el-form
:model=
"searchForm"
>
<el-form-item
label=
"用户Id"
>
<span></span>
</el-form-item>
<el-form-item
label=
"交易类型"
>
<el-select
v-model=
"searchForm"
>
<el-option
label=
"提现"
:value=
"1"
></el-option>
<el-option
label=
"转账"
:value=
"2"
></el-option>
<el-option
label=
"退款"
:value=
"2"
></el-option>
</el-select>
</el-form-item>
</el-form>
</div>
<!-- 用户搜索列表 -->
<el-table
border
:data=
"managementList"
>
<el-table-column
label=
"流水号"
width=
"200px"
prop=
"role_id"
align=
"center"
></el-table-column>
<el-table-column
label=
"更新时间"
prop=
"role_name"
align=
"center"
></el-table-column>
<el-table-column
label=
"金额"
prop=
"update_time"
align=
"center"
></el-table-column>
<el-table-column
label=
"可用余额"
prop=
"update_user_name"
align=
"center"
></el-table-column>
<el-table-column
label=
"交易类型"
prop=
"update_user_name"
align=
"center"
></el-table-column>
<el-table-column
label=
"状态"
width=
"200px"
:formatter=
"hasStatusFormat"
align=
"center"
>
</el-table-column>
<el-table-column
label=
"说明"
align=
"center"
>
</el-table-column>
</el-table>
<page
:totalNum=
"totalNum"
@
update=
"update"
/>
</el-card>
</
template
>
<
script
>
export
default
{
name
:
"flowRecord"
,
data
()
{
return
{};
},
mounted
()
{},
methods
:
{},
};
</
script
>
<
style
lang=
"less"
scoped
>
.creatRole {
display: flex;
justify-content: space-between;
}
.role_management {
padding: 20px;
}
.role_management .el-button {
margin: 0 2px;
}
</
style
>
\ No newline at end of file
src/pages/Withdrawal/walletAccount/index.vue
0 → 100644
View file @
a0daee39
This diff is collapsed.
Click to expand it.
src/router/Withdrawal/index.js
View file @
a0daee39
...
@@ -10,6 +10,19 @@ const withdrawalRoutes = [
...
@@ -10,6 +10,19 @@ const withdrawalRoutes = [
component
:
()
=>
component
:
()
=>
import
(
/* webpackChunkName: "Withdrawal" */
"@/pages/Withdrawal/Examine"
)
import
(
/* webpackChunkName: "Withdrawal" */
"@/pages/Withdrawal/Examine"
)
},
},
// 钱包账户
{
path
:
"/op/withdrawal/walletaccount"
,
name
:
"walletAccount"
,
component
:
()
=>
import
(
/* webpackChunkName: "Withdrawal" */
"@/pages/Withdrawal/walletAccount"
)
},
{
path
:
"/op/withdrawal/flowrecord"
,
name
:
"flowRecord"
,
component
:
()
=>
import
(
/* webpackChunkName: "Withdrawal" */
"@/pages/Withdrawal/walletAccount/flowRecord"
)
},
//用户管理
//用户管理
{
{
path
:
"/op/withdrawal/user"
,
path
:
"/op/withdrawal/user"
,
...
...
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