first commit

lijinlong
许宏杰 2 years ago
commit 657041332e

@ -0,0 +1,14 @@
# http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

@ -0,0 +1,6 @@
# just a flag
ENV = 'development'
# base api
VUE_APP_BASE_API = '/dashboard'
BASE_API = 'http://10.10.3.35:9070'

@ -0,0 +1,6 @@
# just a flag
ENV = 'production'
# base api
VUE_APP_BASE_API = '/dashboard'
BASE_API = 'http://47.116.52.164:10002'

@ -0,0 +1,8 @@
NODE_ENV = production
# just a flag
ENV = 'staging'
# base api
VUE_APP_BASE_API = '/stage-api'

@ -0,0 +1,5 @@
build/*.js
src/assets
public
dist
mock.js

@ -0,0 +1,199 @@
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module'
},
env: {
browser: true,
node: true,
es6: true,
},
extends: ['plugin:vue/recommended', 'eslint:recommended'],
// add your custom rules here
//it is base on https://github.com/vuejs/eslint-config-vue
rules: {
"vue/max-attributes-per-line": [2, {
"singleline": 10,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}],
"vue/singleline-html-element-content-newline": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/name-property-casing": ["error", "PascalCase"],
"vue/no-v-html": "off",
'vue/html-self-closing': 'off',
'accessor-pairs': 2,
'arrow-spacing': [2, {
'before': true,
'after': true
}],
'block-spacing': [2, 'always'],
'brace-style': [2, '1tbs', {
'allowSingleLine': true
}],
'camelcase': [0, {
'properties': 'always'
}],
'comma-dangle': [2, 'never'],
'comma-spacing': [2, {
'before': false,
'after': true
}],
'comma-style': [2, 'last'],
'constructor-super': 2,
'curly': [2, 'multi-line'],
'dot-location': [2, 'property'],
'eol-last': 2,
'eqeqeq': ["error", "always", { "null": "ignore" }],
'generator-star-spacing': [2, {
'before': true,
'after': true
}],
'handle-callback-err': [2, '^(err|error)$'],
'indent': [2, 2, {
'SwitchCase': 1
}],
'jsx-quotes': [2, 'prefer-single'],
'key-spacing': [2, {
'beforeColon': false,
'afterColon': true
}],
'keyword-spacing': [2, {
'before': true,
'after': true
}],
'new-cap': [2, {
'newIsCap': true,
'capIsNew': false
}],
'new-parens': 2,
'no-array-constructor': 2,
'no-caller': 2,
'no-console': 'off',
'no-class-assign': 2,
'no-cond-assign': 2,
'no-const-assign': 2,
'no-control-regex': 0,
'no-delete-var': 2,
'no-dupe-args': 2,
'no-dupe-class-members': 2,
'no-dupe-keys': 2,
'no-duplicate-case': 2,
'no-empty-character-class': 2,
'no-empty-pattern': 2,
'no-eval': 2,
'no-ex-assign': 2,
'no-extend-native': 2,
'no-extra-bind': 2,
'no-extra-boolean-cast': 2,
'no-extra-parens': [2, 'functions'],
'no-fallthrough': 2,
'no-floating-decimal': 2,
'no-func-assign': 2,
'no-implied-eval': 2,
'no-inner-declarations': [2, 'functions'],
'no-invalid-regexp': 2,
'no-irregular-whitespace': 2,
'no-iterator': 2,
'no-label-var': 2,
'no-labels': [2, {
'allowLoop': false,
'allowSwitch': false
}],
'no-lone-blocks': 2,
'no-mixed-spaces-and-tabs': 2,
'no-multi-spaces': 2,
'no-multi-str': 2,
'no-multiple-empty-lines': [2, {
'max': 1
}],
'no-native-reassign': 2,
'no-negated-in-lhs': 2,
'no-new-object': 2,
'no-new-require': 2,
'no-new-symbol': 2,
'no-new-wrappers': 2,
'no-obj-calls': 2,
'no-octal': 2,
'no-octal-escape': 2,
'no-path-concat': 2,
'no-proto': 2,
'no-redeclare': 2,
'no-regex-spaces': 2,
'no-return-assign': [2, 'except-parens'],
'no-self-assign': 2,
'no-self-compare': 2,
'no-sequences': 2,
'no-shadow-restricted-names': 2,
'no-spaced-func': 2,
'no-sparse-arrays': 2,
'no-this-before-super': 2,
'no-throw-literal': 2,
'no-trailing-spaces': 2,
'no-undef': 2,
'no-undef-init': 2,
'no-unexpected-multiline': 2,
'no-unmodified-loop-condition': 2,
'no-unneeded-ternary': [2, {
'defaultAssignment': false
}],
'no-unreachable': 2,
'no-unsafe-finally': 2,
'no-unused-vars': [2, {
'vars': 'all',
'args': 'none'
}],
'no-useless-call': 2,
'no-useless-computed-key': 2,
'no-useless-constructor': 2,
'no-useless-escape': 0,
'no-whitespace-before-property': 2,
'no-with': 2,
'one-var': [2, {
'initialized': 'never'
}],
'operator-linebreak': [2, 'after', {
'overrides': {
'?': 'before',
':': 'before'
}
}],
'padded-blocks': [2, 'never'],
'quotes': [2, 'single', {
'avoidEscape': true,
'allowTemplateLiterals': true
}],
'semi': [2, 'never'],
'semi-spacing': [2, {
'before': false,
'after': true
}],
'space-before-blocks': [2, 'always'],
'space-before-function-paren': [2, 'never'],
'space-in-parens': [2, 'never'],
'space-infix-ops': 2,
'space-unary-ops': [2, {
'words': true,
'nonwords': false
}],
'spaced-comment': [2, 'always', {
'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
}],
'template-curly-spacing': [2, 'never'],
'use-isnan': 2,
'valid-typeof': 2,
'wrap-iife': [2, 'any'],
'yield-star-spacing': [2, 'both'],
'yoda': [2, 'never'],
'prefer-const': 2,
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'object-curly-spacing': [2, 'always', {
objectsInObjects: false
}],
'array-bracket-spacing': [2, 'never']
}
}

4
.gitignore vendored

@ -0,0 +1,4 @@
/node_modules/
/.idea/
/dist/
/dist1/

@ -0,0 +1,5 @@
language: node_js
node_js: 10
script: npm run test
notifications:
email: false

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2017-present PanJiaChen
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -0,0 +1,3 @@
# tcingiocpro
可视化展示平台

@ -0,0 +1,14 @@
module.exports = {
presets: [
// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
'@vue/cli-plugin-babel/preset'
],
'env': {
'development': {
// babel-plugin-dynamic-import-node plugin only does one thing by converting all import() to require().
// This plugin can significantly increase the speed of hot updates, when you have a large number of pages.
// https://panjiachen.github.io/vue-element-admin-site/guide/advanced/lazy-loading.html
'plugins': ['dynamic-import-node']
}
}
}

@ -0,0 +1,24 @@
module.exports = {
moduleFileExtensions: ['js', 'jsx', 'json', 'vue'],
transform: {
'^.+\\.vue$': 'vue-jest',
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$':
'jest-transform-stub',
'^.+\\.jsx?$': 'babel-jest'
},
moduleNameMapper: {
'^@/(.*)$': '<rootDir>/src/$1'
},
snapshotSerializers: ['jest-serializer-vue'],
testMatch: [
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
],
collectCoverageFrom: ['src/utils/**/*.{js,vue}', '!src/utils/auth.js', '!src/utils/request.js', 'src/components/**/*.{js,vue}'],
coverageDirectory: '<rootDir>/tests/unit/coverage',
// 'collectCoverage': true,
'coverageReporters': [
'lcov',
'text-summary'
],
testURL: 'http://localhost/'
}

@ -0,0 +1,9 @@
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"exclude": ["node_modules", "dist"]
}

