Commit e60ebe40 authored by youjie's avatar youjie

no message

parent 5f38f11c
......@@ -3662,22 +3662,14 @@
);
} else {
this.chosenIndex = id;
if (localStorage.openMode && localStorage.openMode == 1){
if(url=='/SalesVolumeRank'){
this.$router.push({
path: url,
query: {}
});
}else{
if (localStorage.openMode && localStorage.openMode == 1)
this.$router.push({
path: url,
query: {
blank: 'y'
}
});
}
}else
else
this.$router.push({
path: url,
query: {}
......
......@@ -39,16 +39,18 @@
let LastMonthTime = new Date().getMonth()
let MonthTime = new Date().getMonth() + 1
let userInfo = this.getLocalStorage();
let MonthDayNum
let name
if(this.type!=3){
let DepartSTime
let DepartETime
if(this.Month==1){
DepartSTime = Year+'-'+(MonthTime>10?MonthTime:'0'+MonthTime)+'-01'
DepartETime = this.getBeforeDate(0,this.getBeforeDate(0,new Date().Format("yyyy-MM-dd")))
MonthDayNum = new Date(Year, MonthTime, 0).getDate();
DepartETime = Year+'-'+(MonthTime>10?MonthTime:'0'+MonthTime)+'-'+(MonthDayNum>10?MonthDayNum:'0'+MonthDayNum)
}else{
DepartSTime = Year+'-'+(LastMonthTime>10?LastMonthTime:'0'+LastMonthTime)+'-01'
var MonthDayNum = new Date(Year, LastMonthTime, 0).getDate();
MonthDayNum = new Date(Year, LastMonthTime, 0).getDate();
DepartETime = Year+'-'+(LastMonthTime>10?LastMonthTime:'0'+LastMonthTime)+'-'+(MonthDayNum>10?MonthDayNum:'0'+MonthDayNum)
}
name = 'erpMyCustomerOrder'
......
......@@ -72,8 +72,9 @@
<span></span>
<span>{{data.totalCommission}}</span>
</p>
<p >
<span v-if="data.peopelBonus" style="margin-right: 10px;">人头奖励:+{{data.peopelBonus}}</span>
<p style="margin-bottom: 3px;">
<el-tag v-if="data.peopelBonus" size="mini" type="danger" effect="dark" style="color: #ffff;">奖+{{data.peopelBonus}}</el-tag>
<!-- <span v-if="data.peopelBonus" style="margin-right: 10px;">奖励:+{{data.peopelBonus}}</span> -->
<span style="color: #BDBDBD;font-size: 13px;
padding: 0 0 5px 0;">{{data.periodsName}}</span>
</p>
......
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