Commit 918aeba2 authored by youjie's avatar youjie

no message

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