ucservice 1.4.5 → 1.4.6

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.
@@ -14003,7 +14003,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
14003
14003
  //视频横向留白
14004
14004
  $(video).css('width', liHeight);
14005
14005
  $(video).css('height', 'auto');
14006
- $(video).css('left', 'calc(' + liHeight + 'px / 2' + ' - ' + liWidth + 'px / 2)');
14006
+ $(video).css('left', 'calc(' + liWidth + 'px / 2' + ' - ' + liHeight + 'px / 2)');
14007
14007
  $(video).css('top', 'calc(-' + liWidth / 2 + ' / ' + vHeight + ' * ' + vWidth + 'px + ' + liWidth + 'px / 2)');
14008
14008
  } else {
14009
14009
  //视频纵向留白
@@ -29776,12 +29776,64 @@ let record = {
29776
29776
  }
29777
29777
  }
29778
29778
  },
29779
+ queryCallRecordNet: {
29780
+ //获取通话录音录像
29781
+ url: '/scooper-record/data/call/queryCallRecords',
29782
+ method: 'GET',
29783
+ requestParam: {
29784
+ token: '',
29785
+ timeMin: '',
29786
+ timeMax: '',
29787
+ pageNumber: 1,
29788
+ fileType: 0,
29789
+ //0:录音,1:录像
29790
+ pageSize: 10
29791
+ },
29792
+ responseParam: {
29793
+ code: '',
29794
+ //返回结果状态码
29795
+ message: '',
29796
+ systemTime: '',
29797
+ //yyyy-MM-dd HH:mm:ss
29798
+ data: {
29799
+ pageNumber: 1,
29800
+ pageSize: 10,
29801
+ total: 1884,
29802
+ list: []
29803
+ }
29804
+ }
29805
+ },
29806
+ queryMeetingRecordNet: {
29807
+ //获取会议录音录像
29808
+ url: '/scooper-record/data/meeting/queryMeetingRecords',
29809
+ method: 'GET',
29810
+ requestParam: {
29811
+ token: '',
29812
+ timeMin: '',
29813
+ timeMax: '',
29814
+ pageNumber: 1,
29815
+ pageSize: 10
29816
+ },
29817
+ responseParam: {
29818
+ code: '',
29819
+ //返回结果状态码
29820
+ message: '',
29821
+ systemTime: '',
29822
+ //yyyy-MM-dd HH:mm:ss
29823
+ data: {
29824
+ pageNumber: 1,
29825
+ pageSize: 10,
29826
+ total: 1884,
29827
+ list: []
29828
+ }
29829
+ }
29830
+ },
29779
29831
  queryVideoNet: {
29780
29832
  //分页查询录像 (通话录像/会议录像)
29781
29833
 
29782
29834
  /***录像查询接口
29783
29835
  **/
29784
- url: '/scooper-record/data/record/queryRecord',
29836
+ url: '/scooper-record/data/video/queryVideo',
29785
29837
  requestParam: {
29786
29838
  token: '',
29787
29839
  recType: '',
@@ -31729,6 +31781,34 @@ const recordOp = sip => {
31729
31781
  }, '', net.method);
31730
31782
  });
31731
31783
  },
31784
+ callRecordListPage: function (param) {
31785
+ let net = record_url.queryCallRecordNet;
31786
+ return new Promise((resolve, reject) => {
31787
+ loadJson(server_ + net.url, { ...param
31788
+ }, function (ret) {
31789
+ if (ret.code == 0) {
31790
+ resolve(ret);
31791
+ } else {
31792
+ console.log("分页查询通话录音录像表失败", ret.code);
31793
+ reject(ret.code);
31794
+ }
31795
+ }, '', net.method);
31796
+ });
31797
+ },
31798
+ meetRecordListPage: function (param) {
31799
+ let net = record_url.queryMeetingRecordNet;
31800
+ return new Promise((resolve, reject) => {
31801
+ loadJson(server_ + net.url, { ...param
31802
+ }, function (ret) {
31803
+ if (ret.code == 0) {
31804
+ resolve(ret);
31805
+ } else {
31806
+ console.log("分页查询会议录音录像表失败", ret.code);
31807
+ reject(ret.code);
31808
+ }
31809
+ }, '', net.method);
31810
+ });
31811
+ },
31732
31812
  notifyPageList: function (param) {
31733
31813
  let net = record_url.queryRecordNotifyNet;
31734
31814
  return new Promise((resolve, reject) => {
Binary file