Commit 186d792e authored by liudong1993's avatar liudong1993

1

parent 03fc63e8
...@@ -351,7 +351,13 @@ ...@@ -351,7 +351,13 @@
<el-dialog custom-class='w400' title="修改回团几天后可提现" :visible.sync="DaysShow" center> <el-dialog custom-class='w400' title="修改回团几天后可提现" :visible.sync="DaysShow" center>
<template> <template>
<el-form label-width="100px"> <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-input v-model="DaysMsg.WithdrawDays" class="w200"></el-input>
</el-form-item> </el-form-item>
</el-form> </el-form>
...@@ -446,7 +452,8 @@ ...@@ -446,7 +452,8 @@
ContractUrl: "", ContractUrl: "",
SettlementDate: "", SettlementDate: "",
SettlementInfo: "", SettlementInfo: "",
WithdrawDays:0 WithdrawDays:0,
WithdrawType:0,
}, },
getCompanyMsg: { getCompanyMsg: {
RB_Group_Id: "0", RB_Group_Id: "0",
...@@ -599,7 +606,8 @@ ...@@ -599,7 +606,8 @@
DaysShow: false, DaysShow: false,
DaysMsg:{ DaysMsg:{
AccountId:0, AccountId:0,
WithdrawDays:0 WithdrawDays:0,
WithdrawType:'0',
} }
}; };
}, },
...@@ -685,6 +693,7 @@ ...@@ -685,6 +693,7 @@
else if(params.type === 'days'){ else if(params.type === 'days'){
this.DaysMsg.AccountId = params.id; this.DaysMsg.AccountId = params.id;
this.DaysMsg.WithdrawDays = params.WithdrawDays; this.DaysMsg.WithdrawDays = params.WithdrawDays;
this.DaysMsg.WithdrawType = params.WithdrawType.toString();
this.DaysShow = true; this.DaysShow = true;
} }
...@@ -879,7 +888,7 @@ ...@@ -879,7 +888,7 @@
}; };
let withdrawDays = { let withdrawDays = {
field: "WithdrawDays", field: "WithdrawDays",
title: "提现天数", title: "提现标识",
titleAlign: "left", titleAlign: "left",
columnAlign: "left", columnAlign: "left",
isResize: true, isResize: true,
...@@ -888,6 +897,8 @@ ...@@ -888,6 +897,8 @@
let accountStateStr=""; let accountStateStr="";
if(rowData.WithdrawDays==0){accountStateStr="-"} if(rowData.WithdrawDays==0){accountStateStr="-"}
else{accountStateStr=rowData.WithdrawDays} else{accountStateStr=rowData.WithdrawDays}
if(rowData.WithdrawType==0){accountStateStr+=' [回团后]'}
else{accountStateStr+=' [出团后]'}
return accountStateStr; return accountStateStr;
}, },
}; };
...@@ -1170,7 +1181,8 @@ ...@@ -1170,7 +1181,8 @@
ContractUrl: "", ContractUrl: "",
SettlementDate: "", SettlementDate: "",
SettlementInfo: "", SettlementInfo: "",
WithdrawDays:0 WithdrawDays:0,
WithdrawType:0,
}; };
this.examineLoading=false, this.examineLoading=false,
this.ExamineMsg={ this.ExamineMsg={
...@@ -1539,7 +1551,8 @@ ...@@ -1539,7 +1551,8 @@
let params = { let params = {
type: 'days', type: 'days',
id: this.rowData.ID, id: this.rowData.ID,
WithdrawDays:this.rowData.WithdrawDays WithdrawDays:this.rowData.WithdrawDays,
WithdrawType:this.rowData.WithdrawType
}; };
this.$emit('on-custom-comp', params); this.$emit('on-custom-comp', params);
}, },
...@@ -2076,3 +2089,4 @@ ...@@ -2076,3 +2089,4 @@
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment