location.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view></view>
  3. </template>
  4. <script>
  5. let WebIM = require("../../../../../utils/WebIM")["default"];
  6. let msgType = require("../../../msgtype");
  7. let msgStorage = require("../../../msgstorage");
  8. export default {
  9. data() {
  10. return {};
  11. },
  12. components: {},
  13. props: {
  14. username: {
  15. type: Object,
  16. default: () => ({})
  17. },
  18. chatType: {
  19. type: String,
  20. default: msgType.chatType.SINGLE_CHAT
  21. }
  22. },
  23. methods: {
  24. isGroupChat() {
  25. return this.chatType == msgType.chatType.CHAT_ROOM;
  26. },
  27. getSendToParam() {
  28. return this.isGroupChat() ? this.username.groupId : this.username.your;
  29. },
  30. sendLocation() {
  31. var me = this;
  32. uni.authorize({
  33. scope: "scope.userLocation",
  34. fail() {
  35. uni.showToast({
  36. title: "已拒绝",
  37. icon: "none"
  38. });
  39. },
  40. success() {
  41. uni.chooseLocation({
  42. fail() {
  43. console.log(arguments);
  44. },
  45. complete() {
  46. console.log(arguments);
  47. },
  48. success(respData) {
  49. var id = WebIM.conn.getUniqueId();
  50. var msg = new WebIM.message(msgType.LOCATION, id);
  51. msg.set({
  52. msg: "",
  53. from: me.username.myName,
  54. to: me.getSendToParam(),
  55. roomType: false,
  56. lng: respData.longitude,
  57. lat: respData.latitude,
  58. addr: respData.address,
  59. chatType: me.chatType,
  60. success(id, serverMsgId) {}
  61. });
  62. if (me.chatType == msgType.chatType.CHAT_ROOM) {
  63. msg.setGroup("groupchat");
  64. }
  65. WebIM.conn.send(msg.body);
  66. let obj = {
  67. msg: msg,
  68. type: msgType.IMAGE
  69. }
  70. me.saveSendMsg(obj);
  71. }
  72. });
  73. }
  74. });
  75. },
  76. saveSendMsg(evt) {
  77. msgStorage.saveMsg(evt.msg, evt.type);
  78. }
  79. }
  80. };
  81. </script>