19201
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -0,0 +1,92 @@
{
"name": "tcldzx",
"version": "4.4.0",
"description": "A vue admin template with Element UI & axios & iconfont & permission control & lint",
"author": "Pan <panfree23@gmail.com>",
"scripts": {
"dev": "vue-cli-service serve",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
"lint": "eslint --ext .js,.vue src",
"test:unit": "jest --clearCache && vue-cli-service test:unit",
"test:ci": "npm run lint && npm run test:unit"
},
"dependencies": {
"@jiaminghi/data-view": "^2.9.6",
"@riophae/vue-treeselect": "^0.4.0",
"@turf/turf": "^6.5.0",
"axios": "^0.21.4",
"clipboard": "^2.0.6",
"core-js": "3.6.5",
"deck.gl": "^8.6.5",
"docx-preview": "^0.1.8",
"echarts": "^4.9.0",
"echarts-gl": "^1.1.1",
"el-table-infinite-scroll": "^1.0.10",
"element-ui": "^2.7.2",
"html2canvas": "^1.0.0-rc.7",
"jquery": "^3.5.1",
"js-cookie": "2.2.0",
"js-md5": "^0.7.3",
"jszip": "^3.7.1",
"lottie-web": "^5.7.13",
"mapbox-gl": "^2.6.1",
"moment": "^2.27.0",
"mux.js": "^5.6.4",
"normalize.css": "7.0.0",
"nprogress": "0.2.0",
"path-to-regexp": "2.4.0",
"qs": "^6.9.4",
"save": "^2.4.0",
"swiper": "^7.2.0",
"terraformer-wkt-parser": "^1.2.1",
"three": "^0.135.0",
"vue": "2.6.10",
"vue-awesome-swiper": "^4.1.1",
"vue-cropper": "^0.5.5",
"vue-flip-page": "^1.0.7",
"vue-loader": "^15.9.3",
"vue-lottie": "^0.2.1",
"vue-pdf": "^4.3.0",
"vue-router": "3.0.6",
"vue-seamless-scroll": "^1.1.23",
"vue-video-player": "^5.0.2",
"vuex": "3.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.4.4",
"@vue/cli-plugin-eslint": "4.4.4",
"@vue/cli-plugin-unit-jest": "4.4.4",
"@vue/cli-service": "4.4.4",
"@vue/test-utils": "1.0.0-beta.29",
"autoprefixer": "9.5.1",
"babel-eslint": "10.1.0",
"babel-jest": "23.6.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"chalk": "2.4.2",
"connect": "3.6.6",
"eslint": "6.7.2",
"eslint-plugin-vue": "6.2.2",
"html-webpack-plugin": "3.2.0",
"mockjs": "1.0.1-beta3",
"runjs": "4.3.2",
"sass": "1.26.8",
"sass-loader": "8.0.2",
"script-ext-html-webpack-plugin": "2.1.3",
"serve-static": "1.13.2",
"svg-sprite-loader": "4.1.3",
"svgo": "1.2.2",
"vue-template-compiler": "2.6.10"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"engines": {
"node": ">=8.9",
"npm": ">= 3.0.0"
},
"license": "MIT"
}

@ -0,0 +1,8 @@
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
'plugins': {
// to edit target browsers: use "browserslist" field in package.json
'autoprefixer': {}
}
}

@ -0,0 +1,24 @@
/*
* @Author: your name
* @Date: 2021-11-01 14:22:31
* @LastEditTime: 2022-09-21 13:03:10
* @LastEditors: lough
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tcingiocpro\public\application.js
*/
window._CONFIG = {};
//地图URL
window._CONFIG["mapUrl"] = `http://47.116.52.164:10002/ssitcmap/#/`;
//地图KEY
window._CONFIG['mapKey'] = '9fae06d4-dea8-482f-a376-0292903df6a6'
//资源服务器URL
window._CONFIG["sitefile"] = '';
window._CONFIG["fileURL"] = "http://2.35.253.47:10002/sitefiles/tcicpmispro";
//无人机
window._CONFIG["stgWrjVideo"] ="http://2.35.253.47:10002/sitefiles/tcicpmispro/privateOrder/commandAndControl/video/case.mp4";
//无人机
window._CONFIG["wrjURL"] ="http://2.35.253.47:10002/WRJ-flv-live/live/video.flv";

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

@ -0,0 +1,57 @@
<!--
* @Author: lough
* @Date: 2021-12-03 09:21:03
* @LastEditors: lough
* @LastEditTime: 2022-11-18 09:26:43
* @Description:
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<meta http-equiv="Access-Control-Allow-Origin" content="*" />
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
<title><%= webpackConfig.name %></title>
<script src="<%= BASE_URL %>application.js"></script>
<script src="<%= BASE_URL %>static/videoMonitorPlayer/jsencrypt.min.js"></script>
<script src="<%= BASE_URL %>static/videoMonitorPlayer/jsWebControl-1.0.0.min.js"></script>
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=1.4.15&key=84594d0df3ebdc1dbb4cee3f1bac7916"
></script>
<script src="https://webapi.amap.com/loca?v=1.3.0&key=84594d0df3ebdc1dbb4cee3f1bac7916"></script>
<script src="<%= BASE_URL %>static/flv/flv.js"></script>
<script src="<%= BASE_URL %>static/extends.js"></script>
<script>
// window._CONFIG["apiJsonUrl"] = "http://47.116.52.164:10002"; //阿里云
window._CONFIG["fileNginxUrl"] =
"http://20.1.0.152:10003/wxb"; //文件
window._CONFIG["ssiMapUrl"] =
"http://47.116.52.164:10002/ssitcmapserverback"; //地图
window._CONFIG["ssiMapNginxUrl"] =
"http://47.116.52.164:10002/staticData/taicang/"; //地图
//生产地址
// window._CONFIG["apiJsonUrl"] = "http://20.1.0.152:10003"; //接口地址
// window._CONFIG['nginxUrl'] = 'http://20.1.0.151:7980/wxbfile/' // 图片预览 minio
// dev
window._CONFIG["apiJsonUrl"] = "http://10.10.3.35:9070"; //接口地址
window._CONFIG['nginxUrl'] = 'http://10.10.2.26:7980/wxbfile/' // 图片预览 minio
</script>
</head>
<body>
<noscript>
<strong
>We're sorry but <%= webpackConfig.name %> doesn't work properly without
JavaScript enabled. Please enable it to continue.</strong
>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>

@ -0,0 +1,117 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.spth_win {
width: 320px;
height: 564px !important;
z-index: 9999;
position: absolute;
left: calc(50% - 142px);
top: calc(50% - 254px) !important;
}
.spth_control {
position: absolute;
bottom: 30px;
left: 18px;
width: 284px;
height: 100px;
display: flex;
align-items: center;
z-index: 999;
}
.loading{
width: 150px;
height: 30px;
font-size: 20px;
line-height: 20px;
position: absolute;
top: calc(50% - 55px);
left: calc(50% - 75px);
z-index: 998;
color: #fff;
}
.spth_control_left {
width: 170px;
display: flex;
flex-direction: column;
justify-content: center;
}
.spth_control_left p, .spth_control_left span {
font-size: 18px;
}
.spth_control_left p {
color: #11D0C9;
margin: 10px 0 0 20px;
}
.spth_control_right {
width: 90px;
}
.callOver {
width: 28px;
height: 28px;
margin-top: 15px;
background: url(images/callOver.png) no-repeat;
}
/* .hang_up::before {
background: url("images/callOver.png") no-repeat;
width: 26px;
height: 8px;
display: block;
margin-bottom: 10px;
}
.hang_up::after {
content: '通话结束';
} */
.open_btn {
height: 50px;
width: 200px;
font-size: 25px;
border: 2px solid red;
border-radius: 15px;
text-align: center;
line-height: 50px;
cursor: pointer
}
</style>
</head>
<body>
<!-- <div class="open_btn" onclick="openVideoCall()">开启视频通话</div> -->
<div id="spth_win" class="spth_win">
<div id="agora_remote_video" style="width: 284px;height: 509px;position: relative;z-index: 999;"></div>
<div class="loading">正在呼叫中···</div>
<div class="spth_control">
<div class="spth_control_left">
<p>联系人:<span id="spth_caller"></span></p>
</div>
<div class="spth_control_right">
<div class="callOver" onclick="closeVideoCall()"></div>
</div>
</div>
</div>
</body>
<script src="jquery.min.js"></script>
<script src="trtc/AgoraRTCSDK-2.7.0.js"></script>
<script src="trtc/popper.js" type="text/javascript"></script>
<script src="trtc/toastify.js" type="text/javascript"></script>
<script src="trtc/bootstrap-material-design.min.js" type="text/javascript"></script>
<script src="trtc/trtc.js" type="text/javascript"></script>
<script src="trtc/lib-generate-test-usersig.min.js" type="text/javascript"></script>
<script src="trtc/GenerateTestUserSig.js" type="text/javascript"></script>
<script src="trtc/utils.js" type="text/javascript"></script>
<script src="trtc/rtc-client.js" type="text/javascript"></script>
<script src="../../application.js" type="text/javascript"></script>
<script src="demo.js" type="text/javascript"></script>
</html>

