openatc-components 0.5.28 → 0.5.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/index.js +137 -137
- package/package/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +2 -1
- package/package/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +10 -4
- package/package/kisscomps/components/SchemeConfig/SchemeConfig.vue +7 -0
- package/package/kisscomps/components/SchemeConfig/manualControlModalNew/icon.vue +15 -0
- package/package/kissui.min.js +1 -1
- package/package.json +1 -1
- package/src/i18n/language/en.js +6 -2
- package/src/i18n/language/ru.js +6 -2
- package/src/i18n/language/zh.js +6 -2
- package/src/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue +2 -1
- package/src/kisscomps/components/DrawChannelization/drawsvg/index.draw.vue +10 -4
- package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +7 -0
- package/src/kisscomps/components/SchemeConfig/manualControlModalNew/icon.vue +15 -0
- package/src/utils/phasedesc.js +135 -0
- package/src/views/intersection.vue +1 -1
- package/package/kisscomps/components/OptimizeKanban/index.js +0 -2
- package/package/kisscomps/components/OptimizeKanban/index.vue +0 -369
- package/package/kisscomps/components/StageOptimize/index.vue +0 -310
- package/src/node_modules/.package_versions.json +0 -1
package/config/index.js
CHANGED
|
@@ -1,137 +1,137 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2020 kedacom
|
|
3
|
-
* OpenATC is licensed under Mulan PSL v2.
|
|
4
|
-
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
5
|
-
* You may obtain a copy of Mulan PSL v2 at:
|
|
6
|
-
* http://license.coscl.org.cn/MulanPSL2
|
|
7
|
-
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
8
|
-
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
9
|
-
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
10
|
-
* See the Mulan PSL v2 for more details.
|
|
11
|
-
**/
|
|
12
|
-
'use strict'
|
|
13
|
-
// Template version: 1.2.6
|
|
14
|
-
// see http://vuejs-templates.github.io/webpack for documentation.
|
|
15
|
-
const fs = require('fs');
|
|
16
|
-
const path = require('path')
|
|
17
|
-
let VUE_APP_PROXY_API_TARGET = "http://127.0.0.1:8080"
|
|
18
|
-
let VUE_APP_PROXY_MAIN_TARGET = "http://
|
|
19
|
-
let VUE_APP_PROXY_SOCKET_TARGET = "http://127.0.0.1:8080"
|
|
20
|
-
const localFile = path.resolve(__dirname, 'dev.local.js');
|
|
21
|
-
if (fs.existsSync(localFile)) {
|
|
22
|
-
let local = require(localFile)
|
|
23
|
-
if (local) {
|
|
24
|
-
VUE_APP_PROXY_API_TARGET = local.VUE_APP_PROXY_API_TARGET
|
|
25
|
-
VUE_APP_PROXY_MAIN_TARGET = local.VUE_APP_PROXY_MAIN_TARGET
|
|
26
|
-
VUE_APP_PROXY_SOCKET_TARGET = local.VUE_APP_PROXY_SOCKET_TARGET
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
module.exports = {
|
|
30
|
-
dev: {
|
|
31
|
-
// Paths
|
|
32
|
-
assetsSubDirectory: 'static',
|
|
33
|
-
assetsPublicPath: '/',
|
|
34
|
-
proxyTable: {
|
|
35
|
-
'/api': {
|
|
36
|
-
target: VUE_APP_PROXY_API_TARGET,
|
|
37
|
-
changeOrigin: true,
|
|
38
|
-
ws: true,
|
|
39
|
-
secure: false,
|
|
40
|
-
pathRewrite: {
|
|
41
|
-
'^/api': '/api'
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
'/socket': {
|
|
45
|
-
target: VUE_APP_PROXY_SOCKET_TARGET,
|
|
46
|
-
changeOrigin: true,
|
|
47
|
-
ws: true,
|
|
48
|
-
secure: false,
|
|
49
|
-
pathRewrite: {
|
|
50
|
-
'^/socket': '/'
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
'/': {
|
|
54
|
-
target: VUE_APP_PROXY_MAIN_TARGET,
|
|
55
|
-
changeOrigin: true, //跨域
|
|
56
|
-
pathRewrite: {
|
|
57
|
-
'^/': '/'//这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://10.1.5.11:8080/xxx/duty?time=2017-07-07 14:57:22',直接写‘/api/xxx/duty?time=2017-07-07 14:57:22’即可
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
|
|
62
|
-
// Various Dev Server settings
|
|
63
|
-
// host: '0.0.0.0',
|
|
64
|
-
host: 'localhost', // can be overwritten by process.env.HOST
|
|
65
|
-
port: 9528, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
|
66
|
-
autoOpenBrowser: true,
|
|
67
|
-
errorOverlay: true,
|
|
68
|
-
notifyOnErrors: false,
|
|
69
|
-
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
|
|
70
|
-
|
|
71
|
-
// Use Eslint Loader?
|
|
72
|
-
// If true, your code will be linted during bundling and
|
|
73
|
-
// linting errors and warnings will be shown in the console.
|
|
74
|
-
useEslint: true,
|
|
75
|
-
// If true, eslint errors and warnings will also be shown in the error overlay
|
|
76
|
-
// in the browser.
|
|
77
|
-
showEslintErrorsInOverlay: true,
|
|
78
|
-
|
|
79
|
-
/**
|
|
80
|
-
* Source Maps
|
|
81
|
-
*/
|
|
82
|
-
|
|
83
|
-
// https://webpack.js.org/configuration/devtool/#development
|
|
84
|
-
devtool: 'source-map',
|
|
85
|
-
|
|
86
|
-
// If you have problems debugging vue-files in devtools,
|
|
87
|
-
// set this to false - it *may* help
|
|
88
|
-
// https://vue-loader.vuejs.org/en/options.html#cachebusting
|
|
89
|
-
cacheBusting: false,
|
|
90
|
-
|
|
91
|
-
// CSS Sourcemaps off by default because relative paths are "buggy"
|
|
92
|
-
// with this option, according to the CSS-Loader README
|
|
93
|
-
// (https://github.com/webpack/css-loader#sourcemaps)
|
|
94
|
-
// In our experience, they generally work as expected,
|
|
95
|
-
// just be aware of this issue when enabling this option.
|
|
96
|
-
cssSourceMap: false,
|
|
97
|
-
},
|
|
98
|
-
|
|
99
|
-
build: {
|
|
100
|
-
// Template for index.html
|
|
101
|
-
index: path.resolve(__dirname, '../dist/index.html'),
|
|
102
|
-
|
|
103
|
-
// Paths
|
|
104
|
-
assetsRoot: path.resolve(__dirname, '../dist'),
|
|
105
|
-
assetsSubDirectory: './',
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* You can set by youself according to actual condition
|
|
109
|
-
* You will need to set this if you plan to deploy your site under a sub path,
|
|
110
|
-
* for example GitHub pages. If you plan to deploy your site to https://foo.github.io/bar/,
|
|
111
|
-
* then assetsPublicPath should be set to "/bar/".
|
|
112
|
-
* In most cases please use '/' !!!
|
|
113
|
-
*/
|
|
114
|
-
assetsPublicPath: './', // If you are deployed on the root path, please use '/'
|
|
115
|
-
|
|
116
|
-
/**
|
|
117
|
-
* Source Maps
|
|
118
|
-
*/
|
|
119
|
-
|
|
120
|
-
productionSourceMap: false,
|
|
121
|
-
// https://webpack.js.org/configuration/devtool/#production
|
|
122
|
-
devtool: '#source-map',
|
|
123
|
-
|
|
124
|
-
// Gzip off by default as many popular static hosts such as
|
|
125
|
-
// Surge or Netlify already gzip all static assets for you.
|
|
126
|
-
// Before setting to `true`, make sure to:
|
|
127
|
-
// npm install --save-dev compression-webpack-plugin
|
|
128
|
-
productionGzip: false,
|
|
129
|
-
productionGzipExtensions: ['js', 'css'],
|
|
130
|
-
|
|
131
|
-
// Run the build command with an extra argument to
|
|
132
|
-
// View the bundle analyzer report after build finishes:
|
|
133
|
-
// `npm run build --report`
|
|
134
|
-
// Set to `true` or `false` to always turn it on or off
|
|
135
|
-
bundleAnalyzerReport: process.env.npm_config_report
|
|
136
|
-
}
|
|
137
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020 kedacom
|
|
3
|
+
* OpenATC is licensed under Mulan PSL v2.
|
|
4
|
+
* You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
5
|
+
* You may obtain a copy of Mulan PSL v2 at:
|
|
6
|
+
* http://license.coscl.org.cn/MulanPSL2
|
|
7
|
+
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
|
|
8
|
+
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
9
|
+
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
10
|
+
* See the Mulan PSL v2 for more details.
|
|
11
|
+
**/
|
|
12
|
+
'use strict'
|
|
13
|
+
// Template version: 1.2.6
|
|
14
|
+
// see http://vuejs-templates.github.io/webpack for documentation.
|
|
15
|
+
const fs = require('fs');
|
|
16
|
+
const path = require('path')
|
|
17
|
+
let VUE_APP_PROXY_API_TARGET = "http://127.0.0.1:8080"
|
|
18
|
+
let VUE_APP_PROXY_MAIN_TARGET = "http://192.168.13.103:10003/openatc"
|
|
19
|
+
let VUE_APP_PROXY_SOCKET_TARGET = "http://127.0.0.1:8080"
|
|
20
|
+
const localFile = path.resolve(__dirname, 'dev.local.js');
|
|
21
|
+
if (fs.existsSync(localFile)) {
|
|
22
|
+
let local = require(localFile)
|
|
23
|
+
if (local) {
|
|
24
|
+
VUE_APP_PROXY_API_TARGET = local.VUE_APP_PROXY_API_TARGET
|
|
25
|
+
VUE_APP_PROXY_MAIN_TARGET = local.VUE_APP_PROXY_MAIN_TARGET
|
|
26
|
+
VUE_APP_PROXY_SOCKET_TARGET = local.VUE_APP_PROXY_SOCKET_TARGET
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
module.exports = {
|
|
30
|
+
dev: {
|
|
31
|
+
// Paths
|
|
32
|
+
assetsSubDirectory: 'static',
|
|
33
|
+
assetsPublicPath: '/',
|
|
34
|
+
proxyTable: {
|
|
35
|
+
'/api': {
|
|
36
|
+
target: VUE_APP_PROXY_API_TARGET,
|
|
37
|
+
changeOrigin: true,
|
|
38
|
+
ws: true,
|
|
39
|
+
secure: false,
|
|
40
|
+
pathRewrite: {
|
|
41
|
+
'^/api': '/api'
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
'/socket': {
|
|
45
|
+
target: VUE_APP_PROXY_SOCKET_TARGET,
|
|
46
|
+
changeOrigin: true,
|
|
47
|
+
ws: true,
|
|
48
|
+
secure: false,
|
|
49
|
+
pathRewrite: {
|
|
50
|
+
'^/socket': '/'
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
'/': {
|
|
54
|
+
target: VUE_APP_PROXY_MAIN_TARGET,
|
|
55
|
+
changeOrigin: true, //跨域
|
|
56
|
+
pathRewrite: {
|
|
57
|
+
'^/': '/'//这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://10.1.5.11:8080/xxx/duty?time=2017-07-07 14:57:22',直接写‘/api/xxx/duty?time=2017-07-07 14:57:22’即可
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
// Various Dev Server settings
|
|
63
|
+
// host: '0.0.0.0',
|
|
64
|
+
host: 'localhost', // can be overwritten by process.env.HOST
|
|
65
|
+
port: 9528, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
|
66
|
+
autoOpenBrowser: true,
|
|
67
|
+
errorOverlay: true,
|
|
68
|
+
notifyOnErrors: false,
|
|
69
|
+
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
|
|
70
|
+
|
|
71
|
+
// Use Eslint Loader?
|
|
72
|
+
// If true, your code will be linted during bundling and
|
|
73
|
+
// linting errors and warnings will be shown in the console.
|
|
74
|
+
useEslint: true,
|
|
75
|
+
// If true, eslint errors and warnings will also be shown in the error overlay
|
|
76
|
+
// in the browser.
|
|
77
|
+
showEslintErrorsInOverlay: true,
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Source Maps
|
|
81
|
+
*/
|
|
82
|
+
|
|
83
|
+
// https://webpack.js.org/configuration/devtool/#development
|
|
84
|
+
devtool: 'source-map',
|
|
85
|
+
|
|
86
|
+
// If you have problems debugging vue-files in devtools,
|
|
87
|
+
// set this to false - it *may* help
|
|
88
|
+
// https://vue-loader.vuejs.org/en/options.html#cachebusting
|
|
89
|
+
cacheBusting: false,
|
|
90
|
+
|
|
91
|
+
// CSS Sourcemaps off by default because relative paths are "buggy"
|
|
92
|
+
// with this option, according to the CSS-Loader README
|
|
93
|
+
// (https://github.com/webpack/css-loader#sourcemaps)
|
|
94
|
+
// In our experience, they generally work as expected,
|
|
95
|
+
// just be aware of this issue when enabling this option.
|
|
96
|
+
cssSourceMap: false,
|
|
97
|
+
},
|
|
98
|
+
|
|
99
|
+
build: {
|
|
100
|
+
// Template for index.html
|
|
101
|
+
index: path.resolve(__dirname, '../dist/index.html'),
|
|
102
|
+
|
|
103
|
+
// Paths
|
|
104
|
+
assetsRoot: path.resolve(__dirname, '../dist'),
|
|
105
|
+
assetsSubDirectory: './',
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* You can set by youself according to actual condition
|
|
109
|
+
* You will need to set this if you plan to deploy your site under a sub path,
|
|
110
|
+
* for example GitHub pages. If you plan to deploy your site to https://foo.github.io/bar/,
|
|
111
|
+
* then assetsPublicPath should be set to "/bar/".
|
|
112
|
+
* In most cases please use '/' !!!
|
|
113
|
+
*/
|
|
114
|
+
assetsPublicPath: './', // If you are deployed on the root path, please use '/'
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Source Maps
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
productionSourceMap: false,
|
|
121
|
+
// https://webpack.js.org/configuration/devtool/#production
|
|
122
|
+
devtool: '#source-map',
|
|
123
|
+
|
|
124
|
+
// Gzip off by default as many popular static hosts such as
|
|
125
|
+
// Surge or Netlify already gzip all static assets for you.
|
|
126
|
+
// Before setting to `true`, make sure to:
|
|
127
|
+
// npm install --save-dev compression-webpack-plugin
|
|
128
|
+
productionGzip: false,
|
|
129
|
+
productionGzipExtensions: ['js', 'css'],
|
|
130
|
+
|
|
131
|
+
// Run the build command with an extra argument to
|
|
132
|
+
// View the bundle analyzer report after build finishes:
|
|
133
|
+
// `npm run build --report`
|
|
134
|
+
// Set to `true` or `false` to always turn it on or off
|
|
135
|
+
bundleAnalyzerReport: process.env.npm_config_report
|
|
136
|
+
}
|
|
137
|
+
}
|
package/package/kisscomps/components/DirectionListConfiguration/DirectionListConfiguration.vue
CHANGED
|
@@ -51,7 +51,7 @@ import { getMessageByCode } from '../../../utils/responseMessage.js'
|
|
|
51
51
|
import CrossDiagramMgr from '../../../EdgeMgr/controller/crossDiagramMgr.js'
|
|
52
52
|
import PhaseDataModel from '../IntersectionMap/crossDirection/utils.js'
|
|
53
53
|
// import { getTheme } from '../../../utils/auth'
|
|
54
|
-
import {
|
|
54
|
+
import { getPhaseImages } from '../../../utils/phasedesc.js'
|
|
55
55
|
import PedSvg from './svg/pedSvg'
|
|
56
56
|
|
|
57
57
|
import CrossDirectionConflictList from '../../../utils/conflictList.js'
|
|
@@ -394,6 +394,7 @@ export default {
|
|
|
394
394
|
getPhaseDirIcon (list) {
|
|
395
395
|
let idarr = []
|
|
396
396
|
let dirlist = []
|
|
397
|
+
const images = getPhaseImages(this.$i18n)
|
|
397
398
|
for (let i = 0; i < list.length; i++) {
|
|
398
399
|
if (list[i].id <= 16 && idarr.indexOf(list[i].id) === -1) {
|
|
399
400
|
idarr.push(list[i].id)
|
|
@@ -36,8 +36,14 @@
|
|
|
36
36
|
:disabled="!isSeletable"
|
|
37
37
|
@click="clickOpen"
|
|
38
38
|
>{{$t('openatccomponents.channelizationmap.againimport')}}</el-button>
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
<el-tooltip
|
|
40
|
+
:content="!isLockedCrossMap ? $t('openatccomponents.channelizationmap.lockMap') : $t('openatccomponents.channelizationmap.unlockMap')"
|
|
41
|
+
placement="bottom"
|
|
42
|
+
effect="dark"
|
|
43
|
+
>
|
|
44
|
+
<i class="lock-map el-icon-unlock" v-if="!isLockedCrossMap" @click="handleLockCrossMap()"></i>
|
|
45
|
+
<i class="lock-map el-icon-lock" v-if="isLockedCrossMap" @click="handleLockCrossMap()"></i>
|
|
46
|
+
</el-tooltip>
|
|
41
47
|
</div>
|
|
42
48
|
|
|
43
49
|
<div class="draw-to-sketchpad">
|
|
@@ -95,10 +101,10 @@
|
|
|
95
101
|
<!-- <el-button type="primary" @click="cancledraw()">{{$t('openatccomponents.button.Cancel')}}</el-button> -->
|
|
96
102
|
<el-button type="primary" @click="savedraw()">{{$t('openatccomponents.button.save')}}</el-button>
|
|
97
103
|
<el-button type="primary" @click="importFromFile()">{{$t('openatccomponents.main.import')}}</el-button>
|
|
98
|
-
<el-button type="primary" @click="exportToFile()">{{$t('openatccomponents.
|
|
104
|
+
<el-button type="primary" @click="exportToFile()">{{$t('openatccomponents.channelizationmap.exportFile')}}</el-button>
|
|
99
105
|
<el-switch
|
|
100
106
|
v-model="isDefaultShowQuhua"
|
|
101
|
-
active-text="
|
|
107
|
+
:active-text="$t('openatccomponents.channelizationmap.defaultShowQuhua')">
|
|
102
108
|
</el-switch>
|
|
103
109
|
</div>
|
|
104
110
|
</div>
|
|
@@ -445,6 +445,13 @@ export default {
|
|
|
445
445
|
permission: 'configer:manual:base',
|
|
446
446
|
iconName: this.$t('openatccomponents.overview.modelList26'),
|
|
447
447
|
bgcolor: getTheme() === 'light' ? '#edf6ff' : '#243d59'
|
|
448
|
+
}, {
|
|
449
|
+
type: '自适应微调',
|
|
450
|
+
id: 21,
|
|
451
|
+
iconClass: 'zidongfenjikongzhi',
|
|
452
|
+
permission: 'configer:manual:base',
|
|
453
|
+
iconName: this.$t('openatccomponents.overview.modelList21'),
|
|
454
|
+
bgcolor: getTheme() === 'light' ? '#edf6ff' : '#243d59'
|
|
448
455
|
}
|
|
449
456
|
],
|
|
450
457
|
othersControlList: [
|
|
@@ -446,6 +446,21 @@ PURPOSE. * See the Mulan PSL v2 for more details. **/
|
|
|
446
446
|
d="M947.685353 711.851301h-34.260223v-121.814126c0-15.226766-11.420074-30.453532-30.453531-30.453532h-342.602231v-167.494424h137.040892c38.066914 0 64.713755-30.453532 64.713755-64.713754V114.200743c0-38.066914-30.453532-64.713755-64.713755-64.713754H346.228104c-38.066914-3.806691-68.520446 26.64684-68.520446 64.713754v216.981413c0 38.066914 30.453532 64.713755 64.713755 64.713755h137.040892v167.494424h-342.602231c-15.226766 0-30.453532 11.420074-30.453531 30.453531v121.814127h-26.64684c-38.066914 0-64.713755 30.453532-64.713755 64.713754v137.040892c0 38.066914 30.453532 64.713755 64.713755 64.713755h137.040892c38.066914 0 64.713755-30.453532 64.713754-64.713755v-137.040892c0-38.066914-30.453532-64.713755-64.713754-64.713754H167.313606v-91.360595h315.95539v91.360595h-41.873606c-38.066914 0-64.713755 30.453532-64.713754 64.713754v137.040892c0 38.066914 30.453532 64.713755 64.713754 64.713755h137.040893c38.066914 0 64.713755-30.453532 64.713754-64.713755v-137.040892c0-38.066914-30.453532-64.713755-64.713754-64.713754h-41.873606v-91.360595H852.518067v91.360595h-45.680297c-38.066914 0-64.713755 30.453532-64.713755 64.713754v137.040892c0 38.066914 30.453532 64.713755 64.713755 64.713755h137.040892c38.066914 0 64.713755-30.453532 64.713754-64.713755v-137.040892c3.806691-38.066914-22.840149-68.520446-60.907063-68.520446z m7.613383 205.561338c0 3.806691-3.806691 7.613383-7.613383 7.613383h-137.040892c-3.806691 0-7.613383-3.806691-7.613383-7.613383v-137.040892c0-3.806691 3.806691-7.613383 7.613383-7.613383h137.040892c3.806691 0 7.613383 3.806691 7.613383 7.613383v137.040892z" p-id="21091">
|
|
447
447
|
</path>
|
|
448
448
|
</svg>
|
|
449
|
+
<svg
|
|
450
|
+
v-if="type === '自适应微调'"
|
|
451
|
+
t="1754012035508" class="icon"
|
|
452
|
+
viewBox="0 0 1024 1024"
|
|
453
|
+
version="1.1"
|
|
454
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
455
|
+
p-id="21090"
|
|
456
|
+
:width="iconWidth"
|
|
457
|
+
:height="iconHeight"
|
|
458
|
+
>
|
|
459
|
+
<path
|
|
460
|
+
:class="themeColor"
|
|
461
|
+
d="M947.685353 711.851301h-34.260223v-121.814126c0-15.226766-11.420074-30.453532-30.453531-30.453532h-342.602231v-167.494424h137.040892c38.066914 0 64.713755-30.453532 64.713755-64.713754V114.200743c0-38.066914-30.453532-64.713755-64.713755-64.713754H346.228104c-38.066914-3.806691-68.520446 26.64684-68.520446 64.713754v216.981413c0 38.066914 30.453532 64.713755 64.713755 64.713755h137.040892v167.494424h-342.602231c-15.226766 0-30.453532 11.420074-30.453531 30.453531v121.814127h-26.64684c-38.066914 0-64.713755 30.453532-64.713755 64.713754v137.040892c0 38.066914 30.453532 64.713755 64.713755 64.713755h137.040892c38.066914 0 64.713755-30.453532 64.713754-64.713755v-137.040892c0-38.066914-30.453532-64.713755-64.713754-64.713754H167.313606v-91.360595h315.95539v91.360595h-41.873606c-38.066914 0-64.713755 30.453532-64.713754 64.713754v137.040892c0 38.066914 30.453532 64.713755 64.713754 64.713755h137.040893c38.066914 0 64.713755-30.453532 64.713754-64.713755v-137.040892c0-38.066914-30.453532-64.713755-64.713754-64.713754h-41.873606v-91.360595H852.518067v91.360595h-45.680297c-38.066914 0-64.713755 30.453532-64.713755 64.713754v137.040892c0 38.066914 30.453532 64.713755 64.713755 64.713755h137.040892c38.066914 0 64.713755-30.453532 64.713754-64.713755v-137.040892c3.806691-38.066914-22.840149-68.520446-60.907063-68.520446z m7.613383 205.561338c0 3.806691-3.806691 7.613383-7.613383 7.613383h-137.040892c-3.806691 0-7.613383-3.806691-7.613383-7.613383v-137.040892c0-3.806691 3.806691-7.613383 7.613383-7.613383h137.040892c3.806691 0 7.613383 3.806691 7.613383 7.613383v137.040892z" p-id="21091">
|
|
462
|
+
</path>
|
|
463
|
+
</svg>
|
|
449
464
|
</span>
|
|
450
465
|
</template>
|
|
451
466
|
|