ucservice 1.0.2 → 1.0.5
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/dist/ucservice.common.js +94 -83
- package/dist/ucservice.common.js.gz +0 -0
- package/dist/ucservice.common.js.map +1 -1
- package/dist/ucservice.umd.js +94 -83
- package/dist/ucservice.umd.js.gz +0 -0
- package/dist/ucservice.umd.js.map +1 -1
- package/dist/ucservice.umd.min.js +1 -1
- package/dist/ucservice.umd.min.js.gz +0 -0
- package/dist/ucservice.umd.min.js.map +1 -1
- package/index.js +86 -84
- package/package.json +1 -1
package/dist/ucservice.umd.js
CHANGED
|
@@ -25392,6 +25392,16 @@ __webpack_require__.d(__webpack_exports__, "meetOp", function() { return /* reex
|
|
|
25392
25392
|
__webpack_require__.d(__webpack_exports__, "messageOp", function() { return /* reexport */ messageOp; });
|
|
25393
25393
|
__webpack_require__.d(__webpack_exports__, "recordOp", function() { return /* reexport */ recordOp; });
|
|
25394
25394
|
__webpack_require__.d(__webpack_exports__, "videoOp", function() { return /* reexport */ videoOp; });
|
|
25395
|
+
__webpack_require__.d(__webpack_exports__, "account", function() { return /* reexport */ account_net_url; });
|
|
25396
|
+
__webpack_require__.d(__webpack_exports__, "aduio", function() { return /* reexport */ aduio_net_url; });
|
|
25397
|
+
__webpack_require__.d(__webpack_exports__, "aduio_video", function() { return /* reexport */ aduio_video_net_url; });
|
|
25398
|
+
__webpack_require__.d(__webpack_exports__, "dept_ry", function() { return /* reexport */ dept_ry_url; });
|
|
25399
|
+
__webpack_require__.d(__webpack_exports__, "dept", function() { return /* reexport */ dept_url; });
|
|
25400
|
+
__webpack_require__.d(__webpack_exports__, "location", function() { return /* reexport */ location_url; });
|
|
25401
|
+
__webpack_require__.d(__webpack_exports__, "meet", function() { return /* reexport */ meet_url; });
|
|
25402
|
+
__webpack_require__.d(__webpack_exports__, "message", function() { return /* reexport */ message_url; });
|
|
25403
|
+
__webpack_require__.d(__webpack_exports__, "record", function() { return /* reexport */ record_url; });
|
|
25404
|
+
__webpack_require__.d(__webpack_exports__, "video", function() { return /* reexport */ video_net_url; });
|
|
25395
25405
|
|
|
25396
25406
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
25397
25407
|
// This file is imported into lib/wc client bundles.
|
|
@@ -30130,13 +30140,13 @@ const doLogout = function (token) {
|
|
|
30130
30140
|
};
|
|
30131
30141
|
const keepHeart = function (token) {
|
|
30132
30142
|
let net = account_net_url.heartBeatNet;
|
|
30133
|
-
loadJson(net.url, {
|
|
30143
|
+
return () => loadJson(net.url, {
|
|
30134
30144
|
token
|
|
30135
30145
|
}, function (ret) {
|
|
30136
30146
|
if (ret.code == 0) {
|
|
30137
|
-
console("心跳设置完成", ret.code);
|
|
30147
|
+
console.log("心跳设置完成", ret.code);
|
|
30138
30148
|
} else {
|
|
30139
|
-
console("心跳设置失败", ret.code);
|
|
30149
|
+
console.log("心跳设置失败", ret.code);
|
|
30140
30150
|
}
|
|
30141
30151
|
}, '', net.method);
|
|
30142
30152
|
};
|
|
@@ -30148,10 +30158,10 @@ const accountOp = {
|
|
|
30148
30158
|
loadJson(net.url, { ...param
|
|
30149
30159
|
}, function (ret) {
|
|
30150
30160
|
if (ret.code == 0) {
|
|
30151
|
-
console("账号新增完成", ret.code);
|
|
30161
|
+
console.log("账号新增完成", ret.code);
|
|
30152
30162
|
resolve(ret);
|
|
30153
30163
|
} else {
|
|
30154
|
-
console("账号新增失败", ret.code);
|
|
30164
|
+
console.log("账号新增失败", ret.code);
|
|
30155
30165
|
reject(ret.code);
|
|
30156
30166
|
}
|
|
30157
30167
|
}, '', net.method);
|
|
@@ -30163,10 +30173,10 @@ const accountOp = {
|
|
|
30163
30173
|
loadJson(net.url, { ...param
|
|
30164
30174
|
}, function (ret) {
|
|
30165
30175
|
if (ret.code == 0) {
|
|
30166
|
-
console("账号更新完成", ret.code);
|
|
30176
|
+
console.log("账号更新完成", ret.code);
|
|
30167
30177
|
resolve(ret);
|
|
30168
30178
|
} else {
|
|
30169
|
-
console("账号更新失败", ret.code);
|
|
30179
|
+
console.log("账号更新失败", ret.code);
|
|
30170
30180
|
reject(ret.code);
|
|
30171
30181
|
}
|
|
30172
30182
|
}, '', net.method);
|
|
@@ -30178,10 +30188,10 @@ const accountOp = {
|
|
|
30178
30188
|
loadJson(net.url, { ...param
|
|
30179
30189
|
}, function (ret) {
|
|
30180
30190
|
if (ret.code == 0) {
|
|
30181
|
-
console("账号删除完成", ret.code);
|
|
30191
|
+
console.log("账号删除完成", ret.code);
|
|
30182
30192
|
resolve(ret);
|
|
30183
30193
|
} else {
|
|
30184
|
-
console("账号删除失败", ret.code);
|
|
30194
|
+
console.log("账号删除失败", ret.code);
|
|
30185
30195
|
reject(ret.code);
|
|
30186
30196
|
}
|
|
30187
30197
|
}, '', net.method);
|
|
@@ -30193,10 +30203,10 @@ const accountOp = {
|
|
|
30193
30203
|
loadJson(net.url, { ...param
|
|
30194
30204
|
}, function (ret) {
|
|
30195
30205
|
if (ret.code == 0) {
|
|
30196
|
-
console("账号密码重置完成", ret.code);
|
|
30206
|
+
console.log("账号密码重置完成", ret.code);
|
|
30197
30207
|
resolve(ret);
|
|
30198
30208
|
} else {
|
|
30199
|
-
console("账号密码重置失败", ret.code);
|
|
30209
|
+
console.log("账号密码重置失败", ret.code);
|
|
30200
30210
|
reject(ret.code);
|
|
30201
30211
|
}
|
|
30202
30212
|
}, '', net.method);
|
|
@@ -30208,10 +30218,10 @@ const accountOp = {
|
|
|
30208
30218
|
loadJson(net.url, { ...param
|
|
30209
30219
|
}, function (ret) {
|
|
30210
30220
|
if (ret.code == 0) {
|
|
30211
|
-
console("当前账号密码重置完成", ret.code);
|
|
30221
|
+
console.log("当前账号密码重置完成", ret.code);
|
|
30212
30222
|
resolve(ret);
|
|
30213
30223
|
} else {
|
|
30214
|
-
console("当前账号密码重置失败", ret.code);
|
|
30224
|
+
console.log("当前账号密码重置失败", ret.code);
|
|
30215
30225
|
reject(ret.code);
|
|
30216
30226
|
}
|
|
30217
30227
|
}, '', net.method);
|
|
@@ -30225,7 +30235,7 @@ const accountOp = {
|
|
|
30225
30235
|
if (ret.code == 0) {
|
|
30226
30236
|
resolve(ret);
|
|
30227
30237
|
} else {
|
|
30228
|
-
console("账号列表查询失败", ret.code);
|
|
30238
|
+
console.log("账号列表查询失败", ret.code);
|
|
30229
30239
|
reject(ret.code);
|
|
30230
30240
|
}
|
|
30231
30241
|
}, '', net.method);
|
|
@@ -30239,7 +30249,7 @@ const accountOp = {
|
|
|
30239
30249
|
if (ret.code == 0) {
|
|
30240
30250
|
resolve(ret);
|
|
30241
30251
|
} else {
|
|
30242
|
-
console("账号列表分页查询失败", ret.code);
|
|
30252
|
+
console.log("账号列表分页查询失败", ret.code);
|
|
30243
30253
|
reject(ret.code);
|
|
30244
30254
|
}
|
|
30245
30255
|
}, '', net.method);
|
|
@@ -30253,7 +30263,7 @@ const accountOp = {
|
|
|
30253
30263
|
if (ret.code == 0) {
|
|
30254
30264
|
resolve(ret);
|
|
30255
30265
|
} else {
|
|
30256
|
-
console("账号关联部门成员查询失败", ret.code);
|
|
30266
|
+
console.log("账号关联部门成员查询失败", ret.code);
|
|
30257
30267
|
reject(ret.code);
|
|
30258
30268
|
}
|
|
30259
30269
|
}, '', net.method);
|
|
@@ -30267,7 +30277,7 @@ const accountOp = {
|
|
|
30267
30277
|
if (ret.code == 0) {
|
|
30268
30278
|
resolve(ret);
|
|
30269
30279
|
} else {
|
|
30270
|
-
console("账号详情查询失败", ret.code);
|
|
30280
|
+
console.log("账号详情查询失败", ret.code);
|
|
30271
30281
|
reject(ret.code);
|
|
30272
30282
|
}
|
|
30273
30283
|
}, '', net.method);
|
|
@@ -30283,7 +30293,7 @@ const aduioOp = {
|
|
|
30283
30293
|
if (ret.code == 0) {
|
|
30284
30294
|
resolve(ret);
|
|
30285
30295
|
} else {
|
|
30286
|
-
console("语音呼叫失败", ret.code);
|
|
30296
|
+
console.log("语音呼叫失败", ret.code);
|
|
30287
30297
|
reject(ret.code);
|
|
30288
30298
|
}
|
|
30289
30299
|
}, '', net.method);
|
|
@@ -30297,7 +30307,7 @@ const aduioOp = {
|
|
|
30297
30307
|
if (ret.code == 0) {
|
|
30298
30308
|
resolve(ret);
|
|
30299
30309
|
} else {
|
|
30300
|
-
console("语音呼叫接听失败", ret.code);
|
|
30310
|
+
console.log("语音呼叫接听失败", ret.code);
|
|
30301
30311
|
reject(ret.code);
|
|
30302
30312
|
}
|
|
30303
30313
|
}, '', net.method);
|
|
@@ -30311,7 +30321,7 @@ const aduioOp = {
|
|
|
30311
30321
|
if (ret.code == 0) {
|
|
30312
30322
|
resolve(ret);
|
|
30313
30323
|
} else {
|
|
30314
|
-
console("保持通话失败", ret.code);
|
|
30324
|
+
console.log("保持通话失败", ret.code);
|
|
30315
30325
|
reject(ret.code);
|
|
30316
30326
|
}
|
|
30317
30327
|
}, '', net.method);
|
|
@@ -30325,7 +30335,7 @@ const aduioOp = {
|
|
|
30325
30335
|
if (ret.code == 0) {
|
|
30326
30336
|
resolve(ret);
|
|
30327
30337
|
} else {
|
|
30328
|
-
console("取消保持通话失败", ret.code);
|
|
30338
|
+
console.log("取消保持通话失败", ret.code);
|
|
30329
30339
|
reject(ret.code);
|
|
30330
30340
|
}
|
|
30331
30341
|
}, '', net.method);
|
|
@@ -30339,7 +30349,7 @@ const aduioOp = {
|
|
|
30339
30349
|
if (ret.code == 0) {
|
|
30340
30350
|
resolve(ret);
|
|
30341
30351
|
} else {
|
|
30342
|
-
console("通话转接失败", ret.code);
|
|
30352
|
+
console.log("通话转接失败", ret.code);
|
|
30343
30353
|
reject(ret.code);
|
|
30344
30354
|
}
|
|
30345
30355
|
}, '', net.method);
|
|
@@ -30353,7 +30363,7 @@ const aduioOp = {
|
|
|
30353
30363
|
if (ret.code == 0) {
|
|
30354
30364
|
resolve(ret);
|
|
30355
30365
|
} else {
|
|
30356
|
-
console("取消通话转接失败", ret.code);
|
|
30366
|
+
console.log("取消通话转接失败", ret.code);
|
|
30357
30367
|
reject(ret.code);
|
|
30358
30368
|
}
|
|
30359
30369
|
}, '', net.method);
|
|
@@ -30367,7 +30377,7 @@ const aduioOp = {
|
|
|
30367
30377
|
if (ret.code == 0) {
|
|
30368
30378
|
resolve(ret);
|
|
30369
30379
|
} else {
|
|
30370
|
-
console("强插失败", ret.code);
|
|
30380
|
+
console.log("强插失败", ret.code);
|
|
30371
30381
|
reject(ret.code);
|
|
30372
30382
|
}
|
|
30373
30383
|
}, '', net.method);
|
|
@@ -30381,7 +30391,7 @@ const aduioOp = {
|
|
|
30381
30391
|
if (ret.code == 0) {
|
|
30382
30392
|
resolve(ret);
|
|
30383
30393
|
} else {
|
|
30384
|
-
console("强拆失败", ret.code);
|
|
30394
|
+
console.log("强拆失败", ret.code);
|
|
30385
30395
|
reject(ret.code);
|
|
30386
30396
|
}
|
|
30387
30397
|
}, '', net.method);
|
|
@@ -30395,7 +30405,7 @@ const aduioOp = {
|
|
|
30395
30405
|
if (ret.code == 0) {
|
|
30396
30406
|
resolve(ret);
|
|
30397
30407
|
} else {
|
|
30398
|
-
console("监听失败", ret.code);
|
|
30408
|
+
console.log("监听失败", ret.code);
|
|
30399
30409
|
reject(ret.code);
|
|
30400
30410
|
}
|
|
30401
30411
|
}, '', net.method);
|
|
@@ -30409,7 +30419,7 @@ const aduioOp = {
|
|
|
30409
30419
|
if (ret.code == 0) {
|
|
30410
30420
|
resolve(ret);
|
|
30411
30421
|
} else {
|
|
30412
|
-
console("组呼通知失败", ret.code);
|
|
30422
|
+
console.log("组呼通知失败", ret.code);
|
|
30413
30423
|
reject(ret.code);
|
|
30414
30424
|
}
|
|
30415
30425
|
}, '', net.method);
|
|
@@ -30423,7 +30433,7 @@ const aduioOp = {
|
|
|
30423
30433
|
if (ret.code == 0) {
|
|
30424
30434
|
resolve(ret);
|
|
30425
30435
|
} else {
|
|
30426
|
-
console("组呼通知分页查询失败", ret.code);
|
|
30436
|
+
console.log("组呼通知分页查询失败", ret.code);
|
|
30427
30437
|
reject(ret.code);
|
|
30428
30438
|
}
|
|
30429
30439
|
}, '', net.method);
|
|
@@ -30437,7 +30447,7 @@ const aduioOp = {
|
|
|
30437
30447
|
if (ret.code == 0) {
|
|
30438
30448
|
resolve(ret);
|
|
30439
30449
|
} else {
|
|
30440
|
-
console("呼叫记录分页查询失败", ret.code);
|
|
30450
|
+
console.log("呼叫记录分页查询失败", ret.code);
|
|
30441
30451
|
reject(ret.code);
|
|
30442
30452
|
}
|
|
30443
30453
|
}, '', net.method);
|
|
@@ -30453,7 +30463,7 @@ const aduioVideoOp = {
|
|
|
30453
30463
|
if (ret.code == 0) {
|
|
30454
30464
|
resolve(ret);
|
|
30455
30465
|
} else {
|
|
30456
|
-
console("语音或视频拆线/挂断失败", ret.code);
|
|
30466
|
+
console.log("语音或视频拆线/挂断失败", ret.code);
|
|
30457
30467
|
reject(ret.code);
|
|
30458
30468
|
}
|
|
30459
30469
|
}, '', net.method);
|
|
@@ -30467,7 +30477,7 @@ const aduioVideoOp = {
|
|
|
30467
30477
|
if (ret.code == 0) {
|
|
30468
30478
|
resolve(ret);
|
|
30469
30479
|
} else {
|
|
30470
|
-
console("获取所有号码状态失败", ret.code);
|
|
30480
|
+
console.log("获取所有号码状态失败", ret.code);
|
|
30471
30481
|
reject(ret.code);
|
|
30472
30482
|
}
|
|
30473
30483
|
}, '', net.method);
|
|
@@ -30481,7 +30491,7 @@ const aduioVideoOp = {
|
|
|
30481
30491
|
if (ret.code == 0) {
|
|
30482
30492
|
resolve(ret);
|
|
30483
30493
|
} else {
|
|
30484
|
-
console("获取指定号码状态失败", ret.code);
|
|
30494
|
+
console.log("获取指定号码状态失败", ret.code);
|
|
30485
30495
|
reject(ret.code);
|
|
30486
30496
|
}
|
|
30487
30497
|
}, '', net.method);
|
|
@@ -30497,7 +30507,7 @@ const deptOp = {
|
|
|
30497
30507
|
if (ret.code == 0) {
|
|
30498
30508
|
resolve(ret);
|
|
30499
30509
|
} else {
|
|
30500
|
-
console("新增部门失败", ret.code);
|
|
30510
|
+
console.log("新增部门失败", ret.code);
|
|
30501
30511
|
reject(ret.code);
|
|
30502
30512
|
}
|
|
30503
30513
|
}, '', net.method);
|
|
@@ -30511,7 +30521,7 @@ const deptOp = {
|
|
|
30511
30521
|
if (ret.code == 0) {
|
|
30512
30522
|
resolve(ret);
|
|
30513
30523
|
} else {
|
|
30514
|
-
console("更新部门失败", ret.code);
|
|
30524
|
+
console.log("更新部门失败", ret.code);
|
|
30515
30525
|
reject(ret.code);
|
|
30516
30526
|
}
|
|
30517
30527
|
}, '', net.method);
|
|
@@ -30525,7 +30535,7 @@ const deptOp = {
|
|
|
30525
30535
|
if (ret.code == 0) {
|
|
30526
30536
|
resolve(ret);
|
|
30527
30537
|
} else {
|
|
30528
|
-
console("删除部门失败", ret.code);
|
|
30538
|
+
console.log("删除部门失败", ret.code);
|
|
30529
30539
|
reject(ret.code);
|
|
30530
30540
|
}
|
|
30531
30541
|
}, '', net.method);
|
|
@@ -30539,7 +30549,7 @@ const deptOp = {
|
|
|
30539
30549
|
if (ret.code == 0) {
|
|
30540
30550
|
resolve(ret);
|
|
30541
30551
|
} else {
|
|
30542
|
-
console("查询部门信息失败", ret.code);
|
|
30552
|
+
console.log("查询部门信息失败", ret.code);
|
|
30543
30553
|
reject(ret.code);
|
|
30544
30554
|
}
|
|
30545
30555
|
}, '', net.method);
|
|
@@ -30553,7 +30563,7 @@ const deptOp = {
|
|
|
30553
30563
|
if (ret.code == 0) {
|
|
30554
30564
|
resolve(ret);
|
|
30555
30565
|
} else {
|
|
30556
|
-
console("分页查询部门列表失败", ret.code);
|
|
30566
|
+
console.log("分页查询部门列表失败", ret.code);
|
|
30557
30567
|
reject(ret.code);
|
|
30558
30568
|
}
|
|
30559
30569
|
}, '', net.method);
|
|
@@ -30567,7 +30577,7 @@ const deptOp = {
|
|
|
30567
30577
|
if (ret.code == 0) {
|
|
30568
30578
|
resolve(ret);
|
|
30569
30579
|
} else {
|
|
30570
|
-
console("查询部门列表失败", ret.code);
|
|
30580
|
+
console.log("查询部门列表失败", ret.code);
|
|
30571
30581
|
reject(ret.code);
|
|
30572
30582
|
}
|
|
30573
30583
|
}, '', net.method);
|
|
@@ -30581,7 +30591,7 @@ const deptOp = {
|
|
|
30581
30591
|
if (ret.code == 0) {
|
|
30582
30592
|
resolve(ret);
|
|
30583
30593
|
} else {
|
|
30584
|
-
console("查询部门下属层级关系失败", ret.code);
|
|
30594
|
+
console.log("查询部门下属层级关系失败", ret.code);
|
|
30585
30595
|
reject(ret.code);
|
|
30586
30596
|
}
|
|
30587
30597
|
}, '', net.method);
|
|
@@ -30595,7 +30605,7 @@ const deptOp = {
|
|
|
30595
30605
|
if (ret.code == 0) {
|
|
30596
30606
|
resolve(ret);
|
|
30597
30607
|
} else {
|
|
30598
|
-
console("查询部门所在层级的关系路径失败", ret.code);
|
|
30608
|
+
console.log("查询部门所在层级的关系路径失败", ret.code);
|
|
30599
30609
|
reject(ret.code);
|
|
30600
30610
|
}
|
|
30601
30611
|
}, '', net.method);
|
|
@@ -30609,7 +30619,7 @@ const deptOp = {
|
|
|
30609
30619
|
if (ret.code == 0) {
|
|
30610
30620
|
resolve(ret);
|
|
30611
30621
|
} else {
|
|
30612
|
-
console("查询部门所在树形的关系失败", ret.code);
|
|
30622
|
+
console.log("查询部门所在树形的关系失败", ret.code);
|
|
30613
30623
|
reject(ret.code);
|
|
30614
30624
|
}
|
|
30615
30625
|
}, '', net.method);
|
|
@@ -30623,7 +30633,7 @@ const deptOp = {
|
|
|
30623
30633
|
if (ret.code == 0) {
|
|
30624
30634
|
resolve(ret);
|
|
30625
30635
|
} else {
|
|
30626
|
-
console("查询部门成员数量", ret.code);
|
|
30636
|
+
console.log("查询部门成员数量", ret.code);
|
|
30627
30637
|
reject(ret.code);
|
|
30628
30638
|
}
|
|
30629
30639
|
}, '', net.method);
|
|
@@ -30637,7 +30647,7 @@ const deptOp = {
|
|
|
30637
30647
|
if (ret.code == 0) {
|
|
30638
30648
|
resolve(ret);
|
|
30639
30649
|
} else {
|
|
30640
|
-
console("修改部门排序失败", ret.code);
|
|
30650
|
+
console.log("修改部门排序失败", ret.code);
|
|
30641
30651
|
reject(ret.code);
|
|
30642
30652
|
}
|
|
30643
30653
|
}, '', net.method);
|
|
@@ -30651,7 +30661,7 @@ const deptOp = {
|
|
|
30651
30661
|
if (ret.code == 0) {
|
|
30652
30662
|
resolve(ret);
|
|
30653
30663
|
} else {
|
|
30654
|
-
console("查询部门成员列表失败", ret.code);
|
|
30664
|
+
console.log("查询部门成员列表失败", ret.code);
|
|
30655
30665
|
reject(ret.code);
|
|
30656
30666
|
}
|
|
30657
30667
|
}, '', net.method);
|
|
@@ -30665,7 +30675,7 @@ const deptOp = {
|
|
|
30665
30675
|
if (ret.code == 0) {
|
|
30666
30676
|
resolve(ret);
|
|
30667
30677
|
} else {
|
|
30668
|
-
console("查询行政区划列表失败", ret.code);
|
|
30678
|
+
console.log("查询行政区划列表失败", ret.code);
|
|
30669
30679
|
reject(ret.code);
|
|
30670
30680
|
}
|
|
30671
30681
|
}, '', net.method);
|
|
@@ -30681,7 +30691,7 @@ const deptRyOp = {
|
|
|
30681
30691
|
if (ret.code == 0) {
|
|
30682
30692
|
resolve(ret);
|
|
30683
30693
|
} else {
|
|
30684
|
-
console("新增部门成员失败", ret.code);
|
|
30694
|
+
console.log("新增部门成员失败", ret.code);
|
|
30685
30695
|
reject(ret.code);
|
|
30686
30696
|
}
|
|
30687
30697
|
}, '', net.method);
|
|
@@ -30695,7 +30705,7 @@ const deptRyOp = {
|
|
|
30695
30705
|
if (ret.code == 0) {
|
|
30696
30706
|
resolve(ret);
|
|
30697
30707
|
} else {
|
|
30698
|
-
console("更新部门成员失败", ret.code);
|
|
30708
|
+
console.log("更新部门成员失败", ret.code);
|
|
30699
30709
|
reject(ret.code);
|
|
30700
30710
|
}
|
|
30701
30711
|
}, '', net.method);
|
|
@@ -30709,7 +30719,7 @@ const deptRyOp = {
|
|
|
30709
30719
|
if (ret.code == 0) {
|
|
30710
30720
|
resolve(ret);
|
|
30711
30721
|
} else {
|
|
30712
|
-
console("删除部门成员失败", ret.code);
|
|
30722
|
+
console.log("删除部门成员失败", ret.code);
|
|
30713
30723
|
reject(ret.code);
|
|
30714
30724
|
}
|
|
30715
30725
|
}, '', net.method);
|
|
@@ -30723,7 +30733,7 @@ const deptRyOp = {
|
|
|
30723
30733
|
if (ret.code == 0) {
|
|
30724
30734
|
resolve(ret);
|
|
30725
30735
|
} else {
|
|
30726
|
-
console("查询部门成员信息失败", ret.code);
|
|
30736
|
+
console.log("查询部门成员信息失败", ret.code);
|
|
30727
30737
|
reject(ret.code);
|
|
30728
30738
|
}
|
|
30729
30739
|
}, '', net.method);
|
|
@@ -30737,7 +30747,7 @@ const deptRyOp = {
|
|
|
30737
30747
|
if (ret.code == 0) {
|
|
30738
30748
|
resolve(ret);
|
|
30739
30749
|
} else {
|
|
30740
|
-
console("分页查询部门成员失败", ret.code);
|
|
30750
|
+
console.log("分页查询部门成员失败", ret.code);
|
|
30741
30751
|
reject(ret.code);
|
|
30742
30752
|
}
|
|
30743
30753
|
}, '', net.method);
|
|
@@ -30751,7 +30761,7 @@ const deptRyOp = {
|
|
|
30751
30761
|
if (ret.code == 0) {
|
|
30752
30762
|
resolve(ret);
|
|
30753
30763
|
} else {
|
|
30754
|
-
console("查询部门成员列表失败", ret.code);
|
|
30764
|
+
console.log("查询部门成员列表失败", ret.code);
|
|
30755
30765
|
reject(ret.code);
|
|
30756
30766
|
}
|
|
30757
30767
|
}, '', net.method);
|
|
@@ -30765,7 +30775,7 @@ const deptRyOp = {
|
|
|
30765
30775
|
if (ret.code == 0) {
|
|
30766
30776
|
resolve(ret);
|
|
30767
30777
|
} else {
|
|
30768
|
-
console("通过关联号码查询部门成员信息失败", ret.code);
|
|
30778
|
+
console.log("通过关联号码查询部门成员信息失败", ret.code);
|
|
30769
30779
|
reject(ret.code);
|
|
30770
30780
|
}
|
|
30771
30781
|
}, '', net.method);
|
|
@@ -30779,7 +30789,7 @@ const deptRyOp = {
|
|
|
30779
30789
|
if (ret.code == 0) {
|
|
30780
30790
|
resolve(ret);
|
|
30781
30791
|
} else {
|
|
30782
|
-
console("查询部门成员所在层级路径失败", ret.code);
|
|
30792
|
+
console.log("查询部门成员所在层级路径失败", ret.code);
|
|
30783
30793
|
reject(ret.code);
|
|
30784
30794
|
}
|
|
30785
30795
|
}, '', net.method);
|
|
@@ -30793,7 +30803,7 @@ const deptRyOp = {
|
|
|
30793
30803
|
if (ret.code == 0) {
|
|
30794
30804
|
resolve(ret);
|
|
30795
30805
|
} else {
|
|
30796
|
-
console("查询成员关联账号失败", ret.code);
|
|
30806
|
+
console.log("查询成员关联账号失败", ret.code);
|
|
30797
30807
|
reject(ret.code);
|
|
30798
30808
|
}
|
|
30799
30809
|
}, '', net.method);
|
|
@@ -30807,7 +30817,7 @@ const deptRyOp = {
|
|
|
30807
30817
|
if (ret.code == 0) {
|
|
30808
30818
|
resolve(ret);
|
|
30809
30819
|
} else {
|
|
30810
|
-
console("修改成员排序失败", ret.code);
|
|
30820
|
+
console.log("修改成员排序失败", ret.code);
|
|
30811
30821
|
reject(ret.code);
|
|
30812
30822
|
}
|
|
30813
30823
|
}, '', net.method);
|
|
@@ -30821,7 +30831,7 @@ const deptRyOp = {
|
|
|
30821
30831
|
if (ret.code == 0) {
|
|
30822
30832
|
resolve(ret);
|
|
30823
30833
|
} else {
|
|
30824
|
-
console("多id查询成员列表失败", ret.code);
|
|
30834
|
+
console.log("多id查询成员列表失败", ret.code);
|
|
30825
30835
|
reject(ret.code);
|
|
30826
30836
|
}
|
|
30827
30837
|
}, '', net.method);
|
|
@@ -30837,7 +30847,7 @@ const locationOp = {
|
|
|
30837
30847
|
if (ret.code == 0) {
|
|
30838
30848
|
resolve(ret);
|
|
30839
30849
|
} else {
|
|
30840
|
-
console("上报位置信息失败", ret.code);
|
|
30850
|
+
console.log("上报位置信息失败", ret.code);
|
|
30841
30851
|
reject(ret.code);
|
|
30842
30852
|
}
|
|
30843
30853
|
}, '', net.method, {
|
|
@@ -30853,7 +30863,7 @@ const locationOp = {
|
|
|
30853
30863
|
if (ret.code == 0) {
|
|
30854
30864
|
resolve(ret);
|
|
30855
30865
|
} else {
|
|
30856
|
-
console("查询人员轨迹失败", ret.code);
|
|
30866
|
+
console.log("查询人员轨迹失败", ret.code);
|
|
30857
30867
|
reject(ret.code);
|
|
30858
30868
|
}
|
|
30859
30869
|
}, '', net.method);
|
|
@@ -30867,7 +30877,7 @@ const locationOp = {
|
|
|
30867
30877
|
if (ret.code == 0) {
|
|
30868
30878
|
resolve(ret);
|
|
30869
30879
|
} else {
|
|
30870
|
-
console("分页查询人员轨迹失败", ret.code);
|
|
30880
|
+
console.log("分页查询人员轨迹失败", ret.code);
|
|
30871
30881
|
reject(ret.code);
|
|
30872
30882
|
}
|
|
30873
30883
|
}, '', net.method);
|
|
@@ -30883,7 +30893,7 @@ const meetOp = {
|
|
|
30883
30893
|
if (ret.code == 0) {
|
|
30884
30894
|
resolve(ret);
|
|
30885
30895
|
} else {
|
|
30886
|
-
console("发起会议失败", ret.code);
|
|
30896
|
+
console.log("发起会议失败", ret.code);
|
|
30887
30897
|
reject(ret.code);
|
|
30888
30898
|
}
|
|
30889
30899
|
}, '', net.method);
|
|
@@ -30897,7 +30907,7 @@ const meetOp = {
|
|
|
30897
30907
|
if (ret.code == 0) {
|
|
30898
30908
|
resolve(ret);
|
|
30899
30909
|
} else {
|
|
30900
|
-
console("结束会议失败", ret.code);
|
|
30910
|
+
console.log("结束会议失败", ret.code);
|
|
30901
30911
|
reject(ret.code);
|
|
30902
30912
|
}
|
|
30903
30913
|
}, '', net.method);
|
|
@@ -30911,7 +30921,7 @@ const meetOp = {
|
|
|
30911
30921
|
if (ret.code == 0) {
|
|
30912
30922
|
resolve(ret);
|
|
30913
30923
|
} else {
|
|
30914
|
-
console("加入视频会议失败", ret.code);
|
|
30924
|
+
console.log("加入视频会议失败", ret.code);
|
|
30915
30925
|
reject(ret.code);
|
|
30916
30926
|
}
|
|
30917
30927
|
}, '', net.method);
|
|
@@ -30925,7 +30935,7 @@ const meetOp = {
|
|
|
30925
30935
|
if (ret.code == 0) {
|
|
30926
30936
|
resolve(ret);
|
|
30927
30937
|
} else {
|
|
30928
|
-
console("加入语音会议失败", ret.code);
|
|
30938
|
+
console.log("加入语音会议失败", ret.code);
|
|
30929
30939
|
reject(ret.code);
|
|
30930
30940
|
}
|
|
30931
30941
|
}, '', net.method);
|
|
@@ -30939,7 +30949,7 @@ const meetOp = {
|
|
|
30939
30949
|
if (ret.code == 0) {
|
|
30940
30950
|
resolve(ret);
|
|
30941
30951
|
} else {
|
|
30942
|
-
console("查询会议列表失败", ret.code);
|
|
30952
|
+
console.log("查询会议列表失败", ret.code);
|
|
30943
30953
|
reject(ret.code);
|
|
30944
30954
|
}
|
|
30945
30955
|
}, '', net.method);
|
|
@@ -30953,7 +30963,7 @@ const meetOp = {
|
|
|
30953
30963
|
if (ret.code == 0) {
|
|
30954
30964
|
resolve(ret);
|
|
30955
30965
|
} else {
|
|
30956
|
-
console("查询会议信息失败", ret.code);
|
|
30966
|
+
console.log("查询会议信息失败", ret.code);
|
|
30957
30967
|
reject(ret.code);
|
|
30958
30968
|
}
|
|
30959
30969
|
}, '', net.method);
|
|
@@ -30967,7 +30977,7 @@ const meetOp = {
|
|
|
30967
30977
|
if (ret.code == 0) {
|
|
30968
30978
|
resolve(ret);
|
|
30969
30979
|
} else {
|
|
30970
|
-
console("查询与会成员列表失败", ret.code);
|
|
30980
|
+
console.log("查询与会成员列表失败", ret.code);
|
|
30971
30981
|
reject(ret.code);
|
|
30972
30982
|
}
|
|
30973
30983
|
}, '', net.method);
|
|
@@ -30983,7 +30993,7 @@ const messageOp = {
|
|
|
30983
30993
|
if (ret.code == 0) {
|
|
30984
30994
|
resolve(ret);
|
|
30985
30995
|
} else {
|
|
30986
|
-
console("发送短信失败", ret.code);
|
|
30996
|
+
console.log("发送短信失败", ret.code);
|
|
30987
30997
|
reject(ret.code);
|
|
30988
30998
|
}
|
|
30989
30999
|
}, '', net.method);
|
|
@@ -30997,7 +31007,7 @@ const messageOp = {
|
|
|
30997
31007
|
if (ret.code == 0) {
|
|
30998
31008
|
resolve(ret);
|
|
30999
31009
|
} else {
|
|
31000
|
-
console("分页查询短信记录失败", ret.code);
|
|
31010
|
+
console.log("分页查询短信记录失败", ret.code);
|
|
31001
31011
|
reject(ret.code);
|
|
31002
31012
|
}
|
|
31003
31013
|
}, '', net.method);
|
|
@@ -31011,7 +31021,7 @@ const messageOp = {
|
|
|
31011
31021
|
if (ret.code == 0) {
|
|
31012
31022
|
resolve(ret);
|
|
31013
31023
|
} else {
|
|
31014
|
-
console("查询短信信息失败", ret.code);
|
|
31024
|
+
console.log("查询短信信息失败", ret.code);
|
|
31015
31025
|
reject(ret.code);
|
|
31016
31026
|
}
|
|
31017
31027
|
}, '', net.method);
|
|
@@ -31025,7 +31035,7 @@ const messageOp = {
|
|
|
31025
31035
|
if (ret.code == 0) {
|
|
31026
31036
|
resolve(ret);
|
|
31027
31037
|
} else {
|
|
31028
|
-
console("查询某条群发短信的发送状态失败", ret.code);
|
|
31038
|
+
console.log("查询某条群发短信的发送状态失败", ret.code);
|
|
31029
31039
|
reject(ret.code);
|
|
31030
31040
|
}
|
|
31031
31041
|
}, '', net.method);
|
|
@@ -31039,7 +31049,7 @@ const messageOp = {
|
|
|
31039
31049
|
if (ret.code == 0) {
|
|
31040
31050
|
resolve(ret);
|
|
31041
31051
|
} else {
|
|
31042
|
-
console("删除短信失败", ret.code);
|
|
31052
|
+
console.log("删除短信失败", ret.code);
|
|
31043
31053
|
reject(ret.code);
|
|
31044
31054
|
}
|
|
31045
31055
|
}, '', net.method);
|
|
@@ -31053,7 +31063,7 @@ const messageOp = {
|
|
|
31053
31063
|
if (ret.code == 0) {
|
|
31054
31064
|
resolve(ret);
|
|
31055
31065
|
} else {
|
|
31056
|
-
console("删除短信失败", ret.code);
|
|
31066
|
+
console.log("删除短信失败", ret.code);
|
|
31057
31067
|
reject(ret.code);
|
|
31058
31068
|
}
|
|
31059
31069
|
}, '', net.method);
|
|
@@ -31067,7 +31077,7 @@ const messageOp = {
|
|
|
31067
31077
|
if (ret.code == 0) {
|
|
31068
31078
|
resolve(ret);
|
|
31069
31079
|
} else {
|
|
31070
|
-
console("查询接收短信信息失败", ret.code);
|
|
31080
|
+
console.log("查询接收短信信息失败", ret.code);
|
|
31071
31081
|
reject(ret.code);
|
|
31072
31082
|
}
|
|
31073
31083
|
}, '', net.method);
|
|
@@ -31081,7 +31091,7 @@ const messageOp = {
|
|
|
31081
31091
|
if (ret.code == 0) {
|
|
31082
31092
|
resolve(ret);
|
|
31083
31093
|
} else {
|
|
31084
|
-
console("阅读接收短信失败", ret.code);
|
|
31094
|
+
console.log("阅读接收短信失败", ret.code);
|
|
31085
31095
|
reject(ret.code);
|
|
31086
31096
|
}
|
|
31087
31097
|
}, '', net.method);
|
|
@@ -31095,7 +31105,7 @@ const messageOp = {
|
|
|
31095
31105
|
if (ret.code == 0) {
|
|
31096
31106
|
resolve(ret);
|
|
31097
31107
|
} else {
|
|
31098
|
-
console("获取未读短信数量失败", ret.code);
|
|
31108
|
+
console.log("获取未读短信数量失败", ret.code);
|
|
31099
31109
|
reject(ret.code);
|
|
31100
31110
|
}
|
|
31101
31111
|
}, '', net.method);
|
|
@@ -31111,7 +31121,7 @@ const recordOp = {
|
|
|
31111
31121
|
if (ret.code == 0) {
|
|
31112
31122
|
resolve(ret);
|
|
31113
31123
|
} else {
|
|
31114
|
-
console("分页查询录音记录列表失败", ret.code);
|
|
31124
|
+
console.log("分页查询录音记录列表失败", ret.code);
|
|
31115
31125
|
reject(ret.code);
|
|
31116
31126
|
}
|
|
31117
31127
|
}, '', net.method);
|
|
@@ -31125,7 +31135,7 @@ const recordOp = {
|
|
|
31125
31135
|
if (ret.code == 0) {
|
|
31126
31136
|
resolve(ret);
|
|
31127
31137
|
} else {
|
|
31128
|
-
console("分页查询录像记录列表失败", ret.code);
|
|
31138
|
+
console.log("分页查询录像记录列表失败", ret.code);
|
|
31129
31139
|
reject(ret.code);
|
|
31130
31140
|
}
|
|
31131
31141
|
}, '', net.method);
|
|
@@ -31139,7 +31149,7 @@ const recordOp = {
|
|
|
31139
31149
|
if (ret.code == 0) {
|
|
31140
31150
|
resolve(ret);
|
|
31141
31151
|
} else {
|
|
31142
|
-
console("分页查询通知音记录列表失败", ret.code);
|
|
31152
|
+
console.log("分页查询通知音记录列表失败", ret.code);
|
|
31143
31153
|
reject(ret.code);
|
|
31144
31154
|
}
|
|
31145
31155
|
}, '', net.method);
|
|
@@ -31153,7 +31163,7 @@ const recordOp = {
|
|
|
31153
31163
|
if (ret.code == 0) {
|
|
31154
31164
|
resolve(ret);
|
|
31155
31165
|
} else {
|
|
31156
|
-
console("分页查询通知音记录列表失败", ret.code);
|
|
31166
|
+
console.log("分页查询通知音记录列表失败", ret.code);
|
|
31157
31167
|
reject(ret.code);
|
|
31158
31168
|
}
|
|
31159
31169
|
}, '', net.method);
|
|
@@ -31167,7 +31177,7 @@ const recordOp = {
|
|
|
31167
31177
|
if (ret.code == 0) {
|
|
31168
31178
|
resolve(ret);
|
|
31169
31179
|
} else {
|
|
31170
|
-
console("录音录像下载失败", ret.code);
|
|
31180
|
+
console.log("录音录像下载失败", ret.code);
|
|
31171
31181
|
reject(ret.code);
|
|
31172
31182
|
}
|
|
31173
31183
|
}, '', net.method);
|
|
@@ -31181,7 +31191,7 @@ const recordOp = {
|
|
|
31181
31191
|
if (ret.code == 0) {
|
|
31182
31192
|
resolve(ret);
|
|
31183
31193
|
} else {
|
|
31184
|
-
console("录音录像删除失败", ret.code);
|
|
31194
|
+
console.log("录音录像删除失败", ret.code);
|
|
31185
31195
|
reject(ret.code);
|
|
31186
31196
|
}
|
|
31187
31197
|
}, '', net.method);
|
|
@@ -31197,7 +31207,7 @@ const videoOp = {
|
|
|
31197
31207
|
if (ret.code == 0) {
|
|
31198
31208
|
resolve(ret);
|
|
31199
31209
|
} else {
|
|
31200
|
-
console("拨打视频失败", ret.code);
|
|
31210
|
+
console.log("拨打视频失败", ret.code);
|
|
31201
31211
|
reject(ret.code);
|
|
31202
31212
|
}
|
|
31203
31213
|
}, '', net.method);
|
|
@@ -31211,13 +31221,14 @@ const videoOp = {
|
|
|
31211
31221
|
if (ret.code == 0) {
|
|
31212
31222
|
resolve(ret);
|
|
31213
31223
|
} else {
|
|
31214
|
-
console("加载视频树节点数据失败", ret.code);
|
|
31224
|
+
console.log("加载视频树节点数据失败", ret.code);
|
|
31215
31225
|
reject(ret.code);
|
|
31216
31226
|
}
|
|
31217
31227
|
}, '', net.method);
|
|
31218
31228
|
});
|
|
31219
31229
|
}
|
|
31220
31230
|
};
|
|
31231
|
+
//接口相关参数以及返回值,暴露出去可以供开发者查看
|
|
31221
31232
|
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib-no-default.js
|
|
31222
31233
|
|
|
31223
31234
|
|