|
@@ -1,9 +1,10 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
<el-row style="padding:10px 0px ;">
|
|
|
+ <el-button size="small" type="primary" @click="batchRemoveAll">全部移除</el-button>
|
|
|
<el-button size="small" type="primary" :disabled="multipleSelection.length==0" @click="batchRemove">批量移除</el-button>
|
|
|
<el-button size="small" type="primary" :disabled="multipleSelection.length==0" @click="batchMove">批量移动</el-button>
|
|
|
- <el-button size="small" type="primary" :disabled="multipleSelection.length==0" @click="batchConfirmPipe">批量确认</el-button>
|
|
|
+ <el-button size="small" type="primary" :disabled="multipleSelection.length==0" @click="batchConfirmCustomer">批量确认</el-button>
|
|
|
<el-button size="small" type="primary" :disabled="multipleSelection.length==0" @click="batchSetVillageName">小区设置</el-button>
|
|
|
</el-row>
|
|
|
<div class="tableheight">
|
|
@@ -167,11 +168,14 @@ export default {
|
|
|
batchRemove() {
|
|
|
this.$emit('batchRemove', this.multipleSelection)
|
|
|
},
|
|
|
+ batchRemoveAll() {
|
|
|
+ this.$emit('batchRemoveAll')
|
|
|
+ },
|
|
|
batchMove() {
|
|
|
this.$emit('batchMove', this.multipleSelection)
|
|
|
},
|
|
|
- batchConfirmPipe() {
|
|
|
- this.$emit('batchConfirmPipe', this.multipleSelection)
|
|
|
+ batchConfirmCustomer() {
|
|
|
+ this.$emit('batchConfirmCustomer', this.multipleSelection)
|
|
|
},
|
|
|
batchSetVillageName() {
|
|
|
this.$emit('batchSetVillageName', this.multipleSelection)
|
|
@@ -199,6 +203,6 @@ export default {
|
|
|
<style scoped>
|
|
|
.tableheight {
|
|
|
margin-top: 4px;
|
|
|
- height: calc(100% - 44px);
|
|
|
+ height: 400px;
|
|
|
}
|
|
|
</style>
|