|
@@ -244,6 +244,7 @@ import AddHouse from '@/views/customerManagement/roomChose/addHouse.vue'
|
|
|
import SubscribeIndex from '@/views/customerManagement/subscribe/subscribeIndex.vue'
|
|
|
import AddIntentionalDeposit from '@/views/customerManagement/intentionalDeposit/addIntentionalDeposit.vue'
|
|
|
import AddAbandon from '@/views/customerManagement/numberManagement/addAbandon.vue'
|
|
|
+import constant from '@/static/utils/constant'
|
|
|
|
|
|
export default {
|
|
|
name: 'NumberManagement',
|
|
@@ -420,7 +421,11 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
downLoad() {
|
|
|
-
|
|
|
+ console.log('this.multipleSelection', this.multipleSelection)
|
|
|
+ this.multipleSelection.forEach(item => {
|
|
|
+ const url = constant.BASE_URI + '/CustomerManagementController/download?id=' + item.id
|
|
|
+ window.open(url, '_blank')
|
|
|
+ })
|
|
|
},
|
|
|
checkedBox(i) {
|
|
|
if (this.groupIds.includes(i)) {
|