396316021
1 year ago
4 changed files with 82 additions and 2 deletions
@ -0,0 +1,27 @@
|
||||
<script> |
||||
import {seizeChat} from "../../api/other"; |
||||
|
||||
export default { |
||||
name: "index", |
||||
methods: { |
||||
handleSeize(id){ |
||||
seizeChat({ |
||||
chat_id:id |
||||
}).then((res) => { |
||||
console.log(res) |
||||
}); |
||||
} |
||||
}, |
||||
onLoad(option) { |
||||
this.handleSeize(option.id); |
||||
}, |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
|
||||
</template> |
||||
|
||||
<style scoped lang="scss"> |
||||
|
||||
</style> |
Loading…
Reference in new issue