@ -0,0 +1,126 @@
var isCall,iCount;
let rtc = null;
//相关接口前缀
var demoRoot = window._CONFIG['videoInterface'];
//发起视频通话的用户id 大屏发起请求保证和用户账户id不重复即可
let applyId="1173";//重重重,这里写死9999吧,这样我们会把你标记成大屏
//发起视频通话的用户名称
let applyUser = "联动中心";
//房间号
let roomId="";
//拨打对象id 账号/密码safesoftDemo/666666
let userId = ""
//拨打对象名称
let userName = "";
//发起通话
$(function(){
let obj= GetRequest()
roomId = obj.id//拨打对象id
userId = obj.id//拨打对象id
userName = obj.name//拨打对象name
openVideoCall()
})
function GetRequest() {
var url = location.search; //获取url中"?"符后的字串
var theRequest = new Object();
if (url.indexOf("?") != -1) {
var str = url.substr(1);
strs = str.split("&");
for(var i = 0; i < strs.length; i ++) {
theRequest[strs[i].split("=")[0]]=decodeURIComponent(strs[i].split("=")[1]);
}
}
return theRequest;
}
function openVideoCall() {
console.log(window)
// $('#spth_win').show();
//拨打对象名称展示
$('#spth_caller').html(userName);
isCall = 1;
var config = genTestUserSig(applyId);
//发送通话请求,数据库加一条通话请求数据
$.ajax({
url: demoRoot + 'video/call/apply',
type: 'post',
contentType: 'application/json',
data: JSON.stringify({
applyId: applyId,
userId: userId,
roomId: roomId,
applyUser: applyUser,
acceptUser: userName
}),
dataType: 'json',
success: function (data) {
//js sdk 配置
rtc = new RtcClient({
userId: applyId,//用户id-------↓-----------唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点
roomId: userId,//房间号 roomId修改为userId
sdkAppId: config.sdkAppId,//---↑-----------唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点,唯一修改点
userSig: config.userSig
});
rtc.join();//推流
//轮询数据库判断app是否挂断
iCount = setInterval("callExist(" + applyId + "," + roomId + ")", "3000");
},
error: function () {
}
});
}
//查询app是否挂断
function callExist(userId, roomId) {
$.ajax({
url: demoRoot + 'video/call/exist',
type: 'post',
data: {
applyId: userId,
roomId: roomId
},
dataType: 'json',
success: function (data) {
if (data == false) {
clearInterval(iCount);
if (isCall == 1) {
window.parent['goBack']()
}
if(rtc){
rtc.leave();
rtc = null;
}
$('#spth_win_all').hide();
$('#spth_win').hide();
}
},
error: function () {
}
});
}
//关闭视屏通话
function closeVideoCall() {
$.ajax({
url: demoRoot + 'video/call/end',
type: 'post',
contentType: 'application/json',
data: JSON.stringify({
applyId: applyId,
userId: userId,
roomId: roomId,
applyUser: applyUser,
acceptUser: userName
}),
dataType: 'json',
success: function () {
isCall = 0;
rtc.leave();
rtc = null;
},
error: function () {
}
});
window.parent['goBack']()
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 758 B

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,62 @@
/* eslint-disable require-jsdoc */
/*
* Module: GenerateTestUserSig
*
* Function: 用于生成测试用的 UserSigUserSig 是腾讯云为其云服务设计的一种安全保护签名
* 其计算方法是对 SDKAppIDUserID EXPIRETIME 进行加密加密算法为 HMAC-SHA256
*
* Attention: 请不要将如下代码发布到您的线上正式版本的 App 原因如下
*
* 本文件中的代码虽然能够正确计算出 UserSig但仅适合快速调通 SDK 的基本功能不适合线上产品
* 这是因为客户端代码中的 SECRETKEY 很容易被反编译逆向破解尤其是 Web 端的代码被破解的难度几乎为零
* 一旦您的密钥泄露攻击者就可以计算出正确的 UserSig 来盗用您的腾讯云流量
*
* 正确的做法是将 UserSig 的计算代码和加密密钥放在您的业务服务器上然后由 App 按需向您的服务器获取实时算出的 UserSig
* 由于破解服务器的成本要高于破解客户端 App所以服务器计算的方案能够更好地保护您的加密密钥
*
* Referencehttps://cloud.tencent.com/document/product/647/17275#Server
*/
function genTestUserSig(userID) {
/**
* 腾讯云 SDKAppId需要替换为您自己账号下的 SDKAppId
*
* 进入腾讯云实时音视频[控制台](https://console.cloud.tencent.com/rav ) 创建应用,即可看到 SDKAppId
* 它是腾讯云用于区分客户的唯一标识
*/
const SDKAPPID = 1400272295;
/**
* 签名过期时间建议不要设置的过短
* <p>
* 时间单位
* 默认时间7 x 24 x 60 x 60 = 604800 = 7
*/
const EXPIRETIME = 604800;
/**
* 计算签名用的加密密钥获取步骤如下
*
* step1. 进入腾讯云实时音视频[控制台](https://console.cloud.tencent.com/rav ),如果还没有应用就创建一个,
* step2. 单击应用配置进入基础配置页面并进一步找到帐号体系集成部分
* step3. 点击查看密钥按钮就可以看到计算 UserSig 使用的加密的密钥了请将其拷贝并复制到如下的变量中
*
* 注意该方案仅适用于调试Demo正式上线前请将 UserSig 计算代码和密钥迁移到您的后台服务器上以避免加密密钥泄露导致的流量盗用
* 文档https://cloud.tencent.com/document/product/647/17275#Server
*/
const SECRETKEY = 'bf1c0afc79f863c0f175b6674e009e678180af045c6aba7095a0afbbd6586977';
// a soft reminder to guide developer to configure sdkAppId/secretKey
if (SDKAPPID === '' || SECRETKEY === '') {
alert(
'请先配置好您的账号信息: SDKAPPID 及 SECRETKEY ' +
'\r\n\r\nPlease configure your SDKAPPID/SECRETKEY in js/debug/GenerateTestUserSig.js'
);
}
const generator = new LibGenerateTestUserSig(SDKAPPID, SECRETKEY, EXPIRETIME);
const userSig = generator.genTestUserSig(userID);
return {
sdkAppId: SDKAPPID,
userSig: userSig
};
}

File diff suppressed because one or more lines are too long

@ -0,0 +1,56 @@
/* eslint-disable require-jsdoc */
// initialize userId/roomId
$('#userId').val('user_' + parseInt(Math.random() * 100000000));
$('#roomId').val('889988');
let rtc = null;
$('#join').on('click', function (e) {
e.preventDefault();
if (rtc) return;
const userId = $('#userId').val();
const roomId = $('#roomId').val();
const config = genTestUserSig(userId);
rtc = new RtcClient({
userId,
roomId,
sdkAppId: config.sdkAppId,
userSig: config.userSig
});
rtc.join();
});
$('#publish').on('click', function (e) {
e.preventDefault();
if (!rtc) {
Toast.error('请先加入房间!');
return;
}
rtc.publish();
});
$('#unpublish').on('click', function (e) {
e.preventDefault();
if (!rtc) {
Toast.error('请先加入房间!');
return;
}
rtc.unpublish();
});
$('#leave').on('click', function (e) {
e.preventDefault();
if (!rtc) {
Toast.error('请先加入房间!');
return;
}
rtc.leave();
rtc = null;
});
$('#settings').on('click', function (e) {
e.preventDefault();
$('#settings').toggleClass('btn-raised');
$('#setting-collapse').collapse();
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -0,0 +1,278 @@
/* eslint-disable require-jsdoc */
class RtcClient {
constructor(options) {
this.sdkAppId_ = options.sdkAppId;
this.userId_ = options.userId;
this.userSig_ = options.userSig;
this.roomId_ = options.roomId;
this.isJoined_ = false;
this.isPublished_ = false;
this.localStream_ = null;
this.remoteStreams_ = [];
// check if browser is compatible with TRTC
TRTC.checkSystemRequirements().then(result => {
if (!result) {
alert('Your browser is not compatible with TRTC! Please download Chrome M72+');
}
});
}
async join() {
document.getElementById('agora_remote_video').style.height = 409 + 'px';
if (this.isJoined_) {
console.warn('duplicate RtcClient.join() observed');
return;
}
// create a client for RtcClient
this.client_ = TRTC.createClient({
mode: 'videoCall', // 实时通话模式
sdkAppId: this.sdkAppId_,
userId: this.userId_,
userSig: this.userSig_
});
// 处理 client 事件
this.handleEvents();
try {
// join the room
await this.client_.join({ roomId: this.roomId_ });
this.isJoined_ = true;
} catch (error) {
$('#spthWarnWin').hide();
console.error('failed to join room because: ' + error);
alert(
'进房失败原因:' +
error +
'\r\n\r\n请确保您的网络连接是正常的您可以先体验一下我们的Demo以确保网络连接是正常的' +
'\r\n https://trtc-1252463788.file.myqcloud.com/web/demo/official-demo/index.html ' +
'\r\n\r\n另外请确保您的账号信息是正确的。' +
'\r\n请打开链接https://cloud.tencent.com/document/product/647/34342 查询详细错误信息!'
);
return;
}
try {
// 采集摄像头和麦克风视频流
await this.createLocalStream({ audio: true, video: true });
} catch (error) {
console.error('createLocalStream with audio/video failed: ' + error);
/*alert(
'请确认已连接摄像头和麦克风并授予其访问权限!\r\n\r\n 如果您没有连接摄像头或麦克风您可以通过调整第60行代码来关闭未连接设备的采集请求'
);*/
showFailureInfo_BigScreen_vido('请确认是否已连接摄像头和麦克风并授予其访问权限!');
try {
// fallback to capture camera only
await this.createLocalStream({ audio: false, video: true });
} catch (error) {
console.error('createLocalStream with video failed: ' + error);
$('#spthWarnWin').hide();
return;
}
$('#spthWarnWin').hide();
}
this.localStream_.on('player-state-changed', event => {
if (event.type === 'video' && event.state === 'PLAYING') {
// dismiss the remote user UI placeholder
} else if (event.type === 'video' && event.state === 'STOPPPED') {
// show the remote user UI placeholder
}
});
// 在名为 local_stream 的 div 容器上播放本地音视频
this.localStream_.play('agora_remote_video');
// publish local stream by default after join the room
await this.publish();
}
async leave() {
if (!this.isJoined_) {
console.warn('leave() - leave without join()d observed');
return;
}
if (this.isPublished_) {
// ensure the local stream has been unpublished before leaving.
await this.unpublish(true);
}
try {
// leave the room
await this.client_.leave();
this.isJoined_ = false;
} catch (error) {
console.error('failed to leave the room because ' + error);
location.reload();
} finally {
// 停止本地流,关闭本地流内部的音视频播放器
try {
this.localStream_.stop();
} catch (error) {
console.error('failed to stop local stream because ' + error);
} finally {
// 关闭本地流,释放摄像头和麦克风访问权限
this.localStream_.close();
this.localStream_ = null;
}
}
}
async publish() {
if (!this.isJoined_) {
console.warn('publish() - please join() firstly');
return;
}
if (this.isPublished_) {
console.warn('duplicate RtcClient.publish() observed');
return;
}
try {
// 发布本地流
await this.client_.publish(this.localStream_);
this.isPublished_ = true;
} catch (error) {
console.error('failed to publish local stream ' + error);
this.isPublished_ = false;
}
}
async unpublish(isLeaving) {
if (!this.isJoined_) {
console.warn('unpublish() - please join() firstly');
return;
}
if (!this.isPublished_) {
console.warn('RtcClient.unpublish() called but not published yet');
return;
}
try {
// 停止发布本地流
await this.client_.unpublish(this.localStream_);
this.isPublished_ = false;
} catch (error) {
console.error('failed to unpublish local stream because ' + error);
if (!isLeaving) {
console.warn('leaving the room because unpublish failure observed');
this.leave();
}
}
}
async createLocalStream(options) {
this.localStream_ = TRTC.createStream({
audio: options.audio, // 采集麦克风
video: options.video, // 采集摄像头
userId: this.userId_
// cameraId: getCameraId(),
// microphoneId: getMicrophoneId()
});
// 设置视频分辨率帧率和码率
this.localStream_.setVideoProfile('480p');
await this.localStream_.initialize();
}
handleEvents() {
// 处理 client 错误事件,错误均为不可恢复错误,建议提示用户后刷新页面
this.client_.on('error', err => {
console.error(err);
// location.reload();
});
// 处理用户被踢事件,通常是因为房间内有同名用户引起,这种问题一般是应用层逻辑错误引起的
// 应用层请尽量使用不同用户ID进房
this.client_.on('client-banned', err => {
console.error('client has been banned for ' + err);
// location.reload();
});
// 远端用户进房通知 - 仅限主动推流用户
this.client_.on('peer-join', evt => {
const userId = evt.userId;
});
// 远端用户退房通知 - 仅限主动推流用户
this.client_.on('peer-leave', evt => {
const userId = evt.userId;
closeVideoCall();
// alert('对方已挂断。')
});
window.onbeforeunload = function(e) {
closeVideoCall();
}
// 处理远端流增加事件
this.client_.on('stream-added', evt => {
const remoteStream = evt.stream;
const id = remoteStream.getId();
const userId = remoteStream.getUserId();
// 远端流默认已订阅所有音视频,此处可指定只订阅音频或者音视频,不能仅订阅视频。
// 如果不想观看该路远端流,可调用 this.client_.unsubscribe(remoteStream) 取消订阅
this.client_.subscribe(remoteStream);
});
// 远端流订阅成功事件
this.client_.on('stream-subscribed', evt => {
const remoteStream = evt.stream;
const id = remoteStream.getId();
this.remoteStreams_.push(remoteStream);
$('#spth_win').show();
addViewId(id);
window.isVideoConnect = true;
// 在指定的 div 容器上播放音视频
remoteStream.play(id);
$('#spthWarnWin').hide();
});
// 处理远端流被删除事件
this.client_.on('stream-removed', evt => {
const remoteStream = evt.stream;
const id = remoteStream.getId();
// 关闭远端流内部的音视频播放器
remoteStream.stop();
this.remoteStreams_ = this.remoteStreams_.filter(stream => {
return stream.getId() !== id;
});
removeView(id);
});
// 处理远端流更新事件,在音视频通话过程中,远端流音频或视频可能会有更新
this.client_.on('stream-updated', evt => {
const remoteStream = evt.stream;
console.log(
'type: ' +
remoteStream.getType() +
' stream-updated hasAudio: ' +
remoteStream.hasAudio() +
' hasVideo: ' +
remoteStream.hasVideo()
);
});
// 远端流音频或视频mute状态通知
this.client_.on('mute-audio', evt => {
console.log(evt.userId + ' mute audio');
});
this.client_.on('unmute-audio', evt => {
console.log(evt.userId + ' unmute audio');
});
this.client_.on('mute-video', evt => {
console.log(evt.userId + ' mute video');
});
this.client_.on('unmute-video', evt => {
console.log(evt.userId + ' unmute video');
});
// 信令通道连接状态通知
this.client_.on('connection-state-changed', evt => {
console.log(`RtcClient state changed to ${evt.state} from ${evt.prevState}`);
});
}
}

@ -0,0 +1,8 @@
/**
* Minified by jsDelivr using Terser v3.14.1.
* Original file: /npm/toastify-js@1.6.1/src/toastify.js
*
* Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
*/
!function(t,o){"object"==typeof module&&module.exports?module.exports=o():t.Toastify=o()}(this,function(t){var o=function(t){return new o.lib.init(t)};function i(t,o){return!(!t||"string"!=typeof o)&&!!(t.className&&t.className.trim().split(/\s+/gi).indexOf(o)>-1)}return o.lib=o.prototype={toastify:"1.6.1",constructor:o,init:function(t){return t||(t={}),this.options={},this.toastElement=null,this.options.text=t.text||"Hi there!",this.options.duration=t.duration||3e3,this.options.selector=t.selector,this.options.callback=t.callback||function(){},this.options.destination=t.destination,this.options.newWindow=t.newWindow||!1,this.options.close=t.close||!1,this.options.gravity="bottom"==t.gravity?"toastify-bottom":"toastify-top",this.options.positionLeft=t.positionLeft||!1,this.options.position=t.position||"",this.options.backgroundColor=t.backgroundColor,this.options.avatar=t.avatar||"",this.options.className=t.className||"",this.options.stopOnFocus=void 0===t.stopOnFocus||t.stopOnFocus,this},buildToast:function(){if(!this.options)throw"Toastify is not initialized";var t=document.createElement("div");if(t.className="toastify on "+this.options.className,this.options.position?t.className+=" toastify-"+this.options.position:!0===this.options.positionLeft?(t.className+=" toastify-left",console.warn("Property `positionLeft` will be depreciated in further versions. Please use `position` instead.")):t.className+=" toastify-right",t.className+=" "+this.options.gravity,this.options.backgroundColor&&(t.style.background=this.options.backgroundColor),t.innerHTML=this.options.text,""!==this.options.avatar){var o=document.createElement("img");o.src=this.options.avatar,o.className="toastify-avatar","left"==this.options.position||!0===this.options.positionLeft?t.appendChild(o):t.insertAdjacentElement("beforeend",o)}if(!0===this.options.close){var i=document.createElement("span");if(i.innerHTML="&#10006;",i.className="toast-close",i.addEventListener("click",function(t){t.stopPropagation(),this.removeElement(t.target.parentElement),window.clearTimeout(t.target.parentElement.timeOutValue)}.bind(this)),this.options.stopOnFocus&&this.options.duration>0){const o=this;t.addEventListener("mouseover",function(o){window.clearTimeout(t.timeOutValue)}),t.addEventListener("mouseleave",function(){t.timeOutValue=window.setTimeout(function(){o.removeElement(t)},o.options.duration)})}var e=window.innerWidth>0?window.innerWidth:screen.width;("left"==this.options.position||!0===this.options.positionLeft)&&e>360?t.insertAdjacentElement("afterbegin",i):t.appendChild(i)}return void 0!==this.options.destination&&t.addEventListener("click",function(t){t.stopPropagation(),!0===this.options.newWindow?window.open(this.options.destination,"_blank"):window.location=this.options.destination}.bind(this)),t},showToast:function(){var t;if(this.toastElement=this.buildToast(),!(t=void 0===this.options.selector?document.body:document.getElementById(this.options.selector)))throw"Root element is not defined";return t.insertBefore(this.toastElement,t.firstChild),o.reposition(),this.options.duration>0&&(this.toastElement.timeOutValue=window.setTimeout(function(){this.removeElement(this.toastElement)}.bind(this),this.options.duration)),this},hideToast:function(){this.toastElement.timeOutValue&&clearTimeout(this.toastElement.timeOutValue),this.removeElement(this.toastElement)},removeElement:function(t){t.className=t.className.replace(" on",""),window.setTimeout(function(){t.parentNode.removeChild(t),this.options.callback.call(t),o.reposition()}.bind(this),400)}},o.reposition=function(){for(var t,o={top:15,bottom:15},e={top:15,bottom:15},s={top:15,bottom:15},n=document.getElementsByClassName("toastify"),a=0;a<n.length;a++){t=!0===i(n[a],"toastify-top")?"toastify-top":"toastify-bottom";var r=n[a].offsetHeight;t=t.substr(9,t.length-1);(window.innerWidth>0?window.innerWidth:screen.width)<=360?(n[a].style[t]=s[t]+"px",s[t]+=r+15):!0===i(n[a],"toastify-left")?(n[a].style[t]=o[t]+"px",o[t]+=r+15):(n[a].style[t]=e[t]+"px",e[t]+=r+15)}return this},o.lib.init.prototype=o.lib,o});
//# sourceMappingURL=/sm/41acc3aa20f250262e5e3385662e41945e2d17511eab5f086301cd9afd7cc770.map

File diff suppressed because one or more lines are too long

@ -0,0 +1,108 @@
/* eslint-disable require-jsdoc */
function addViewId(id) {
if ($('div#spth_win' + id).length === 0) {
$('div#agora_remote_video').empty();
$('div#agora_remote_video').append('<div id="' + id + '" style="width:100%;height:100%;display:inline-block;"></div>');
}
}
function addView(id) {
if (!$('#' + id)[0]) {
$('<div/>', {
id,
class: 'video-view'
}).appendTo('#video_grid');
}
}
function removeView(id) {
if ($('#' + id)[0]) {
$('#' + id).remove();
$('#spth_win').hide();
rtc.leave();
rtc = null;
}
}
// populate camera options
TRTC.getCameras().then(devices => {
devices.forEach(device => {
$('<option/>', {
value: device.deviceId,
text: device.label
}).appendTo('#cameraId');
});
});
// populate microphone options
TRTC.getMicrophones().then(devices => {
devices.forEach(device => {
$('<option/>', {
value: device.deviceId,
text: device.label
}).appendTo('#microphoneId');
});
});
function getCameraId() {
const selector = document.getElementById('cameraId');
const cameraId = selector[selector.selectedIndex].value;
return cameraId;
}
function getMicrophoneId() {
const selector = document.getElementById('microphoneId');
const microphoneId = selector[selector.selectedIndex].value;
return microphoneId;
}
// fix jquery touchstart event warn in chrome M76
jQuery.event.special.touchstart = {
setup: function (_, ns, handle) {
if (ns.includes('noPreventDefault')) {
this.addEventListener('touchstart', handle, {passive: false});
} else {
this.addEventListener('touchstart', handle, {passive: true});
}
}
};
jQuery.event.special.touchmove = {
setup: function (_, ns, handle) {
if (ns.includes('noPreventDefault')) {
this.addEventListener('touchmove', handle, {passive: false});
} else {
this.addEventListener('touchmove', handle, {passive: true});
}
}
};
const Toast = {
info: function (msg) {
Toastify({
text: msg,
duration: 3000,
gravity: 'top', // `top` or `bottom`
position: 'right', // `left`, `center` or `right`
backgroundColor: '#4F85FF'
}).showToast();
},
notify: function (msg) {
Toastify({
text: msg,
duration: 3000,
gravity: 'top', // `top` or `bottom`
position: 'right', // `left`, `center` or `right`
backgroundColor: '#2FC259'
}).showToast();
},
error: function (msg) {
Toastify({
text: msg,
duration: 3000,
gravity: 'top', // `top` or `bottom`
position: 'right', // `left`, `center` or `right`
backgroundColor: '#FF310A'
}).showToast();
}
};

@ -0,0 +1,82 @@
export function echartsJump(echarts, option) {
/* 自动轮换显示 */
const app = {
currentIndex: -1
};
echarts.on("restore", function(e) {
clearInterval(industryTimer);
});
// 高亮当前图形
echarts.dispatchAction({
type: "highlight",
seriesIndex: 0,
dataIndex: 0
});
// 显示 tooltip
echarts.dispatchAction({
type: "showTip",
seriesIndex: 0,
dataIndex: 0
});
let industryTimer = setInterval(function() {
const dataLen = option.series[0].data.length;
// 取消之前高亮的图形
echarts.dispatchAction({
type: "downplay",
seriesIndex: 0,
dataIndex: app.currentIndex
});
app.currentIndex = (app.currentIndex + 1) % dataLen;
// 高亮当前图形
echarts.dispatchAction({
type: "highlight",
seriesIndex: 0,
dataIndex: app.currentIndex
});
// 显示 tooltip
echarts.dispatchAction({
type: "showTip",
seriesIndex: 0,
dataIndex: app.currentIndex
});
}, 3000);
echarts.on("mouseover", function(e) {
clearInterval(industryTimer);
if (e.dataIndex !== app.currentIndex) {
echarts.dispatchAction({
type: "downplay",
seriesIndex: e.seriesIndex,
dataIndex: app.currentIndex
});
app.currentIndex = e.dataIndex;
}
});
echarts.on("mouseout", function() {
clearInterval(industryTimer);
industryTimer = setInterval(function() {
const dataLen = option.series[0].data.length;
// 取消之前高亮的图形
echarts.dispatchAction({
type: "downplay",
seriesIndex: 0,
dataIndex: app.currentIndex
});
app.currentIndex = (app.currentIndex + 1) % dataLen;
// 高亮当前图形
echarts.dispatchAction({
type: "highlight",
seriesIndex: 0,
dataIndex: app.currentIndex
});
// 显示 tooltip
echarts.dispatchAction({
type: "showTip",
seriesIndex: 0,
dataIndex: app.currentIndex
});
}, 3000);
});
}

@ -0,0 +1,58 @@
Date.prototype.addMonth = function(addMonth) {
var y = this.getFullYear();
var m = this.getMonth();
var nextY = y;
var nextM = m;
//如果当前月+增加的月>11 这里之所以用11是因为 js的月份从0开始
if (m + addMonth > 11) {
nextY = y + 1;
nextM = parseInt(m + addMonth) - 12;
} else {
nextM = this.getMonth() + addMonth;
}
var daysInNextMonth = Date.daysInMonth(nextY, nextM);
var day = this.getDate();
if (day > daysInNextMonth) {
day = daysInNextMonth;
}
return new Date(nextY, nextM, day);
};
//计算当前月最大天数
Date.daysInMonth = function(year, month) {
if (month == 1) {
if (year % 4 == 0 && year % 100 != 0) return 29;
else return 28;
} else if ((month <= 6 && month % 2 == 0) || (month > 6 && month % 2 == 1))
return 31;
else return 30;
};
Date.prototype.format = function(format) {
var date = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.getSeconds(),
"q+": Math.floor((this.getMonth() + 3) / 3),
"S+": this.getMilliseconds()
};
if (/(y+)/i.test(format)) {
format = format.replace(
RegExp.$1,
(this.getFullYear() + "").substr(4 - RegExp.$1.length)
);
}
for (var k in date) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(
RegExp.$1,
RegExp.$1.length == 1
? date[k]
: ("00" + date[k]).substr(("" + date[k]).length)
);
}
}
return format;
};

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,336 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>preview_demo</title>
</head>
<style>
html,
body {
padding: 0;
margin: 0;
}
.playWnd {
/* margin: 30px 0 0 400px; */
/*width: 100%;/*830px;/*播放容器的宽和高设定*/
/*height: 100%;/*460px;*/
width: 800px;
height: 400px;
}
.operate {
margin-top: 24px;
}
.operate::after {
content: '';
display: block;
clear: both;
}
.module {
float: right;
width: 340px;
/*min-height: 320px;*/
margin-left: 16px;
padding: 16px 8px;
box-sizing: border-box;
border: 1px solid #e5e5e5;
}
.module .item {
margin-bottom: 4px;
}
.module input[type="text"] {
box-sizing: border-box;
display: inline-block;
vertical-align: middle;
margin-left: 0;
width: 150px;
min-height: 20px;
}
.module .btn {
min-width: 80px;
min-height: 24px;
margin-top: 100px;
margin-left: 80px;
}
</style>
<body>
<!--预览界面-->
<!-- <div id="operate" class="operate">-->
<!-- <div class="module">-->
<!-- <div class="item"><span class="label">监控点编号:</span><input id="cameraIndexCode" type="text" value=""></div>-->
<!-- <div class="item" style="margin-top: 20px;margin-left: -20px;">-->
<!-- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-->
<!-- <button style="width:20px;padding:0;margin:0;" id="startPreview" class="btn">预览</button>-->
<!-- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-->
<!-- <button style="width:90px;padding:0;margin:0;" id="stopAllPreview" class="btn">停止全部预览</button>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!--视频窗口展示-->
<div id="playWnd" class="playWnd"></div>
</body>
<!--三个必要的js文件引入-->
<script src="jquery-1.12.4.min.js"></script>
<script src="jsencrypt.min.js"></script>
<!-- 用于RSA加密 -->
<script src="jsWebControl-1.0.0.min.js"></script>
<!-- 用于前端与插件交互 -->
<script type="text/javascript">
//页面加载时创建播放实例初始化
$(window).load(function() {
initPlugin();
setTimeout(() => {
startPreview()
}, 3000)
});
//声明公用变量
var initCount = 0;
var pubKey = '';
let width = 830
let height = 460
// 创建播放实例
function initPlugin() {
oWebControl = new WebControl({
szPluginContainer: "playWnd", // 指定容器id
iServicePortStart: 15900, // 指定起止端口号,建议使用该值
iServicePortEnd: 15909,
szClassId: "23BF3B0A-2C56-4D97-9C03-0CB103AA8F11", // 用于IE10使用ActiveX的clsid
cbConnectSuccess: function() { // 创建WebControl实例成功
oWebControl.JS_StartService("window", { // WebControl实例创建成功后需要启动服务
dllPath: "./VideoPluginConnect.dll" // 值"./VideoPluginConnect.dll"写死
}).then(function() { // 启动插件服务成功
oWebControl.JS_SetWindowControlCallback({ // 设置消息回调
cbIntegrationCallBack: cbIntegrationCallBack
});
oWebControl.JS_CreateWnd("playWnd", width, height).then(function() { //JS_CreateWnd创建视频播放窗口宽高可设定
init(); // 创建播放实例成功后初始化
});
}, function() { // 启动插件服务失败
});
},
cbConnectError: function() { // 创建WebControl实例失败
oWebControl = null;
$("#playWnd").html("插件未启动,正在尝试启动,请稍候...");
WebControl.JS_WakeUp("VideoWebPlugin://"); // 程序未启动时执行error函数采用wakeup来启动程序
initCount++;
if (initCount < 3) {
setTimeout(function() {
initPlugin();
}, 3000)
} else {
$("#playWnd").html("插件启动失败,请检查插件是否安装!");
}
},
cbConnectClose: function(bNormalClose) {
// 异常断开bNormalClose = false
// JS_Disconnect正常断开bNormalClose = true
console.log("cbConnectClose");
oWebControl = null;
}
});
}
// 设置窗口控制回调
function setCallbacks() {
oWebControl.JS_SetWindowControlCallback({
cbIntegrationCallBack: cbIntegrationCallBack
});
}
// 推送消息
function cbIntegrationCallBack(oData) {
showCBInfo(JSON.stringify(oData.responseMsg));
}
//初始化
function init() {
getPubKey(function() {
////////////////////////////////// 请自行修改以下变量值 ////////////////////////////////////
var appkey = "27440598"; //综合安防管理平台提供的appkey必填
var secret = setEncrypt("ZlIKDm4by0vWGgs6GnCf"); //综合安防管理平台提供的secret必填
var ip = "2.35.251.44"; //综合安防管理平台IP地址必填
var playMode = 0; //初始播放模式0-预览1-回放
var port = 443; //综合安防管理平台端口若启用HTTPS协议默认443
var snapDir = "D:\\SnapDir"; //抓图存储路径
var videoDir = "D:\\VideoDir"; //紧急录像或录像剪辑存储路径
var layout = "1x1"; //playMode指定模式的布局
var enableHTTPS = 1; //是否启用HTTPS协议与综合安防管理平台交互这里总是填1
var encryptedFields = 'secret'; //加密字段默认加密领域为secret
var showToolbar = 0; //是否显示工具栏0-不显示非0-显示
var showSmart = 0; //是否显示智能信息如配置移动侦测后画面上的线框0-不显示非0-显示
var buttonIDs = "0,16,256,257,258,259,260,512,513,514,515,516,517,768,769"; //自定义工具条按钮
////////////////////////////////// 请自行修改以上变量值 ////////////////////////////////////
oWebControl.JS_RequestInterface({
funcName: "init",
argument: JSON.stringify({
appkey: appkey, //API网关提供的appkey
secret: secret, //API网关提供的secret
ip: ip, //API网关IP地址
playMode: playMode, //播放模式(决定显示预览还是回放界面)
port: port, //端口
snapDir: snapDir, //抓图存储路径
videoDir: videoDir, //紧急录像或录像剪辑存储路径
layout: layout, //布局
enableHTTPS: enableHTTPS, //是否启用HTTPS协议
encryptedFields: encryptedFields, //加密字段
showToolbar: showToolbar, //是否显示工具栏
showSmart: showSmart, //是否显示智能信息
buttonIDs: buttonIDs //自定义工具条按钮
})
}).then(function(oData) {
oWebControl.JS_Resize(width, height); // 初始化后resize一次规避firefox下首次显示窗口后插件窗口未与DIV窗口重合问题
});
});
}
//获取公钥
function getPubKey(callback) {
oWebControl.JS_RequestInterface({
funcName: "getRSAPubKey",
argument: JSON.stringify({
keyLength: 1024
})
}).then(function(oData) {
console.log(oData);
if (oData.responseMsg.data) {
pubKey = oData.responseMsg.data;
callback()
}
})
}
//RSA加密
function setEncrypt(value) {
var encrypt = new JSEncrypt();
encrypt.setPublicKey(pubKey);
return encrypt.encrypt(value);
}
// 监听resize事件使插件窗口尺寸跟随DIV窗口变化
$(window).resize(function() {
if (oWebControl != null) {
oWebControl.JS_Resize(width, height);
setWndCover();
}
});
// 监听滚动条scroll事件使插件窗口跟随浏览器滚动而移动
$(window).scroll(function() {
if (oWebControl != null) {
oWebControl.JS_Resize(width, height);
setWndCover();
}
});
// 设置窗口裁剪当因滚动条滚动导致窗口需要被遮住的情况下需要JS_CuttingPartWindow部分窗口
function setWndCover() {
var iWidth = $(window).width();
var iHeight = $(window).height();
var oDivRect = $("#playWnd").get(0).getBoundingClientRect();
var iCoverLeft = (oDivRect.left < 0) ? Math.abs(oDivRect.left) : 0;
var iCoverTop = (oDivRect.top < 0) ? Math.abs(oDivRect.top) : 0;
var iCoverRight = (oDivRect.right - iWidth > 0) ? Math.round(oDivRect.right - iWidth) : 0;
var iCoverBottom = (oDivRect.bottom - iHeight > 0) ? Math.round(oDivRect.bottom - iHeight) : 0;
iCoverLeft = (iCoverLeft > width) ? width : iCoverLeft;
iCoverTop = (iCoverTop > height) ? height : iCoverTop;
iCoverRight = (iCoverRight > width) ? width : iCoverRight;
iCoverBottom = (iCoverBottom > height) ? height : iCoverBottom;
oWebControl.JS_RepairPartWindow(0, 0, width + 1, height); // 多1个像素点防止还原后边界缺失一个像素条
if (iCoverLeft != 0) {
oWebControl.JS_CuttingPartWindow(0, 0, iCoverLeft, height);
}
if (iCoverTop != 0) {
oWebControl.JS_CuttingPartWindow(0, 0, width + 1, iCoverTop); // 多剪掉一个像素条,防止出现剪掉一部分窗口后出现一个像素条
}
if (iCoverRight != 0) {
oWebControl.JS_CuttingPartWindow(width - iCoverRight, 0, iCoverRight, height);
}
if (iCoverBottom != 0) {
oWebControl.JS_CuttingPartWindow(0, height - iCoverBottom, width, iCoverBottom);
}
}
function startPreview() {
var cameraIndexCode = '32058500081316390135' //$("#cameraIndexCode").val(); //获取输入的监控点编号值,必填
var streamMode = 0; //主子码流标识0-主码流1-子码流
var transMode = 1; //传输协议0-UDP1-TCP
var gpuMode = 0; //是否启用GPU硬解0-不启用1-启用
var wndId = -1; //播放窗口序号在2x2以上布局下可指定播放窗口
cameraIndexCode = cameraIndexCode.replace(/(^\s*)/g, "");
cameraIndexCode = cameraIndexCode.replace(/(\s*$)/g, "");
oWebControl.JS_RequestInterface({
funcName: "startPreview",
argument: JSON.stringify({
cameraIndexCode: cameraIndexCode, //监控点编号
streamMode: streamMode, //主子码流标识
transMode: transMode, //传输协议
gpuMode: gpuMode, //是否开启GPU硬解
wndId: wndId //可指定播放窗口
})
})
}
//视频预览功能
// $("#startPreview").click(function () {
// var cameraIndexCode = '32058500081316591724'//$("#cameraIndexCode").val(); //获取输入的监控点编号值,必填
// var streamMode = 0; //主子码流标识0-主码流1-子码流
// var transMode = 1; //传输协议0-UDP1-TCP
// var gpuMode = 0; //是否启用GPU硬解0-不启用1-启用
// var wndId = -1; //播放窗口序号在2x2以上布局下可指定播放窗口
// cameraIndexCode = cameraIndexCode.replace(/(^\s*)/g, "");
// cameraIndexCode = cameraIndexCode.replace(/(\s*$)/g, "");
// oWebControl.JS_RequestInterface({
// funcName: "startPreview",
// argument: JSON.stringify({
// cameraIndexCode: cameraIndexCode, //监控点编号
// streamMode: streamMode, //主子码流标识
// transMode: transMode, //传输协议
// gpuMode: gpuMode, //是否开启GPU硬解
// wndId: wndId //可指定播放窗口
// })
// })
// });
// //停止全部预览
// $("#stopAllPreview").click(function () {
// oWebControl.JS_RequestInterface({
// funcName: "stopAllPreview"
// });
// });
// 标签关闭
$(window).unload(function() {
if (oWebControl != null) {
oWebControl.JS_HideWnd(); // 先让窗口隐藏,规避可能的插件窗口滞后于浏览器消失问题
oWebControl.JS_Disconnect().then(function() { // 断开与插件服务连接成功
},
function() { // 断开与插件服务连接失败
});
}
});
</script>
</html>

