ptopcall.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <view v-if="visible" class="wraper">
  3. <view>
  4. <button type="default" @tap="callVideo">会议模式</button>
  5. <button
  6. type="default"
  7. @tap="cancel"
  8. > 取消 </button>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. visible: false
  17. }
  18. },
  19. methods: {
  20. show(){
  21. this.visible= true
  22. },
  23. cancel(){
  24. console.log('取消')
  25. this.visible= false
  26. /* this.setData({
  27. visible: false
  28. }) */
  29. },
  30. callAudio(){
  31. //this.triggerEvent('makeAudioCall', 'single')
  32. this.$emit("makeAudioCall", null, 'single');
  33. this.cancel()
  34. },
  35. callVideo(){
  36. console.log('callVideo')
  37. this.$emit("makeVideoCall", null, 'single');
  38. //this.triggerEvent('makeVideoCall', 'single')
  39. this.cancel()
  40. }
  41. }
  42. }
  43. </script>
  44. <style>
  45. .wraper{
  46. position: fixed;
  47. bottom: 0;
  48. height: 200rpx;
  49. width: 100%;
  50. z-index: 9;
  51. background: #FFFFFF;
  52. }
  53. .other-button-hover {
  54. background-color: blue;
  55. }
  56. .button-cancel {
  57. position: absolute;
  58. width: 100%;
  59. bottom: 0;
  60. }
  61. </style>