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
186d792e
Commit
186d792e
authored
Feb 14, 2025
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
03fc63e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
index.vue
src/components/FinancialModule/PlatformAccount/index.vue
+20
-6
No files found.
src/components/FinancialModule/PlatformAccount/index.vue
View file @
186d792e
...
...
@@ -351,7 +351,13 @@
<el-dialog
custom-class=
'w400'
title=
"修改回团几天后可提现"
:visible
.
sync=
"DaysShow"
center
>
<
template
>
<el-form
label-width=
"100px"
>
<el-form-item
label=
"回团后天数"
>
<el-form-item
label=
"类型"
>
<el-select
v-model=
"DaysMsg.WithdrawType"
placeholder=
"请选择"
>
<el-option
key=
"0"
label=
"回团后"
value=
"0"
></el-option>
<el-option
key=
"1"
label=
"出团后"
value=
"1"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"推后天数"
>
<el-input
v-model=
"DaysMsg.WithdrawDays"
class=
"w200"
></el-input>
</el-form-item>
</el-form>
...
...
@@ -446,7 +452,8 @@
ContractUrl
:
""
,
SettlementDate
:
""
,
SettlementInfo
:
""
,
WithdrawDays
:
0
WithdrawDays
:
0
,
WithdrawType
:
0
,
},
getCompanyMsg
:
{
RB_Group_Id
:
"0"
,
...
...
@@ -599,7 +606,8 @@
DaysShow
:
false
,
DaysMsg
:{
AccountId
:
0
,
WithdrawDays
:
0
WithdrawDays
:
0
,
WithdrawType
:
'0'
,
}
};
},
...
...
@@ -685,6 +693,7 @@
else
if
(
params
.
type
===
'days'
){
this
.
DaysMsg
.
AccountId
=
params
.
id
;
this
.
DaysMsg
.
WithdrawDays
=
params
.
WithdrawDays
;
this
.
DaysMsg
.
WithdrawType
=
params
.
WithdrawType
.
toString
();
this
.
DaysShow
=
true
;
}
...
...
@@ -879,7 +888,7 @@
};
let
withdrawDays
=
{
field
:
"WithdrawDays"
,
title
:
"提现
天数
"
,
title
:
"提现
标识
"
,
titleAlign
:
"left"
,
columnAlign
:
"left"
,
isResize
:
true
,
...
...
@@ -888,6 +897,8 @@
let
accountStateStr
=
""
;
if
(
rowData
.
WithdrawDays
==
0
){
accountStateStr
=
"-"
}
else
{
accountStateStr
=
rowData
.
WithdrawDays
}
if
(
rowData
.
WithdrawType
==
0
){
accountStateStr
+=
' [回团后]'
}
else
{
accountStateStr
+=
' [出团后]'
}
return
accountStateStr
;
},
};
...
...
@@ -1170,7 +1181,8 @@
ContractUrl
:
""
,
SettlementDate
:
""
,
SettlementInfo
:
""
,
WithdrawDays
:
0
WithdrawDays
:
0
,
WithdrawType
:
0
,
};
this
.
examineLoading
=
false
,
this
.
ExamineMsg
=
{
...
...
@@ -1539,7 +1551,8 @@
let
params
=
{
type
:
'days'
,
id
:
this
.
rowData
.
ID
,
WithdrawDays
:
this
.
rowData
.
WithdrawDays
WithdrawDays
:
this
.
rowData
.
WithdrawDays
,
WithdrawType
:
this
.
rowData
.
WithdrawType
};
this
.
$emit
(
'on-custom-comp'
,
params
);
},
...
...
@@ -2076,3 +2089,4 @@
}
</
style
>
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