@ -0,0 +1,119 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.spth_win {
width: 320px;
height: 564px !important;
z-index: 9999;
position: absolute;
left: calc(50% - 142px);
top: calc(50% - 254px) !important;
}
.spth_control {
position: absolute;
bottom: 30px;
left: 18px;
width: 284px;
height: 100px;
display: flex;
align-items: center;
z-index: 999;
}
.loading {
width: 150px;
height: 30px;
font-size: 20px;
line-height: 20px;
position: absolute;
top: calc(50% - 55px);
left: calc(50% - 75px);
z-index: 998;
color: #fff;
}
.spth_control_left {
width: 170px;
display: flex;
flex-direction: column;
justify-content: center;
}
.spth_control_left p, .spth_control_left span {
font-size: 18px;
}
.spth_control_left p {
color: #11D0C9;
margin: 10px 0 0 20px;
}
.spth_control_right {
width: 90px;
}
.callOver {
width: 28px;
height: 28px;
margin-top: 15px;
background: url(images/callOver.png) no-repeat;
}
/* .hang_up::before {
background: url("images/callOver.png") no-repeat;
width: 26px;
height: 8px;
display: block;
margin-bottom: 10px;
}
.hang_up::after {
content: '通话结束';
} */
.open_btn {
height: 50px;
width: 200px;
font-size: 25px;
border: 2px solid red;
border-radius: 15px;
text-align: center;
line-height: 50px;
cursor: pointer
}
</style>
</head>
<body>
<div id="weather-v2-plugin-simple"></div>
</body>
<script>
WIDGET = {
CONFIG: {
"modules": "0234",
"background": 5,
"tmpColor": "FFFFFF",
"tmpSize": 18,
"cityColor": "4A4A4A",
"citySize": 16,
"aqiSize": 16,
"weatherIconSize": 24,
"alertIconSize": 18,
"padding": "25px 10px 10px 10px",
"shadow": "1",
"language": "zh",
"borderRadius": 5,
"fixed": "true",
"vertical": "top",
"horizontal": "center",
"key": "UWPnWQqHMZ"
}
}
</script>
<script src="https://apip.weatherdt.com/simple/static/js/weather-simple-common.js?v=2.0"></script>
</html>

