diff --git a/pages/im/components/show/showCall.vue b/pages/im/components/show/showCall.vue
index 7f08570..8e6f592 100644
--- a/pages/im/components/show/showCall.vue
+++ b/pages/im/components/show/showCall.vue
@@ -1,47 +1,55 @@
- {{ name }}
-
-
-
+ {{ contact(message.senderUserId).name }}
+
+
+
diff --git a/pages/im/components/show/showImage.vue b/pages/im/components/show/showImage.vue
index 7654eb6..4b78be9 100644
--- a/pages/im/components/show/showImage.vue
+++ b/pages/im/components/show/showImage.vue
@@ -1,110 +1,140 @@
-
-
- {{ contact(message.senderUserId).name }}
-
-
-
-
-
-
-
-
-
diff --git a/pages/im/components/show/showVoice.vue b/pages/im/components/show/showVoice.vue
index 0349c8d..d6f6f6c 100644
--- a/pages/im/components/show/showVoice.vue
+++ b/pages/im/components/show/showVoice.vue
@@ -1,16 +1,25 @@
-
- {{ contact(message.senderUserId).name }}
-
-
-
-
- {{ duration }}"
+
+
+
+
+
+
+
+
+ {{ contact(message.senderUserId).name }}
+
+
+
+
+ {{ duration }}"
+
+
-
@@ -79,8 +88,8 @@
if (this.onPlay) {
this.stopPlay()
return
- }
- this.onPlay = true
+ }
+ this.onPlay = true
// 如果下载到了本地,那么直接播放,否则调用下载语音消息接口,下载后再播放
if (this.message.content.local && this.message.content.local.indexOf('///data/user/') < 0) {
this.playVoice(this.message.content.local)
@@ -162,59 +171,82 @@