Commit 186d792e authored by liudong1993's avatar liudong1993

1

parent 03fc63e8
......@@ -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>
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