Commit 412d6e51 authored by 罗超's avatar 罗超

Merge branch 'master' of http://gitlab.oytour.com/huaguohao/crm into master

parents 9bdf2e3b 4b2ed914
...@@ -77,8 +77,7 @@ ...@@ -77,8 +77,7 @@
}, },
mounted() { mounted() {
this.GetGuestTeamList() this.GetGuestTeamList()
let $this = this let $this = this;
}, },
methods: { methods: {
tuichu() { tuichu() {
...@@ -88,24 +87,21 @@ ...@@ -88,24 +87,21 @@
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
let str = '' let str = ''
this.multipleSelection.map((x, i) => {
str = str + x + ',' let msg = {
GuestId: this.GuestId
}
this.apipost('/api/SellEvent/ExitGuestTeam', msg, res => {
if (res.data.resultCode == 1) {
this.$message.success('操作成功')
this.GetGuestTeamList()
}
}) })
// let msg = { }).catch(() => {
// CustomerId: this.CustomerId, this.$message({
// IDs: str.substring(0, str.length - 1) type: 'info',
// } message: '已取消'
// this.apipost('/api/Customer/ExitCustomerJurisdiction', msg, res => { });
// if (res.data.resultCode == 1) {
// this.$message.success('操作成功')
// this.GetGuestTeamList()
// }
// })
// }).catch(() => {
// this.$message({
// type: 'info',
// message: '已取消'
// });
}); });
}, },
yichu() { yichu() {
......
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