Ver Código Fonte

Merge remote-tracking branch 'origin/dev-security' into dev-security

liuwenxun 4 anos atrás
pai
commit
32785134b2

+ 8 - 1
security-protection-platform/src/api/usermana/index.js

@ -50,7 +50,14 @@ const api = {
50 50
      return $default.delete(`/sp/employeeManagement/deleteEmployee?employeeId=${data.employeeId}`).catch((err) => { return err })
51 51
    }
52 52
  },
53
53
  // 新增用户
54
  creteEmployee(params) {
55
    return $default.post('/sp/employeeManagement/createEmployee', params)
56
  },
57
  // 获取职务列表
58
  getJobPositionList() {
59
    return $default.post('/sp/employeeManagement/queryJobPositionList')
60
  },
54 61
  // 获取单个用户信息
55 62
  getOneEmployee (params) {
56 63
    return $default.get('/sp/employeeManagement/queryOneEmployee', params)

+ 223 - 40
security-protection-platform/src/modules/usermana/components/modal/addUser.vue

@ -1,9 +1,9 @@
1 1
<template>
2
  <t-modal :visibled.sync="visibled" :mask-closable="false">
2
  <t-modal :visibled.sync="isVisibled" :mask-closable="false">
3 3
    <template slot="header">
4 4
      <div class="device-modal-title">{{ isEdit?'用户编辑':'新增用户' }}</div>
5 5
    </template>
6
    <t-form :model="addUserModal" :rules="addUserModalRules" label-position="right">
6
    <t-form ref="addUserModal" :model="addUserModal" :rules="addUserModalRules" label-position="right">
7 7
      <t-form-item label="姓名:" prop="name">
8 8
        <t-input v-model="addUserModal.name" placeholder="请输入姓名"></t-input>
9 9
      </t-form-item>
@ -16,11 +16,11 @@
16 16
        </t-select>
17 17
      </t-form-item>
18 18
      <t-form-item v-if="addUserModal.apartments!==''" label="部门:" prop="organizeCode">
19
        <t-select-tree v-model="addUserModal.organizeCode" :node-data="departmentTypesList" width="200px" node-key="id"></t-select-tree>
19
        <t-select-tree v-model="addUserModal.organizeCode" :node-data="departmentTypesList" node-key="id"></t-select-tree>
20 20
      </t-form-item>
21 21
      <t-form-item label="职务:" prop="mainJobPosition">
22 22
        <t-select v-model="addUserModal.mainJobPosition" placeholder="请选择职务" clearable>
23
          <t-option v-for="(item,index) in dataList" :value="item.value" :key="index">{{ item.name }}</t-option>
23
          <t-option v-for="(item,index) in jobPoisitonList" :value="item.code" :key="index">{{ item.value }}</t-option>
24 24
        </t-select>
25 25
      </t-form-item>
26 26
      <t-form-item label="年龄:" prop="birthday">
@ -30,18 +30,37 @@
30 30
        <t-input v-model="addUserModal.mainWirelessCall" placeholder="请输入11位手机号"></t-input>
31 31
      </t-form-item>
32 32
      <t-form-item label="人脸图片:" prop="facePicture">
33
        <t-input v-model="addUserModal.facePicture" placeholder="请输入手机号"></t-input>
33
        <t-upload
34
          ref="uploader"
35
          :show-uploaded="true"
36
          :allowed-ext="['jpg','jpeg','png']"
37
          :max-size="2048"
38
          :before-upload="$_onUploadBeforeUpload"
39
          :data="{picture:'11d'}"
40
          multiple
41
          style="width:120px;height:160px;background-color:#FFFFFF;"
42
          type="drag"
43
          action="http://10.19.90.34:8018/sp/employeeManagement/uploadEmployeePicture"
44
          class="demo-upload-list"
45
        >
46
          <div class="picture-upload">
47
            <t-icon class="upload-icon" icon="plus-outline"></t-icon>
48
            <span style="color:rgba(0, 0, 0, 0.45)">上传照片</span>
49
          </div>
50
        </t-upload>
51
        <span style="color:rgba(0, 0, 0, 0.45);font-size:12px">照片格式:jpg、png或bmp文件,且不超过2M</span>
34 52
      </t-form-item>
35 53
    </t-form>
36 54
    <template slot="footer">
37 55
      <t-button @click="resetModalData">取消</t-button>
38 56
      <t-button v-if="isEdit" :loading="loadingSubmit" color="primary" @click="submitModalData">修改</t-button>
39
      <t-button v-else :loading="loadingSubmit" color="primary" @click="submitModalData">提交</t-button>
57
      <t-button v-else color="primary" @click="submitModalData">提交</t-button>
40 58
    </template>
41 59
  </t-modal>
42 60
</template>
43 61
44 62
<script>
63
import sysapi from '@/api/usermana'
45 64
export default {
46 65
  props: {
47 66
    visible: {
@ -52,31 +71,27 @@ export default {
52 71
    companyList: {
53 72
      type: Array,
54 73
      default: () => []
55
    },
56
    // 公司对应部门列表
57
    departmentTypesList: {
58
      type: Array,
59
      default: () => []
60 74
    }
61 75
  },
62 76
  data() {
77
    // 手机号验证
78
    // const VALIDATEPASSCHECK = (rule, value, callback) => {
79
    //   if (value === '') {
80
    //     callback(new Error('请输入11位手机号'))
81
    //   } else if (value.length > 0 & value.length !== 11) {
82
    //     callback(new Error('手机号格式不正确'))
83
    //   } else {
84
    //     callback()
85
    //   }
86
    // }
63 87
    return {
64 88
      // 是否为编辑状态
65 89
      isEdit: false,
66
      dataList: [
67
        {
68
          name: '数据一',
69
          value: 1
70
        },
71
        {
72
          name: '数据二',
73
          value: 2
74
        },
75
        {
76
          name: '数据三',
77
          value: 3
78
        }
79
      ],
90
      // 部门列表
91
      departmentTypesList: [],
92
      // 职务列表
93
      uploadList: [],
94
      jobPoisitonList: [],
80 95
      // 新增用户表单
81 96
      addUserModal: {
82 97
        name: '',
@ -86,7 +101,7 @@ export default {
86 101
        mainJobPosition: '',
87 102
        birthday: '',
88 103
        mainWirelessCall: '',
89
        facePicture: ''
104
        facePicture: '123'
90 105
      },
91 106
      // 新增用户表单规则
92 107
      addUserModalRules: {
@ -96,7 +111,7 @@ export default {
96 111
        code: [
97 112
          { required: true, message: '员工编号不能为空', trigger: 'blur' }
98 113
        ],
99
        field4: [
114
        apartments: [
100 115
          { required: true, message: '公司不能为空' }
101 116
        ],
102 117
        organizeCode: [
@ -109,7 +124,7 @@ export default {
109 124
          { required: true, message: '年龄不能为空', trigger: 'blur' }
110 125
        ],
111 126
        mainWirelessCall: [
112
          { required: true, message: '手机不能为空', trigger: 'blur' }
127
          { required: true, message: '请输入11位手机号', trigger: 'blur' }
113 128
        ],
114 129
        facePicture: [
115 130
          { required: true, message: '图片不能为空', trigger: 'blur' }
@ -118,33 +133,201 @@ export default {
118 133
    }
119 134
  },
120 135
  computed: {
121
    // 显示/隐藏对话框
122
    visibled: {
123
      set(val) {
124
        this.$emit('visibled', val)
136
    isVisibled: {
137
      set (val) {
138
        this.$emit('update:visible', val)
125 139
      },
126
      get() {
140
      get () {
141
        this.getJobPositionList()
127 142
        return this.visible
128 143
      }
129 144
    }
130 145
  },
146
  watch: {
147
    'addUserModal.apartments' (val) {
148
      // 重置部门回显
149
      this.addUserModal.organizeCode = ''
150
      // 查询部门列表
151
      this.queryCycleChildOrg(val)
152
    }
153
  },
154
  mounted() {
155
    this.getJobPositionList()
156
  },
131 157
  methods: {
132 158
    // 确认新增用户
133 159
    submitModalData() {
134
      this.visible = false
135
      console.log(this.visibled)
136
      console.log(this.visible);
160
      this.$refs['addUserModal'].validate((valid) => {
161
        if (valid) {
162
          this.isVisibled = false
163
          let obj = {
164
            name: this.addUserModal.name, // 员工姓名
165
            code: this.addUserModal.code, // 员工编号
166
            organizeCode: this.addUserModal.organizeCode, // 部门CODE
167
            mainWirelessCall: this.addUserModal.mainWirelessCall, // 手机号码
168
            mainJobPosition: this.addUserModal.mainJobPosition, // 职务
169
            field1: this.addUserModal.facePicture, // 照片标识
170
            field4: this.addUserModal.apartments, // 公司ID
171
            birthday: Math.round(new Date() / 1000) // 生日(时间戳)
172
          }
173
          sysapi.creteEmployee({params: obj}).then(res => {
174
            console.log(res)
175
            if (res.data.success === true) {
176
              this.$Message.success('新增成功')
177
            } else {
178
              console.log(res.data.fail.message)
179
              this.$Message.success(res.data.fail.message)
180
            }
181
          })
182
        }
183
      })
137 184
    },
138 185
    // 重置表单数据
139 186
    resetModalData () {
140
      // this.$refs['activityForm'].resetFields()
187
      this.$refs['addUserModal'].resetFields()
141 188
      this.imgUrl = ''
142
      this.visibled = false
189
      this.isVisibled = false
190
    },
191
    // 查询职务列表
192
    async getJobPositionList() {
193
      const res = await sysapi.getJobPositionList()
194
      if (res.status === 200) {
195
        this.jobPoisitonList = res.data.data
196
      } else {
197
        this.$Message.danger('职务类型列表数据获取失败!')
198
      }
199
    },
200
    // 查询部门列表
201
    async queryCycleChildOrg (id) {
202
      const res = await sysapi.queryCycleChildOrg(id)
203
      if (res.status === 200) {
204
        const data = []
205
        // 递归 实现tree组件所需部门数据结构
206
        this.nextDepartment(res.data, data)
207
        // 深拷贝data
208
        const data1 = JSON.parse(JSON.stringify(data))
209
        // 用部门id映射关系代替code与parentCode父子映射关系
210
        data.forEach(item => {
211
          // 删除pid为"-1"的的pid属性,否则tree渲染的时候没有根节点渲染不出来
212
          if (item.pid === '-1') {
213
            delete item.pid
214
          }
215
          item.id = item.orgId
216
          data1.some((item1) => {
217
            if (item.pid === item1.id) {
218
              item.pid = item1.orgId
219
            } else {
220
              return false
221
            }
222
          })
223
        })
224
        // eslint-disable-next-line no-return-assign
225
        this.departmentTypesList = data.filter(item => item.data = item.id)
226
      } else {
227
        this.$Message.danger('部门类型列表数据获取失败!')
228
      }
229
    },
230
    startPickerDateChange() {
231
    },
232
    // 如果部门还有下级 递归
233
    nextDepartment (data, arr) {
234
      if (data.length > 0) {
235
        data.forEach(item => {
236
          arr.push({
237
            orgId: item.id + '',
238
            id: item.code,
239
            label: item.name,
240
            pid: item.parentCode
241
          })
242
          this.nextDepartment(item.departments, arr)
243
        })
244
      }
245
    },
246
    $_onDeleteIconClick (file) {
247
      this.$refs.uploader.removeFile(file)
248
    },
249
    $_onUploadRemoveFlie (file, fileList) {
250
      this.uploadList = fileList
251
    },
252
    $_onUploadPreviewFlie (file) {
253
      console.log(file)
254
    },
255
    $_onUploadProgress (e, file) {
256
      console.log(e)
257
      console.log(file)
258
    },
259
    $_onUploadSuccess (res, file) {
260
      this.imgUrl = res.data.data.toolPictureUrl
261
      this.addDeviceModalForm.pictureUrl = res.data.data.pictureUrl
262
      // 因为演示用的上传服务器返回数据格式的原因,这里模拟添加 url
263
      console.log(file)
264
      this.uploadList.push(file)
265
    },
266
    $_onUploadRemoveFile () { },
267
    $_onUploadExceededSize () { },
268
    $_onUploadError (errMsg, response, file) {
269
      console.log(file)
270
      console.log(errMsg.message)
271
      this.$Notice.warning({
272
        title: `文件${file.name}上传失败`,
273
        desc:
274
          '原因:' + errMsg
275
      })
276
    },
277
    $_onUploadFileExtError (file, files) {
278
      this.$Notice.warning({
279
        title: '文件格式不正确',
280
        desc:
281
          '文件 ' + file.name + ' 格式不正确,请上传 jpg 或 png 格式的图片。'
282
      })
283
      console.log(files)
284
    },
285
    $_onUploadFileExceededSize (file) {
286
      this.$Notice.warning({
287
        title: '超出文件大小限制',
288
        desc: '文件 ' + file.name + ' 太大,不能超过 2M。'
289
      })
290
    },
291
    $_onUploadFormatError () { },
292
    $_onUploadBeforeUpload () {
293
      const check = this.uploadList.length < 5
294
      if (!check) {
295
        this.$Notice.warning({
296
          title: '最多只能上传 5 张图片。'
297
        })
298
      }
299
      return check
143 300
    }
144 301
  }
145 302
}
146 303
</script>
147 304
148
<style>
149
305
<style lang="scss" scoped>
306
.demo-upload-list{
307
  .upload--drag{
308
  background-color:#FFFFFF
309
}
310
}
311
.picture-upload{
312
  display:flex;
313
  flex-direction:column;
314
  width:100%;
315
  height: 100%;
316
  justify-content: center;
317
  .upload-icon{
318
    align-items:center;
319
    justify-content:center;
320
    color:white;
321
    display: flex;
322
  }
323
  .aidicon.aidicon-plus-outline:before{
324
    width: 32px;
325
    height: 32px;
326
    display: flex;
327
    justify-content: center;
328
    align-items: center;
329
    background-color: #D0D0D0;
330
    border-radius:45px;
331
  }
332
}
150 333
</style>

+ 1 - 2
security-protection-platform/src/modules/usermana/index.vue

@ -64,7 +64,7 @@
64 64
        </t-pager>
65 65
      </div>
66 66
    </t-card>
67
    <add-user-modal :department-types-list="departmentTypesList" :company-list="companyTypesList" :visible.sync="addDeviceModal"></add-user-modal>
67
    <add-user-modal :company-list="companyTypesList" :visible.sync="addDeviceModal"></add-user-modal>
68 68
    <auditModal :auditshow.sync="auditshow" :auditid="auditid" :company-name="companyName" @refeshUserList="getUserList"></auditModal>
69 69
  </div>
70 70
</template>
@ -306,7 +306,6 @@ export default {
306 306
    // 显示新增设备对话框
307 307
    showAddDeviceModal () {
308 308
      this.addDeviceModal = true
309
      console.log(this.addDeviceModal)
310 309
    },
311 310
    async editDeviceData (id) {
312 311
      const res = await sysapi.getDeviceInfo(id)

+ 134 - 76
security-protection-platform/src/modules/videoSurveillance/index.vue

@ -13,13 +13,15 @@
13 13
    </div>
14 14
    <div class="page-bottom">
15 15
      <div v-for="(item,index) in videoList" :key="index" :value="item.resourceToolId" style="width:400px;margin:24px 0px 0 24px;">
16
        <videoPlayer
17
          ref="videoPlayer"
18
          :options="videoOptions"
19
          :playsinline="true"
16
        <video-player
17
          :ref="'video'+index"
18
          :options="videoOptions[index]"
19
          :playsinline="false"
20
          :events="events"
20 21
          class="vjs-custom-skin videoPlayer"
21
        />
22
        <!-- <rtmp-video :list="getVideoPlayList(item)" @goDistinguishRecord="goDistinguishRecord(item.resourceToolId)" @videoReplay="handleReview"></rtmp-video> -->
22
          @dblclick="handlefullscreenchange"
23
        ></video-player>
24
      <!-- <rtmp-video :list="getVideoPlayList(item)" @goDistinguishRecord="goDistinguishRecord(item.resourceToolId)" @videoReplay="handleReview"></rtmp-video> -->
23 25
      </div>
24 26
    </div>
25 27
    <t-pager :page-size="videoPageSize" :current="videoCurrent" :total="videoTotal" :sizer-range="[ 5, 10, 20, 30 ]" class="pager" show-elevator @on-change="onChangeGate"></t-pager>
@ -30,18 +32,15 @@
30 32
import sysapi from '@/api/videoSurveillance'
31 33
import RtmpVideo from './components/rtmpVideoPlay'
32 34
import ReplayDialog from './components/ReplayDialog'
33
import VideoPlayer from '@/components/VideoPlayer'
34 35
import formatDateTime from '@/utils/formatDateTime.js'
35 36
import videojs from 'video.js'
36 37
window.videojs = videojs
37 38
38
require('videojs-flash')
39
require('videojs-playlist')
40 39
require('video.js/dist/lang/zh-CN.js')
41 40
require('video.js/dist/video-js.min.css')
42 41
43 42
export default {
44
  components: { ReplayDialog, VideoPlayer, RtmpVideo },
43
  components: { ReplayDialog, RtmpVideo },
45 44
  filters: {
46 45
    handleText (value) {
47 46
      if (!value) return ''
@ -53,36 +52,8 @@ export default {
53 52
  },
54 53
  data () {
55 54
    return {
56
      videoOptions: {
57
        autoplay: true, // 如果true,浏览器准备好时开始回放。
58
        muted: true, // 默认情况下将会消除任何音频。
59
        loop: false, // 导致视频一结束就重新开始。
60
        preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
61
        language: 'zh-CN',
62
        aspectRatio: '13:10', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
63
        // fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
64
        // 是否流体自适应容器宽高
65
        fluid: true,
66
        // // 设置视频播放器的显示宽度(以像素为单位)
67
        // width: '100px',
68
        // // 设置视频播放器的显示高度(以像素为单位)
69
        // height: '300px',
70
        sources: [{
71
          withCredentials: false,
72
          type: 'application/x-mpegURL', // 这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目
73
          src: 'http://10.19.90.34:1080/live/1.m3u8' // url地址
74
        }],
75
        flash: { hls: { withCredentials: false } },
76
        html5: { hls: { withCredentials: false } },
77
        notSupportedMessage: '此视频暂无法播放,请稍后再试', // 允许覆盖Video.js无法播放媒体源时显示的默认信息。
78
        controlBar: {
79
          timeDivider: false,
80
          // durationDisplay: true,
81
          remainingTimeDisplay: false,
82
          fullscreenToggle: true, // 全屏按钮,
83
          pictureInPictureToggle: false
84
        }
85
      },
55
      events: ['fullscreenchange'],
56
      videoOptions: [],
86 57
      videoCurrent: 1, // 大门分页数据
87 58
      videoPageSize: 10, // 大门分页数据
88 59
      videoTotal: 0, // 大门分页总数
@ -105,16 +76,61 @@ export default {
105 76
      // endDay: '2020-12-19 20:14:00'
106 77
    }
107 78
  },
79
  computed: {
80
    player() {
81
      return this.$refs.videoPlayer1.player
82
    }
83
  },
108 84
  mounted () {
109 85
    this.getWindFiledList() // 获取风场列表
110 86
  },
111 87
  methods: {
112
    getVideoPlayList (item) {
113
      return [{
114
        fileId: item.videoUrl,
115
        fileType: 'rtmp/flv',
116
        id: item.resourceToolId
117
      }]
88
    // 修改视频组件控制栏的元素以及样式
89
    async createMyButton () {
90
      this.$nextTick(() => {
91
        const bars = document.querySelectorAll('.vjs-control-bar')
92
        let time = document.getElementsByClassName('vjs-current-time vjs-time-control vjs-control')
93
        let start = document.getElementsByClassName('vjs-play-control vjs-control vjs-button')
94
        let volume = document.getElementsByClassName('vjs-volume-panel vjs-control vjs-volume-panel-horizontal')
95
        let text = document.getElementsByClassName('vjs-live-control vjs-control')
96
        bars.forEach((item, index) => {
97
          time.forEach(item => {
98
            item.remove()
99
          })
100
          start.forEach(item => {
101
            item.remove()
102
          })
103
          volume.forEach(item => {
104
            item.remove()
105
          })
106
          text.forEach(item => {
107
            item.remove()
108
          })
109
          let txt = document.createElement('span')
110
          txt.innerHTML = '集控室(人脸识别)'
111
          txt.style.marginLeft = '12px'
112
          let btn = document.createElement('button')
113
          btn.style.color = 'white'
114
          btn.style.cursor = 'pointer'
115
          btn.style.marginLeft = 'auto'
116
          btn.className = 'aidicon aidicon-image-outline'
117
          btn.setAttribute('title', '识别记录')
118
          btn.addEventListener('click', () => {
119
            this.goDistinguishRecord()
120
          })
121
          let btn1 = document.createElement('button')
122
          btn1.style.color = 'white'
123
          btn1.style.cursor = 'pointer'
124
          btn1.className = 'aidicon aidicon-piechart-outline'
125
          btn1.setAttribute('title', '视频回放')
126
          btn1.addEventListener('click', () => {
127
            this.handleReview(this.videoList[index].id)
128
          })
129
          item.appendChild(txt)
130
          item.appendChild(btn)
131
          item.appendChild(btn1)
132
        })
133
      })
118 134
    },
119 135
    // 获取场景列表
120 136
    getSceneList () {
@ -170,15 +186,51 @@ export default {
170 186
        console.log(err)
171 187
      })
172 188
    },
189
    handlefullscreenchange(val) {
190
      // 因为我是又封装了一个组件,打印val会有相应所需的属性,全屏状态为:isFullscreen_
191
      val.isFullscreen_ = !val.isFullscreen_
192
      // this.$emit('fullscreenchange', val)
193
    },
173 194
    // 获得风场大门数据
174 195
    getVideoSurveillanceData () {
175 196
      var id = this.tabId
176 197
      this.paramsObj.page = this.videoCurrent
177
      sysapi.getVideoSurveillanceDataForPage({ params: { monitorSceneId: id, pageNumber: this.videoCurrent, pageSize: this.videoPageSize} })
178
      .then(res => {
179
        debugger
180
        this.videoList = res.data.data.data
181
        this.videoTotal = res.data.data.total
198
      sysapi.getVideoSurveillanceData({ params: { monitorSceneId: id } }).then(res => {
199
        this.videoList = res.data.data
200
        for (let i in res.data.data) {
201
          let obj = {
202
            autoplay: true, // 如果true,浏览器准备好时开始回放。
203
            muted: true, // 默认情况下将会消除任何音频。
204
            loop: false, // 导致视频一结束就重新开始。
205
            preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
206
            language: 'zh-CN',
207
            aspectRatio: '13:10', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
208
            // fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
209
            // 是否流体自适应容器宽高
210
            fluid: true,
211
            // // 设置视频播放器的显示宽度(以像素为单位)
212
            // width: '100px',
213
            // // 设置视频播放器的显示高度(以像素为单位)
214
            // height: '300px',
215
            sources: [{
216
              withCredentials: false,
217
              type: 'application/x-mpegURL', // 这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目
218
              src: res.data.data[i].videoUrl // url地址
219
            }],
220
            flash: { hls: { withCredentials: false } },
221
            html5: { hls: { withCredentials: false } },
222
            notSupportedMessage: '此视频暂无法播放,请稍后再试', // 允许覆盖Video.js无法播放媒体源时显示的默认信息。
223
            controlBar: {
224
              timeDivider: false,
225
              durationDisplay: false,
226
              remainingTimeDisplay: false,
227
              fullscreenToggle: true, // 全屏按钮,
228
              pictureInPictureToggle: false
229
            }
230
          }
231
          this.videoOptions.push(obj)
232
        }
233
        this.createMyButton()
182 234
      })
183 235
    },
184 236
    // 进入识别记录界面
@ -247,37 +299,43 @@ export default {
247 299
      }
248 300
    }
249 301
  }
250
  .pager {
302
.pager {
251 303
    margin-right: auto;
252 304
    margin: 21px 0px 24px 0;
253 305
    float: right;
254 306
  }
255
  .btn-primary,
256
  .radio-group-button .form-radio:checked,
257
  .radio-group-button .form-radio[checked] {
258
    color: #0089d4;
259
    background-color: #fff;
260
    border: 1px solid #0089d4;
261
  }
262
  .btn-secondary,
263
  .radio-group-button .form-radio,
264
  .checkbox-group--button .form-checkbox .form-checkbox__inner,
265
  .btn-dashed-secondary,
266
  .btn-outline-secondary {
267
    background: none;
268
  }
269
  .video-js .vjs-control:focus, .video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before{
270
    color:#0089d4;
271
    text-shadow: none;
272
  }
273
  .vjs-control-bar{
274
    justify-content: flex-end;
275
  }
276
  .video-js .vjs-control{
307
.vjs-custom-skin > .video-js .vjs-control-bar .vjs-fullscreen-control{
308
  height:38px !important;
309
}
310
.video-js .vjs-control{
277 311
    cursor: pointer;
312
    width: 28px;
313
    margin-right:12px;
278 314
  }
279
.video-js .vjs-fullscreen-control{
280
  order:2;
315
.vjs-control-bar{
316
    display: flex;
317
    justify-content: center;
318
    align-items: center;
319
}
320
.video-js button{
321
  font-size:16px;
322
}
323
.aidicon-image-outline:hover{
324
  color: #0089d4 !important;
325
}
326
.aidicon-piechart-outline:hover{
327
  color: #0089d4 !important;
328
}
329
.vjs-icon-placeholder:hover{
330
  color: #0089d4 !important;
331
}.vjs-icon-placeholder{
332
  font-size: 13px;
333
  display: flex;
334
  justify-content: center;
335
  align-items: center;
336
}
337
.vjs-tech {
338
  pointer-events: none;
281 339
}
282 340
}
283 341
</style>