@ -0,0 +1,64 @@
<!--
* @Descripttion:
* @version:
* @Author: Wiley.Yang
* @Date: 2022-02-11 17:24:06
* @LastEditors: Wiley.Yang
* @LastEditTime: 2022-02-16 15:50:56
-->
<template>
<div id="app">
<router-view v-if="isRouterAlive" />
</div>
</template>
<script>
import {
// getToken,
setToken
} from '@/utils/auth' // get token from cookie
import qs from 'qs'
export default {
name: 'App',
provide() {
return {
reload: this.reload
}
},
data() {
return {
isRouterAlive: true
}
},
created() {
if (window.location.search != null && window.location.search !== '') {
var tokenObj = qs.parse(window.location.search.substr(1))
if (tokenObj.token != null && tokenObj.token !== '') {
setToken(tokenObj.token)
if (tokenObj.redirect != null) {
window.location.href = './#' + tokenObj.redirect
} else {
window.location.href = './'
}
}
}
},
methods: {
reload() {
this.isRouterAlive = false
this.$nextTick(() => {
this.isRouterAlive = true
})
}
}
}
</script>
<style>
火狐浏览器滚动条 * {
/* 滑块颜色 滚动条背景颜色 */
scrollbar-color: rgba(17, 170, 255, 0.6) rgba(17, 170, 255, 0.1);
/* 滚动条宽度有三种thin、auto、none */
scrollbar-width: none;
}
</style>

