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.
@@ -14012,7 +14012,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
14012
14012
  //视频横向留白
14013
14013
  $(video).css('width', liHeight);
14014
14014
  $(video).css('height', 'auto');
14015
- $(video).css('left', 'calc(' + liHeight + 'px / 2' + ' - ' + liWidth + 'px / 2)');
14015
+ $(video).css('left', 'calc(' + liWidth + 'px / 2' + ' - ' + liHeight + 'px / 2)');
14016
14016
  $(video).css('top', 'calc(-' + liWidth / 2 + ' / ' + vHeight + ' * ' + vWidth + 'px + ' + liWidth + 'px / 2)');
14017
14017
  } else {
14018
14018
  //视频纵向留白
@@ -29785,12 +29785,64 @@ let record = {
29785
29785
  }
29786
29786
  }
29787
29787
  },
29788
+ queryCallRecordNet: {
29789
+ //获取通话录音录像
29790
+ url: '/scooper-record/data/call/queryCallRecords',
29791
+ method: 'GET',
29792
+ requestParam: {
29793
+ token: '',
29794
+ timeMin: '',
29795
+ timeMax: '',
29796
+ pageNumber: 1,
29797
+ fileType: 0,
29798
+ //0:录音,1:录像
29799
+ pageSize: 10
29800
+ },
29801
+ responseParam: {
29802
+ code: '',
29803
+ //返回结果状态码
29804
+ message: '',
29805
+ systemTime: '',
29806
+ //yyyy-MM-dd HH:mm:ss
29807
+ data: {
29808
+ pageNumber: 1,
29809
+ pageSize: 10,
29810
+ total: 1884,
29811
+ list: []
29812
+ }
29813
+ }
29814
+ },
29815
+ queryMeetingRecordNet: {
29816
+ //获取会议录音录像
29817
+ url: '/scooper-record/data/meeting/queryMeetingRecords',
29818
+ method: 'GET',
29819
+ requestParam: {
29820
+ token: '',
29821
+ timeMin: '',
29822
+ timeMax: '',
29823
+ pageNumber: 1,
29824
+ pageSize: 10
29825
+ },
29826
+ responseParam: {
29827
+ code: '',
29828
+ //返回结果状态码
29829
+ message: '',
29830
+ systemTime: '',
29831
+ //yyyy-MM-dd HH:mm:ss
29832
+ data: {
29833
+ pageNumber: 1,
29834
+ pageSize: 10,
29835
+ total: 1884,
29836
+ list: []
29837
+ }
29838
+ }
29839
+ },
29788
29840
  queryVideoNet: {
29789
29841
  //分页查询录像 (通话录像/会议录像)
29790
29842
 
29791
29843
  /***录像查询接口
29792
29844
  **/
29793
- url: '/scooper-record/data/record/queryRecord',
29845
+ url: '/scooper-record/data/video/queryVideo',
29794
29846
  requestParam: {
29795
29847
  token: '',
29796
29848
  recType: '',
@@ -31738,6 +31790,34 @@ const recordOp = sip => {
31738
31790
  }, '', net.method);
31739
31791
  });
31740
31792
  },
31793
+ callRecordListPage: function (param) {
31794
+ let net = record_url.queryCallRecordNet;
31795
+ return new Promise((resolve, reject) => {
31796
+ loadJson(server_ + net.url, { ...param
31797
+ }, function (ret) {
31798
+ if (ret.code == 0) {
31799
+ resolve(ret);
31800
+ } else {
31801
+ console.log("分页查询通话录音录像表失败", ret.code);
31802
+ reject(ret.code);
31803
+ }
31804
+ }, '', net.method);
31805
+ });
31806
+ },
31807
+ meetRecordListPage: function (param) {
31808
+ let net = record_url.queryMeetingRecordNet;
31809
+ return new Promise((resolve, reject) => {
31810
+ loadJson(server_ + net.url, { ...param
31811
+ }, function (ret) {
31812
+ if (ret.code == 0) {
31813
+ resolve(ret);
31814
+ } else {
31815
+ console.log("分页查询会议录音录像表失败", ret.code);
31816
+ reject(ret.code);
31817
+ }
31818
+ }, '', net.method);
31819
+ });
31820
+ },
31741
31821
  notifyPageList: function (param) {
31742
31822
  let net = record_url.queryRecordNotifyNet;
31743
31823
  return new Promise((resolve, reject) => {
Binary file