mdm-client 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/App.vue +15 -9
- package/src/assets/image/common/platform_app_icon.png +0 -0
- package/src/assets/image/common/platform_mini_icon.png +0 -0
- package/src/assets/image/common/platform_pc_icon.png +0 -0
- package/src/assets/image/common/platform_volte_icon.png +0 -0
- package/src/components/LiveMulti/LiveMulti.vue +0 -10
- package/src/components/LiveMultipleMeeting/LiveMultipleMeeting.vue +402 -151
- package/src/components/other/addressBook.vue +139 -19
- package/src/components/other/customGroupDialog.vue +2 -1
- package/src/components/other/editGroupDialog.vue +2 -0
- package/src/components/other/memberManage.vue +61 -4
- package/src/utils/api.js +9 -0
- package/src/utils/livekit/live-client-esm.js +1 -1
- package/src/utils/livekit/live-client-esm-old.js +0 -1
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -26,8 +26,6 @@
|
|
|
26
26
|
:org="org"
|
|
27
27
|
:baseUrl="baseUrl"
|
|
28
28
|
:token="token"
|
|
29
|
-
:defaultInviteWay="defaultInviteWay"
|
|
30
|
-
:isCustomizeMiniInvitations="isCustomizeMiniInvitations"
|
|
31
29
|
ref="liveMultiRef"
|
|
32
30
|
@inviteReceiveClose="closeMultiInviteReceive"
|
|
33
31
|
/>
|
|
@@ -62,11 +60,9 @@ export default {
|
|
|
62
60
|
isPointInviteReceiveShow: false,
|
|
63
61
|
isMultiInviteReceiveShow: false,
|
|
64
62
|
inviteData: {},
|
|
65
|
-
defaultInviteWay: 'identity',
|
|
66
|
-
isCustomizeMiniInvitations: false,
|
|
67
63
|
baseUrl: "https://10.2.12.103:8443",
|
|
68
64
|
roomServerUrl: "wss://10.2.12.103:8443",
|
|
69
|
-
token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.
|
|
65
|
+
token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJMb2dpbkluZm8iOnsibG9naW5Db2RlIjoibGl1amluYm8iLCJ1c2VyTmFtZSI6IuWImOmUpuazoiIsInRlbmFudElEIjo3OTA2MDE5OTgyNTAxMDAwLCJkZXB0VHJlZSI6Ijc5MDYwNzA4NTA5MDEwMDAvNzkwNzk1MzkyNjcwMTAwMCIsInVzZXJJRCI6NzkwNjI1NzUyOTgwMTAwMCwicm9sZUlEIjo3OTA2MDc0MzkyMDAxMDAwLCJ2ZXJzaW9uSUQiOjc5MDc5NDk3NjQyMDEwMDB9LCJwbGF0Zm9ybUlEIjowLCJwaG9uZSI6IiIsImV4cCI6MTc1OTc3MDA5OCwiaWF0IjoxNzU5MDUwMDk4fQ.XZ5Lx7dgBGNnrpoAOeauibgl0H8vLV9zij7qXv6n6vE",
|
|
70
66
|
liveClient: null,
|
|
71
67
|
showMessage: null,
|
|
72
68
|
};
|
|
@@ -86,8 +82,6 @@ export default {
|
|
|
86
82
|
this.meetingReadyDialogType = 'launch';
|
|
87
83
|
this.inviteList = e?.inviteList ? e.inviteList : [];
|
|
88
84
|
this.deviceList = e?.deviceList ? e.deviceList : [];
|
|
89
|
-
this.defaultInviteWay = e?.defaultInviteWay || 'identity';
|
|
90
|
-
this.isCustomizeMiniInvitations = e?.isCustomizeMiniInvitations || false;
|
|
91
85
|
this.isMeetingReadyDialogShow = true;
|
|
92
86
|
},
|
|
93
87
|
multiMeetingAppeInvite(e) {
|
|
@@ -228,9 +222,21 @@ export default {
|
|
|
228
222
|
},
|
|
229
223
|
openMeeingReadyDialog() {
|
|
230
224
|
this.launchMultiMeeting({
|
|
231
|
-
inviteList: [
|
|
225
|
+
inviteList: [
|
|
226
|
+
{
|
|
227
|
+
id: '7906257529801000',
|
|
228
|
+
label: 'test01',
|
|
229
|
+
phone: '18151665421',
|
|
230
|
+
source: '外部'
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
id: '7906257529801001',
|
|
234
|
+
label: 'test03',
|
|
235
|
+
phone: '17382678367',
|
|
236
|
+
source: 'volte'
|
|
237
|
+
}
|
|
238
|
+
],
|
|
232
239
|
deviceList: [],
|
|
233
|
-
defaultInviteWay: "identity",
|
|
234
240
|
});
|
|
235
241
|
},
|
|
236
242
|
},
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -28,9 +28,7 @@
|
|
|
28
28
|
:joinType="multiMeetingData.joinType"
|
|
29
29
|
:tempInviteList="inviteList"
|
|
30
30
|
:deviceList="deviceList"
|
|
31
|
-
:isCustomizeMiniInvitations="isCustomizeMiniInvitations"
|
|
32
31
|
:miniPagePath="miniPagePath"
|
|
33
|
-
:defaultInviteWay="defaultInviteWay"
|
|
34
32
|
:baseUrl="baseUrl"
|
|
35
33
|
:userData="userData"
|
|
36
34
|
:isInMeeting="isInMeeting"
|
|
@@ -104,18 +102,10 @@ export default {
|
|
|
104
102
|
type: Array,
|
|
105
103
|
default: () => []
|
|
106
104
|
},
|
|
107
|
-
isCustomizeMiniInvitations: {
|
|
108
|
-
type: Boolean,
|
|
109
|
-
default: false
|
|
110
|
-
},
|
|
111
105
|
miniPagePath: {
|
|
112
106
|
type: String,
|
|
113
107
|
default: ""
|
|
114
108
|
},
|
|
115
|
-
defaultInviteWay: {
|
|
116
|
-
type: String,
|
|
117
|
-
default: "identity"
|
|
118
|
-
},
|
|
119
109
|
baseUrl: {
|
|
120
110
|
type: String,
|
|
121
111
|
default: ""
|