Commit 899343e7 authored by youjie's avatar youjie

no message

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