Commit d896b345 authored by zhengke's avatar zhengke

no message

parent f8b56be9
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
<th style="min-width: 220px;" <th style="min-width: 220px;"
v-for="( son , sIndex ) in item.CommissionRateList" v-for="( son , sIndex ) in item.CommissionRateList"
:key="sIndex" :key="sIndex"
>{{ son.StartValue }} <span>{{son.EndValue && son.EndValue!=-1?'<平均利润<=':'<平均利润'}}</span><span v-if="son.EndValue && son.EndValue!=-1">{{ son.EndValue }}</span></th> >{{ son.StartValue }} <span>{{son.EndValue && son.EndValue!=-1?'<=平均利润<':'<=平均利润'}}</span><span v-if="son.EndValue && son.EndValue!=-1">{{ son.EndValue }}</span></th>
</tr> </tr>
<tr> <tr>
<td style="min-width: 220px;" v-for="( son , sIndex ) in item.CommissionRateList" :key="sIndex">{{ son.Rate }}%</td> <td style="min-width: 220px;" v-for="( son , sIndex ) in item.CommissionRateList" :key="sIndex">{{ son.Rate }}%</td>
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
<th style="min-width: 220px;" <th style="min-width: 220px;"
v-for="( son , sIndex ) in item.BonusRateList" v-for="( son , sIndex ) in item.BonusRateList"
:key="sIndex" :key="sIndex"
>{{ son.StartValue }} <span>{{son.EndValue && son.EndValue!=-1?'<当月利润<=':'<当月利润'}}</span><span v-if="son.EndValue && son.EndValue!=-1">{{ son.EndValue }}</span></th> >{{ son.StartValue }} <span>{{son.EndValue && son.EndValue!=-1?'<=当月利润<':'<=当月利润'}}</span><span v-if="son.EndValue && son.EndValue!=-1">{{ son.EndValue }}</span></th>
</tr> </tr>
<tr> <tr>
<td style="min-width: 220px;" v-for="( son , sIndex ) in item.BonusRateList" :key="sIndex">{{ son.Rate }}%</td> <td style="min-width: 220px;" v-for="( son , sIndex ) in item.BonusRateList" :key="sIndex">{{ son.Rate }}%</td>
......
...@@ -345,10 +345,15 @@ ...@@ -345,10 +345,15 @@
// 获取可制单人员 // 获取可制单人员
GetCommissionSendEmployeeList(item,type){ GetCommissionSendEmployeeList(item,type){
this.BillMakingMsg.PeroidsId = item.Id this.BillMakingMsg.PeroidsId = item.Id
this.BillMakingMsg.Type = type if(type==1){
this.BillMakingMsg.Type = 56
}else{
this.BillMakingMsg.Type = 57
}
let msg = { let msg = {
PeroidsId: this.BillMakingMsg.PeroidsId, PeroidsId: this.BillMakingMsg.PeroidsId,
Type: this.BillMakingMsg.Type Type: type
} }
this.BillMakingLoading = true this.BillMakingLoading = true
this.crmapipost( this.crmapipost(
......
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