@ -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']
|
||||||
|
}
|
||||||
|
}
|
@ -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,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"]
|
||||||
|
}
|
@ -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";
|
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>
|
After Width: | Height: | Size: 758 B |
@ -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();
|
||||||
|
});
|
@ -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="✖",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
|
@ -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;
|
||||||
|
};
|
@ -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,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'
|
||||||
|
})
|
||||||
|
}
|
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 210 B |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 71 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 786 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 9.4 KiB |
After Width: | Height: | Size: 538 B |
After Width: | Height: | Size: 976 B |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 5.2 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 809 B |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 756 B |
After Width: | Height: | Size: 591 B |
After Width: | Height: | Size: 643 B |