@ -0,0 +1,660 @@
/*
* @AuthallProjectsr: Jackie
* @Date: 2021-12-07 09:47:57
* @LastEditors: lough
* @LastEditTime: 2022-10-28 09:43:16
* @Description:
*/
import request from '@/utils/request'
/**
* 数据来源
* @returns
*/
export function getSource(id) {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'[]': {
'T_static_data': {
'ID': id,
'@DATA': 'data'
}
}
}
})
}
/**
* 数据来源
* @returns
*/
export function getScreenDot() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'[]': {
'T_bigscreen_hzzb': {
'@DATA': 'data'
},
'count': 200
}
}
})
}
/**
* 舆情走势图
* @returns
*/
export function publicOpinionTrendChart() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_SUBJECT_SEVEN_DAY[]': {
'T_SUBJECT_SEVEN_DAY': {
'@order': 'created_time-'
},
'count': 100,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
/**
* 舆情信息量统计
* @returns
*/
export function statisticsOfPublicOpinionInformation() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_GET_PARAMETER[]': {
'T_GET_PARAMETER': {
'@order': 'ID-'
},
'count': 10,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
/**
* 媒体类型
* @returns
*/
export function mediaList() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_MEDIA_LIST[]': {
'T_MEDIA_LIST': {
'@order': 'id-'
},
'count': 10,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
/**
* 涉事类型
* @returns
*/
export function tagsList() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_TAGS[]': {
'T_TAGS': {
'@order': 'id-'
},
'count': 10,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
/**
* 高频热词
* @returns
*/
export function keyWords() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_KEYWORDS[]': {
'T_KEYWORDS': {
'@order': 'id-'
},
'count': 40,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
/**
* 预警信息列表
* @returns
*/
export function opinionWarningList() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'[]': {
'T_WARNING_LIST': {
'@order': 'warning_time-'
},
'count': 99,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
/**
* 预警信息类别表
* @returns
*/
export function allProjects() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'[]': {
'T_ALL_PROJECTS': {
'@order': 'id-'
},
'count': 99,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
/**
* 预警信息详情
* @returns
*/
export function opinionWarningDetail(data) {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/perception/detail`,
method: 'post',
data: {
'newsId': data.news_id || data.newsId,
'publishTime': data.created_time || data.publishTime
}
})
}
/**
* 舆情信息
* @returns
*/
export function newsList(data) {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/perception/newsList/by/subjectId`,
method: 'post',
data
})
}
/**
* 舆情信息
* @returns
*/
export function newswarningList(data) {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/warningList/detail`,
method: 'post',
data
})
}
// 聚焦本地媒体
export function loaclMedia() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_LOCAL_MEDIA[]': {
'T_LOCAL_MEDIA': {
'@order': ''
},
'count': 500,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网安国内攻击次数
export function inlandAttack() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_INLAND_ATTACK[]': {
'T_INLAND_ATTACK': {
'@order': 'attack_count-'
},
'count': 150,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网安国外攻击次数
export function outlandAttack() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_OUTLAND_ATTACK[]': {
'T_OUTLAND_ATTACK': {
'@order': 'attack_count-'
},
'count': 150,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 左下角安全监测滚动
export function getLatest() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_LATEST_NEWS[]': {
'T_LATEST_NEWS': {
'@order': 'id+'
},
'count': 20,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 安全监测
export function getSecurity() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_SECURITY_MONITOR[]': {
'T_SECURITY_MONITOR': {
'@order': 'id+'
},
'count': 4,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 受攻击分布情况
export function getAttackTypeDistribution() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_ATTACK_TYPE_DISTRIBUTION[]': {
'T_ATTACK_TYPE_DISTRIBUTION': {
'@order': 'id+'
},
'count': 6,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 安全隐患
export function getSafeHazardSatistic() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_HAZARD_SATISTIC[]': {
'T_HAZARD_SATISTIC': {
'@order': 'id+'
},
'count': 6,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 受攻击top5
export function getTopIp() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_ATTACKED_IP_TOP5[]': {
'T_ATTACKED_IP_TOP5': {
'@order': 'id+'
},
'count': 6,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台bilibili
export function getBilibiliData() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_DATA_BILIBILI[]': {
'T_DATA_BILIBILI': {
'@order': 'account_id+'
},
'count': 10000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台小红书
export function getRedBookData() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_DATA_RED_BOOK[]': {
'T_DATA_RED_BOOK': {
'@order': 'account_id+'
},
'count': 10000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台今日头条
export function getToDayHeadlineData() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_DATA_TODAY_HEADLINE[]': {
'T_DATA_TODAY_HEADLINE': {
'@order': 'account_id+'
},
'count': 10000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台快手
export function getQuickData() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_DATA_QUICK_WORKER[]': {
'T_DATA_QUICK_WORKER': {
'@order': 'account_id+'
},
'count': 10000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台微信
export function getWechat() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_DATA_WECHAT[]': {
'T_DATA_WECHAT': {
'@order': ''
},
'count': 1000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台网站
export function getWebsite() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_big_screen_website_data[]': {
'T_big_screen_website_data': {
'@order': 'id+'
},
'count': 10000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台微博
export function getWeibo() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_big_screen_weibo_data[]': {
'T_big_screen_weibo_data': {
'@order': 'id+'
},
'count': 5000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网络平台抖音
export function getTikTok() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_big_screen_tik_tok[]': {
'T_big_screen_tik_tok': {
'@order': 'id+'
},
'count': 10000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网评文章录用情况
export function getReviewArticle() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_big_screen_review_article[]': {
'T_big_screen_review_article': {
'@order': 'created_time-'
},
'count': 10000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 网评员任务完成率
export function getComplete() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_DEPT_COMPLETE[]': {
'T_DEPT_COMPLETE': {
'@order': 'id+'
},
'count': 1000,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
export function getHigherMediaList(data) {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/dashboard/api/higherMediaList`,
method: 'post',
data
})
}
// 上级媒体暂时接口
export function sjmtMedia() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/get',
method: 'post',
data: {
'T_UPPER_MEDIA[]': {
'T_UPPER_MEDIA': {
'@order': ''
},
'count': 500,
'page': 0,
'query': 2
},
'total@': '/[]/total'
}
})
}
// 通报完成情况接口
export function getNotificationList() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/interSecurity/getNotificationCompletion',
method: 'get'
})
}
// 通报次数统计
export function queryReportNumber() {
return request({
url: window._CONFIG['apiJsonUrl'] + '/dashboard/api/interSecurity/queryReportNumber',
method: 'get'
})
}
// 通报次数统计
export function querySecurityByName(data) {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interSecurity/queryInterSecurityDocument`,
method: 'get',
params: data
})
}
// 查询舆情提示单数量
export function getTsdNum() {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interOpinion/getTipDocCount`,
method: 'get'
})
}
// 查询舆情转班单数量
export function getZbdNum() {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interOpinion/getReferralDocCount`,
method: 'get'
})
}
// 查询舆情提示单
export function getyqTsd() {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interOpinion/queryTipDoc`,
method: 'get'
})
}
// 查询舆情转办单
export function getyqZbd() {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interOpinion/queryReferralDoc`,
method: 'get'
})
}
// 查询舆情部门转办单详情
export function getyqZbdDetails() {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interOpinion/queryReferralDocDetail`,
method: 'get'
})
}
// 查询舆情转办量
export function getyqZblNum() {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interOpinion/queryDeptReferralCount`,
method: 'get'
})
}
// 获取举报总量
export function getreportNum() {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/interManagement/getReportCount`,
method: 'get'
})
}
export function viewQueryListByViewId(id) {
return request({
url: window._CONFIG['apiJsonUrl'] + `/dashboard/api/grid/getInfo?code=${id}`,
method: 'get'
})
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 786 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 538 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 809 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 756 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 591 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 643 B

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save