Commit 918aeba2 authored by youjie's avatar youjie

no message

parent dda20585
......@@ -3662,7 +3662,7 @@
);
} else {
this.chosenIndex = id;
if (localStorage.openMode && localStorage.openMode == 1)
if (localStorage.openMode && localStorage.openMode == 1){
if(url=='/SalesVolumeRank'){
this.$router.push({
path: url,
......@@ -3677,7 +3677,7 @@
});
}
else
}else
this.$router.push({
path: url,
query: {}
......
......@@ -285,6 +285,15 @@
</template>
</el-table-column>
<el-table-column width="70" prop="OrderNum"
label="团队状态">
<template slot-scope="scope">
<div class="tableTd">已结团</div>
<div>
未结团
</div>
</template>
</el-table-column>
<el-table-column width="70" prop="OrderNum"
label="订单数">
<template slot-scope="scope">
<div class="tableTd">{{scope.row.OrderNum?scope.row.OrderNum:scope.row.OrderNum}}</div>
......
......@@ -34,19 +34,30 @@
},
methods: {
goDetails(){
// let userInfo = this.getLocalStorage();
// console.log(this.type,'======')
let name = 'erpMyCustomerOrder'
this.$router.push({
name: name,
query: {
// UserId: Number(userInfo.EmployeeId),
Q_IsCollect: "2",
DepartSTime: this.obj.DepartSTime,
DepartETime: this.obj.DepartETime,
blank: 'y'
}
});
let userInfo = this.getLocalStorage();
let name
if(this.type!=4){
name = 'erpMyCustomerOrder'
this.$router.push({
name: name,
query: {
Q_IsCollect: "2",
DepartSTime: this.obj.DepartSTime,
DepartETime: this.obj.DepartETime,
blank: 'y'
}
});
}else{
name = 'TradeTicketUserDetails'
this.$router.push({
name: name,
query: {
UserId: Number(userInfo.EmployeeId),
blank: 'y'
}
});
}
}
}
};
......
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