Commit 899343e7 authored by youjie's avatar youjie

no message

parent 0ed8dc52
...@@ -406,10 +406,17 @@ export default { ...@@ -406,10 +406,17 @@ export default {
$this.dataList[i].actuallyReceived = false; $this.dataList[i].actuallyReceived = false;
$this.dataList[i].cost = false; $this.dataList[i].cost = false;
} }
$this.emptyMore()
}); });
this.getList(); this.getList();
}, },
methods: { methods: {
// 清空下拉
emptyMore() {
this.dataList.forEach(item => {
return item.More = ''
})
},
// 获取业务员 // 获取业务员
Employee() { Employee() {
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
......
...@@ -369,10 +369,17 @@ export default { ...@@ -369,10 +369,17 @@ export default {
$this.dataList[i].actuallyReceived = false; $this.dataList[i].actuallyReceived = false;
$this.dataList[i].cost = false; $this.dataList[i].cost = false;
} }
$this.emptyMore()
}); });
this.getList(); this.getList();
}, },
methods: { methods: {
// 清空下拉
emptyMore() {
this.dataList.forEach(item => {
return item.More = ''
})
},
// 获取业务员 // 获取业务员
Employee() { Employee() {
let userInfo = this.getLocalStorage(); let userInfo = this.getLocalStorage();
......
...@@ -381,6 +381,7 @@ export default { ...@@ -381,6 +381,7 @@ export default {
this.userInfo = this.getLocalStorage(); this.userInfo = this.getLocalStorage();
this.MsgBus.$on("closeaddContacts", function() { this.MsgBus.$on("closeaddContacts", function() {
$this.commissionPopUpVisible = false; $this.commissionPopUpVisible = false;
$this.emptyMore()
}); });
}, },
methods: { methods: {
......
...@@ -129,14 +129,14 @@ ...@@ -129,14 +129,14 @@
label="年终" label="年终"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.BranchName!='微途科技'?scope.row.BonusMoney:'-'}} {{scope.row.EmName!='微途'?scope.row.BonusMoney:'-'}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="年终比例" label="年终比例"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
{{scope.row.BranchName!='微途科技'?scope.row.BonusRate+'%':'-'}} {{scope.row.EmName!='微途'?scope.row.BonusRate+'%':'-'}}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
......
...@@ -563,9 +563,16 @@ ...@@ -563,9 +563,16 @@
$this.dataList[i].actuallyReceived = false $this.dataList[i].actuallyReceived = false
$this.dataList[i].cost = false $this.dataList[i].cost = false
} }
$this.emptyMore()
}); });
}, },
methods: { methods: {
// 清空下拉
emptyMore() {
this.dataList.forEach(item => {
return item.More = ''
})
},
// 点击单号 // 点击单号
clickSingleNumber(item) { clickSingleNumber(item) {
this.currentOrder = item; this.currentOrder = item;
......
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