Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ElectricitySheep
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
黄媛媛
ElectricitySheep
Commits
cbd90837
Commit
cbd90837
authored
Mar 18, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
07942665
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
CashierWithdrawal.vue
src/components/StoreDesign/CashierWithdrawal.vue
+10
-6
No files found.
src/components/StoreDesign/CashierWithdrawal.vue
View file @
cbd90837
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
:max=
"5000"
v-model=
"msg.Money"
></el-input>
<span
style=
"color:red;"
>
*注意每个账户最多单日提现5千
</span>
:max=
"5000"
v-model=
"msg.Money"
></el-input>
<span
style=
"color:red;"
>
*注意每个账户最多单日提现5千
</span>
</el-form-item>
</el-form-item>
<el-form-item
label=
"到账账号:"
>
<el-form-item
label=
"到账账号:"
>
<el-select
class=
"w160"
v-model=
"msg.User_Id"
size=
"small"
placeholder=
"请选择"
>
<el-select
class=
"w160"
v-model=
"msg.User_Id"
size=
"small"
placeholder=
"请选择"
filterable
>
<el-option
v-for=
"item in createrList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
<el-option
v-for=
"item in createrList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-option>
</el-select>
</el-select>
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
</el-date-picker>
</el-date-picker>
</span>
</span>
<span>
到账账户:
<span>
到账账户:
<el-select
class=
"w150"
v-model=
"awalMsg.User_Id"
size=
"small"
placeholder=
"请选择"
>
<el-select
class=
"w150"
v-model=
"awalMsg.User_Id"
size=
"small"
placeholder=
"请选择"
>
<el-option
label=
"不限"
:value=
"0"
></el-option>
<el-option
label=
"不限"
:value=
"0"
></el-option>
<el-option
v-for=
"item in createrList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
<el-option
v-for=
"item in createrList"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-option>
...
@@ -98,9 +98,9 @@
...
@@ -98,9 +98,9 @@
pageIndex
:
1
,
pageIndex
:
1
,
pageSize
:
10
,
pageSize
:
10
,
CreateBy
:
0
,
//创建人
CreateBy
:
0
,
//创建人
User_Id
:
0
,
//提现人
User_Id
:
0
,
//提现人
Transaction_Id
:
''
,
//微信交易流水号
Transaction_Id
:
''
,
//微信交易流水号
StartTime
:
''
,
//开始时间
StartTime
:
''
,
//开始时间
EndTime
:
''
,
//结束时间
EndTime
:
''
,
//结束时间
StartMoney
:
''
,
//开始金额
StartMoney
:
''
,
//开始金额
EndMoney
:
''
//结束金额
EndMoney
:
''
//结束金额
...
@@ -191,15 +191,19 @@
...
@@ -191,15 +191,19 @@
this
.
searchList
();
this
.
searchList
();
},
},
//获取创建人下拉
//获取创建人下拉
getCreaterList
()
{
getCreaterList
(
Name
=
''
)
{
this
.
apipost
(
'/api/user/GetMemberUserDropDownList_V2'
,
{
this
.
apipost
(
'/api/user/GetMemberUserDropDownList_V2'
,
{
pageIndex
:
1
,
pageIndex
:
1
,
pageSize
:
9999
pageSize
:
9999
,
Name
:
Name
,
},
},
res
=>
{
res
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
if
(
res
.
data
.
resultCode
===
1
)
{
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
createrList
=
res
.
data
.
data
.
pageData
;
this
.
createrList
=
res
.
data
.
data
.
pageData
;
this
.
createrList
.
forEach
((
x
)
=>
{
x
.
Name
=
x
.
Name
+
'('
+
x
.
Id
+
')'
})
}
else
{
}
else
{
this
.
Error
(
res
.
data
.
message
);
this
.
Error
(
res
.
data
.
message
);
}
}
...
...
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