push
8
nervui-service-manage/.env
Normal file
@@ -0,0 +1,8 @@
|
||||
# port
|
||||
VITE_PORT = 3300
|
||||
|
||||
# spa-title
|
||||
VITE_GLOB_APP_TITLE = nervui-service-manage
|
||||
|
||||
# spa shortname
|
||||
VITE_GLOB_APP_SHORT_NAME = service-manage
|
||||
23
nervui-service-manage/.env.development
Normal file
@@ -0,0 +1,23 @@
|
||||
# Whether to open mock
|
||||
VITE_USE_MOCK = true
|
||||
|
||||
# public path
|
||||
VITE_PUBLIC_PATH = /nervui-service-manage/
|
||||
|
||||
# Cross-domain proxy, you can configure multiple
|
||||
# Please note that no line breaks
|
||||
VITE_PROXY = {"/api":{ "target":"http://100.73.70.210","changeOrigin": true}}
|
||||
|
||||
# VITE_PROXY=[["/api","https://vvbin.cn/test"]]
|
||||
|
||||
# Delete console
|
||||
VITE_DROP_CONSOLE = false
|
||||
|
||||
# Basic interface address SPA
|
||||
VITE_GLOB_API_URL=/basic-api
|
||||
|
||||
# File upload address, optional
|
||||
VITE_GLOB_UPLOAD_URL=/upload
|
||||
|
||||
# Interface prefix
|
||||
VITE_GLOB_API_URL_PREFIX=
|
||||
35
nervui-service-manage/.env.production
Normal file
@@ -0,0 +1,35 @@
|
||||
# Whether to open mock
|
||||
VITE_USE_MOCK = true
|
||||
|
||||
# public path
|
||||
VITE_PUBLIC_PATH = /nervui-service-manage/
|
||||
|
||||
# Delete console
|
||||
VITE_DROP_CONSOLE = true
|
||||
|
||||
# Whether to enable gzip or brotli compression
|
||||
# Optional: gzip | brotli | none
|
||||
# If you need multiple forms, you can use `,` to separate
|
||||
VITE_BUILD_COMPRESS = 'none'
|
||||
|
||||
# Whether to delete origin files when using compress, default false
|
||||
VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false
|
||||
|
||||
# Basic interface address SPA
|
||||
VITE_GLOB_API_URL=/basic-api
|
||||
|
||||
# File upload address, optional
|
||||
# It can be forwarded by nginx or write the actual address directly
|
||||
VITE_GLOB_UPLOAD_URL=/upload
|
||||
|
||||
# Interface prefix
|
||||
VITE_GLOB_API_URL_PREFIX=
|
||||
|
||||
# Whether to enable image compression
|
||||
VITE_USE_IMAGEMIN= true
|
||||
|
||||
# use pwa
|
||||
VITE_USE_PWA = false
|
||||
|
||||
# Is it compatible with older browsers
|
||||
VITE_LEGACY = false
|
||||
1
nervui-service-manage/.version
Normal file
@@ -0,0 +1 @@
|
||||
1.0.119
|
||||
1296
nervui-service-manage/app-theme-style.e3b0c442.css
Normal file
74
nervui-service-manage/build.sh
Normal file
@@ -0,0 +1,74 @@
|
||||
#!/bin/bash
|
||||
SOURCE="$0"
|
||||
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
SOURCE="$(readlink "$SOURCE")"
|
||||
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
||||
done
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
|
||||
if [ -z $WORKSPACE ];then
|
||||
echo "WORKSPACE not exists"
|
||||
else
|
||||
set DIR=$WORKSPACE
|
||||
fi
|
||||
|
||||
echo "current dir"
|
||||
echo "$DIR"
|
||||
|
||||
cd "$DIR"
|
||||
projectname=$(basename `pwd`)
|
||||
npm run service-manage-build
|
||||
|
||||
if [ -d "$DIR/dist" ];then
|
||||
\cp app-theme-style.e3b0c442.css ./dist/asset/app-theme-style.e3b0c442.css
|
||||
|
||||
cd "$DIR/dist"
|
||||
|
||||
# copy module.json
|
||||
cp ../module.json ./
|
||||
|
||||
# package
|
||||
VERSION=$(cat ../.version)
|
||||
lastdir=../release/
|
||||
if [ -d ${lastdir} ];then
|
||||
echo "删除旧release文件夹"
|
||||
rm -rf ${lastdir}
|
||||
else
|
||||
echo "文件夹不存在!"
|
||||
fi
|
||||
mkdir -p ${lastdir}
|
||||
|
||||
dir=../release/nerv/$projectname/$VERSION
|
||||
mkdir -p ${dir}
|
||||
tar -zcvf "${dir}/$projectname-$VERSION.tgz" ./*
|
||||
|
||||
templatedir=../release/resources/templates/nerv/$projectname/$VERSION/$projectname
|
||||
mkdir -p ${templatedir}
|
||||
cp -r ../resources/templates/* ${templatedir}
|
||||
|
||||
cd ../
|
||||
|
||||
releasefile=nerv-$projectname-$VERSION.tgz
|
||||
if [ -f ${releasefile} ];then
|
||||
echo "删除旧包!"
|
||||
rm -rf ${releasefile}
|
||||
fi
|
||||
|
||||
tar -zcvf ${releasefile} ./release/* release.yaml
|
||||
|
||||
mkdir -p ./release/nervui
|
||||
cp -r ./release/nerv/* ./release/nervui
|
||||
|
||||
if [ -f ${releasefile} ];then
|
||||
echo "编译成功!"
|
||||
mv ${releasefile} ./release
|
||||
else
|
||||
echo "编译失败!!!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
else
|
||||
echo "编译失败!!!"
|
||||
exit 1
|
||||
fi
|
||||
19
nervui-service-manage/index.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<!-- <link rel="icon" href="/favicon.ico" /> -->
|
||||
<link rel="shortcut icon" href="/asset/image/logo.png" type="image/png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>芜湖市城市大脑服务管理平台</title>
|
||||
<script type="text/javascript">
|
||||
window._AMapSecurityConfig = {
|
||||
securityJsCode: '09e43004c09d39c0e61f8fd65d5e6a5a',
|
||||
};
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="./src/main.ts"></script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
nervui-service-manage/public/asset/file/CameraImportTemplate.xls
Normal file
BIN
nervui-service-manage/public/asset/file/assetIntoList.xlsx
Normal file
BIN
nervui-service-manage/public/asset/file/assetsType.xlsx
Normal file
BIN
nervui-service-manage/public/asset/file/bedImport.xls
Normal file
BIN
nervui-service-manage/public/asset/file/defenceArea.xlsx
Normal file
BIN
nervui-service-manage/public/asset/file/elderlyBasicInfo.xls
Normal file
BIN
nervui-service-manage/public/asset/file/ownerImport.xls
Normal file
BIN
nervui-service-manage/public/asset/file/resImport.xlsx
Normal file
BIN
nervui-service-manage/public/asset/file/roomImport.xls
Normal file
BIN
nervui-service-manage/public/asset/file/staffImportModle.xls
Normal file
BIN
nervui-service-manage/public/asset/file/taskImport.xlsx
Normal file
BIN
nervui-service-manage/public/asset/file/taskImport1.xlsx
Normal file
BIN
nervui-service-manage/public/asset/file/userImport.xls
Normal file
BIN
nervui-service-manage/public/asset/image/Star.png
Normal file
|
After Width: | Height: | Size: 486 B |
BIN
nervui-service-manage/public/asset/image/checkbox.png
Normal file
|
After Width: | Height: | Size: 205 B |
BIN
nervui-service-manage/public/asset/image/checkboxed.png
Normal file
|
After Width: | Height: | Size: 362 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
BIN
nervui-service-manage/public/asset/image/huangguan.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
nervui-service-manage/public/asset/image/label-module1.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
nervui-service-manage/public/asset/image/label-module2.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
nervui-service-manage/public/asset/image/label-module3.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
nervui-service-manage/public/asset/image/label-module6.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
nervui-service-manage/public/asset/image/login/adminIcon.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
nervui-service-manage/public/asset/image/login/background.png
Normal file
|
After Width: | Height: | Size: 590 KiB |
BIN
nervui-service-manage/public/asset/image/login/icon_clear.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
nervui-service-manage/public/asset/image/login/icon_name.png
Normal file
|
After Width: | Height: | Size: 915 B |
BIN
nervui-service-manage/public/asset/image/login/icon_password.png
Normal file
|
After Width: | Height: | Size: 876 B |
BIN
nervui-service-manage/public/asset/image/login/logo-white.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
nervui-service-manage/public/asset/image/login/logo.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
nervui-service-manage/public/asset/image/logo.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
nervui-service-manage/public/asset/image/mark-off.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
nervui-service-manage/public/asset/image/mark.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
nervui-service-manage/public/asset/image/noResource.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
nervui-service-manage/public/asset/image/noneStar.png
Normal file
|
After Width: | Height: | Size: 356 B |
BIN
nervui-service-manage/public/asset/image/off-line.png
Normal file
|
After Width: | Height: | Size: 904 B |
BIN
nervui-service-manage/public/asset/image/on-line.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
nervui-service-manage/public/asset/image/question.png
Normal file
|
After Width: | Height: | Size: 465 B |
BIN
nervui-service-manage/public/asset/image/radio.png
Normal file
|
After Width: | Height: | Size: 434 B |
BIN
nervui-service-manage/public/asset/image/radioed.png
Normal file
|
After Width: | Height: | Size: 596 B |
BIN
nervui-service-manage/public/asset/image/table-no-data.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
6
nervui-service-manage/public/asset/print.css
Normal file
@@ -0,0 +1,6 @@
|
||||
html,body{
|
||||
overflow: unset !important;
|
||||
}
|
||||
img{
|
||||
display: inline-block !important;
|
||||
}
|
||||
BIN
nervui-service-manage/public/favicon.ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
13
nervui-service-manage/release.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
# 上传release目录信息到nerv-file仓库
|
||||
release:
|
||||
- {src: release, dest: /upload/pkg, include: [".*(.tgz)$"]}
|
||||
- {src: release/resources/templates, dest: /upload/templates}
|
||||
register:
|
||||
name: nervui-service-manage
|
||||
version: 1.0.119
|
||||
components:
|
||||
- type: nervui-service-manage
|
||||
resources:
|
||||
- {type: template, relativePath: /nervui-service-manage/deploy.json}
|
||||
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
echo "=====================================================create====================================================="
|
||||
|
||||
#!/usr/bin/env bash
|
||||
|
||||
function create() {
|
||||
|
||||
if [ -d "$nervui_app_home" ];then
|
||||
echo "$nervui_app_home exists!"
|
||||
else
|
||||
echo "start mkdir $nervui_app_home"
|
||||
mkdir -p "$nervui_app_home"
|
||||
fi
|
||||
|
||||
pkg_file_name=${pkg_url##*/}
|
||||
pkg_file_path="$nervui_app_home$pkg_file_name"
|
||||
|
||||
|
||||
echo "start download $pkg_url"
|
||||
curl -L -o $pkg_file_path $pkg_url
|
||||
|
||||
|
||||
echo "start install $pkg_file_path"
|
||||
tar -xf $pkg_file_path -C $nervui_app_home
|
||||
|
||||
}
|
||||
|
||||
if [ "$pkg_url" == "" ]; then
|
||||
echo {\"error\":\"pkg_url is empty\"}
|
||||
exit 1
|
||||
elif [ "$nervui_app_home" == "" ]; then
|
||||
echo {\"error\":\"nervui_app_home is empty\"}
|
||||
exit 1
|
||||
else
|
||||
create
|
||||
fi
|
||||
@@ -0,0 +1 @@
|
||||
echo "=====================================================delete====================================================="
|
||||
@@ -0,0 +1 @@
|
||||
echo "=====================================================setup====================================================="
|
||||
@@ -0,0 +1 @@
|
||||
echo "=====================================================start====================================================="
|
||||
@@ -0,0 +1 @@
|
||||
echo "=====================================================stop====================================================="
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"name":"/nervui/nervui-service-manage",
|
||||
"operations": [
|
||||
{
|
||||
"name": "Create",
|
||||
"type": "shell",
|
||||
"implementor": "create.sh"
|
||||
},
|
||||
{
|
||||
"name": "Delete",
|
||||
"type": "shell",
|
||||
"implementor": "delete.sh"
|
||||
},
|
||||
{
|
||||
"name": "Setup",
|
||||
"type": "shell",
|
||||
"implementor": "setup.sh"
|
||||
},
|
||||
{
|
||||
"name": "Start",
|
||||
"type": "shell",
|
||||
"implementor": "start.sh"
|
||||
},
|
||||
{
|
||||
"name": "Stop",
|
||||
"type": "shell",
|
||||
"implementor": "stop.sh"
|
||||
}
|
||||
]
|
||||
}
|
||||
64
nervui-service-manage/resources/templates/deploy.json
Normal file
@@ -0,0 +1,64 @@
|
||||
{
|
||||
"name": "/nervui/nervui-service-manage",
|
||||
"version": 1,
|
||||
"inputs": [
|
||||
{
|
||||
"name": "server_ip",
|
||||
"type": "string",
|
||||
"required":true,
|
||||
"description":"应用安装IP地址",
|
||||
"inputType":"ipSelectType"
|
||||
},
|
||||
{
|
||||
"name": "version",
|
||||
"type": "string",
|
||||
"required":true,
|
||||
"description":"软件版本",
|
||||
"inputType":"versionSelectType"
|
||||
},
|
||||
{
|
||||
"name": "install_dir",
|
||||
"type": "string",
|
||||
"required": true,
|
||||
"defaultValue": "/data",
|
||||
"inputType": "textInputType",
|
||||
"description": "安装目录"
|
||||
}
|
||||
],
|
||||
"nodes": [
|
||||
{
|
||||
"name": "nervui-service-manage",
|
||||
"type": "/nerv/nerv-orchestrator/cluster/Nervui",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "file_repository",
|
||||
"value": "${nerv_file_repository}"
|
||||
},
|
||||
{
|
||||
"name": "install_dir",
|
||||
"value": "${install_dir}"
|
||||
},
|
||||
{
|
||||
"name": "pkg_url",
|
||||
"value": "/api/pkg/nerv/nervui-service-manage/${version}/nervui-service-manage-${version}.tgz"
|
||||
}
|
||||
],
|
||||
"dependencies": [
|
||||
{
|
||||
"type": "contained",
|
||||
"target": "host"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "host",
|
||||
"type": "/nerv/nerv-orchestrator/compute/Host",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "address",
|
||||
"value": "${server_ip}"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
21
nervui-service-manage/src/App.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<!-- @format -->
|
||||
|
||||
<template>
|
||||
<a-config-provider :locale="locale">
|
||||
<router-view />
|
||||
</a-config-provider>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import zhCN from 'ant-design-vue/es/locale/zh_CN';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'App',
|
||||
setup() {
|
||||
return {
|
||||
locale: zhCN,
|
||||
};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
50
nervui-service-manage/src/api/index.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
/***
|
||||
*配置接口 格式 module:Array<resource>
|
||||
*/
|
||||
export const apiModule = {
|
||||
pension: [
|
||||
'User',
|
||||
'CurrentUser',
|
||||
'Gaffer',
|
||||
// 'Organizational',
|
||||
// 'Device',
|
||||
// 'Region',
|
||||
// 'Owner',
|
||||
// 'AllList',
|
||||
// 'VisitorRecord',
|
||||
// 'Room',
|
||||
// 'Device',
|
||||
// 'CommunityVisitor',
|
||||
// 'AccessControlGroup',
|
||||
// 'AccessControlLeft',
|
||||
// 'AccessControlRight',
|
||||
// 'AccessControlRightIdentity',
|
||||
// 'Visitor',
|
||||
// 'DeviceListByDeviceCategory',
|
||||
// 'Perimeter',
|
||||
// 'AccessControlRightVisitorIdentity',
|
||||
// 'BedChoose',
|
||||
// 'Gateway',
|
||||
// 'FileUpload',
|
||||
// 'User',
|
||||
// 'CurrentUser',
|
||||
// 'Organizational',
|
||||
// 'Device',
|
||||
// 'Region',
|
||||
// 'Owner',
|
||||
// 'AllList',
|
||||
// 'VisitorRecord',
|
||||
// 'Room',
|
||||
// 'Device',
|
||||
// 'CommunityVisitor',
|
||||
// 'AccessControlGroup',
|
||||
// 'AccessControlLeft',
|
||||
// 'AccessControlRight',
|
||||
// 'AccessControlRightIdentity',
|
||||
// 'Visitor',
|
||||
// 'DeviceListByDeviceCategory',
|
||||
// 'BedChoose',
|
||||
// 'Perimeter',
|
||||
// 'OrganizationConfig',
|
||||
],
|
||||
};
|
||||
24
nervui-service-manage/src/api/user.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
/** @format */
|
||||
|
||||
import { http } from '/nerv-lib/util/http';
|
||||
|
||||
enum Api {
|
||||
// cloud登录
|
||||
// USER_LOGIN = '/api/pension/objs/Login', //用户登录
|
||||
// USER_INFO = '/api/pension/pension/objs/CurrentUser', //获取用户信息
|
||||
|
||||
// op登录
|
||||
USER_LOGIN = '/api/op/objs/Login', //用户登录
|
||||
USER_INFO = '/api/op/objs/CurrentUser', //获取用户信息
|
||||
USER_RESOURCE = '/api/community/objs/User/Resource', //获取用户资源
|
||||
}
|
||||
export const userLogin = (data: RoomListModel) => http.post(Api.USER_LOGIN, data);
|
||||
export const userInfo = () => http.get(Api.USER_INFO);
|
||||
export const userResource = () => http.get(Api.USER_RESOURCE);
|
||||
/**
|
||||
* @description 用户登录
|
||||
* @property `[fatherRegionUuid]` 父级区域唯一标识
|
||||
*/
|
||||
interface RoomListModel {
|
||||
data: string;
|
||||
}
|
||||
121
nervui-service-manage/src/config/app.config.ts
Normal file
@@ -0,0 +1,121 @@
|
||||
/** @format */
|
||||
|
||||
import { dateUtil } from '/nerv-lib/util/date-util';
|
||||
|
||||
export const appConfig = {
|
||||
projectType: 'web',
|
||||
enablePermissions: true,
|
||||
siderPosition: 'left',
|
||||
useHistoryTag: true,
|
||||
|
||||
themeColor: '#1677FF',
|
||||
customLogin: () => import('/@/view/login/login.vue'),
|
||||
userResourceApi: '/api/op/objs/User/Resource',
|
||||
userLoginApi: '/api/op/objs/Login', //用户登录
|
||||
userInfoApi: '/api/op/objs/CurrentUser', //获取用户信息
|
||||
updatePassWordInfo: {
|
||||
title: '修改密码',
|
||||
subtitle: '通过原密码修改',
|
||||
api: '/api/op/objs/User/changePassword',
|
||||
},
|
||||
headerBellInfo: {
|
||||
//顶部消息显示配置
|
||||
isShow: true,
|
||||
api: '/api/op/objs/center/Message/CountUnRead',
|
||||
toRouterName: 'MyMessageIndex',
|
||||
},
|
||||
dropOut: (Cookies: any, router: any, useTags: any, authorizationStore: any, http: any) => {
|
||||
//退出登录配置
|
||||
try {
|
||||
http.post('/api/op/objs/logout').then((res: any) => {
|
||||
if (res.success) {
|
||||
Cookies.remove('nervsid');
|
||||
sessionStorage.clear();
|
||||
localStorage.removeItem('nervsid');
|
||||
useTags().clearTags();
|
||||
authorizationStore.clearAuthorization();
|
||||
router.push({ name: 'login' });
|
||||
}
|
||||
});
|
||||
} catch (err) {
|
||||
Cookies.remove('nervsid');
|
||||
sessionStorage.clear();
|
||||
localStorage.removeItem('nervsid');
|
||||
useTags().clearTags();
|
||||
authorizationStore.clearAuthorization();
|
||||
// window.location.reload();
|
||||
router.push({ name: 'login' });
|
||||
}
|
||||
},
|
||||
resourceInfo: {
|
||||
application: {
|
||||
version: '1.0.73',
|
||||
label: '服务管理平台',
|
||||
dataScope: {
|
||||
scopeMode: 2,
|
||||
scopeType: 'dept',
|
||||
dataTips: '',
|
||||
dataConfig: {
|
||||
dept: {
|
||||
scopeType: 'dept',
|
||||
scopeMap: {
|
||||
'1': {
|
||||
scopeKey: '1',
|
||||
title: '全部',
|
||||
score: 0,
|
||||
keyType: 'int',
|
||||
},
|
||||
'2': {
|
||||
scopeKey: '2',
|
||||
title: '自己',
|
||||
score: 4,
|
||||
keyType: 'int',
|
||||
},
|
||||
'3': {
|
||||
scopeKey: '3',
|
||||
title: '本部门',
|
||||
score: 2,
|
||||
keyType: 'int',
|
||||
},
|
||||
'4': {
|
||||
scopeKey: '4',
|
||||
title: '本部门及其下属部门',
|
||||
score: 1,
|
||||
keyType: 'int',
|
||||
},
|
||||
'5': {
|
||||
scopeKey: '5',
|
||||
title: '自选部门',
|
||||
score: 3,
|
||||
type: 1,
|
||||
tips: '选择部门:互斥,父亲本部门及其下属部门,那这里只能选择这几个部门,如果父亲是本部门,只能',
|
||||
keyType: 'int',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
token: `${dateUtil().format('YYYYMMDD')}brain12121212`,
|
||||
api: '/qa/Operation/Resources/Op/init',
|
||||
dealReosurceList: (RouteMouleList: any) => {
|
||||
if (Object.prototype.toString.call(RouteMouleList) === '[object Array]') {
|
||||
RouteMouleList.forEach((item: any) => {
|
||||
if (item.code === 'directory' && item.menus?.length) {
|
||||
item.menus.forEach((val) => {
|
||||
val.codeDataScope = {
|
||||
status: 1,
|
||||
scopeType: 'dept',
|
||||
dataTips: '',
|
||||
scopeList: [1, 3],
|
||||
};
|
||||
});
|
||||
}
|
||||
});
|
||||
return RouteMouleList;
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
22
nervui-service-manage/src/enum/http-enum.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
export enum ResultEnum {
|
||||
SUCCESS = 0,
|
||||
ERROR = 1,
|
||||
TIMEOUT = 401,
|
||||
TOKEN_INVALID = 403,
|
||||
}
|
||||
|
||||
export enum RequestEnum {
|
||||
GET = 'GET',
|
||||
POST = 'POST',
|
||||
PUT = 'PUT',
|
||||
DELETE = 'DELETE',
|
||||
}
|
||||
|
||||
export enum ContentTypeEnum {
|
||||
// json
|
||||
JSON = 'application/json;charset=UTF-8',
|
||||
// form-data qs
|
||||
FORM_URLENCODED = 'application/x-www-form-urlencoded;charset=UTF-8',
|
||||
// form-data upload
|
||||
FORM_DATA = 'multipart/form-data;charset=UTF-8',
|
||||
}
|
||||
3
nervui-service-manage/src/icon/AssessmentSettings.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M169 341H79V83H111.4C111.4 89.3652 113.929 95.4697 118.429 99.9706C122.93 104.471 129.035 107 135.4 107H238.6C244.965 107 251.07 104.471 255.571 99.9706C260.071 95.4697 262.6 89.3652 262.6 83H292V167C292 167.796 292.316 168.559 292.879 169.121C293.441 169.684 294.204 170 295 170H316C316.796 170 317.559 169.684 318.121 169.121C318.684 168.559 319 167.796 319 167V83C319 76.6348 316.471 70.5303 311.971 66.0294C307.47 61.5286 301.365 59 295 59H262.6C262.6 52.6348 260.071 46.5303 255.571 42.0294C251.07 37.5286 244.965 35 238.6 35H135.4C129.035 35 122.93 37.5286 118.429 42.0294C113.929 46.5303 111.4 52.6348 111.4 59H79C72.6348 59 66.5303 61.5286 62.0294 66.0294C57.5286 70.5303 55 76.6348 55 83V341C55 347.365 57.5286 353.47 62.0294 357.971C66.5303 362.471 72.6348 365 79 365H169C169.796 365 170.559 364.684 171.121 364.121C171.684 363.559 172 362.796 172 362V344C172 343.204 171.684 342.441 171.121 341.879C170.559 341.316 169.796 341 169 341ZM135.4 59H238.6V83H135.4V59ZM262 174.44V156.44C262 155.644 261.684 154.881 261.121 154.319C260.559 153.756 259.796 153.44 259 153.44H115C114.204 153.44 113.441 153.756 112.879 154.319C112.316 154.881 112 155.644 112 156.44V174.44C112 175.236 112.316 175.999 112.879 176.561C113.441 177.124 114.204 177.44 115 177.44H259C259.796 177.44 260.559 177.124 261.121 176.561C261.684 175.999 262 175.236 262 174.44ZM261.04 257.36C255.789 257.36 250.752 259.446 247.039 263.159C243.326 266.872 241.24 271.909 241.24 277.16C241.24 282.411 243.326 287.447 247.039 291.161C250.752 294.874 255.789 296.96 261.04 296.96C266.291 296.96 271.328 294.874 275.041 291.161C278.754 287.447 280.84 282.411 280.84 277.16C280.84 271.909 278.754 266.872 275.041 263.159C271.328 259.446 266.291 257.36 261.04 257.36V257.36ZM261.04 284.72C259.574 284.72 258.14 284.286 256.919 283.474C255.699 282.662 254.745 281.507 254.179 280.154C253.612 278.802 253.458 277.312 253.735 275.872C254.013 274.432 254.71 273.107 255.738 272.061C256.767 271.016 258.081 270.298 259.516 269.998C260.952 269.697 262.444 269.828 263.805 270.372C265.166 270.917 266.336 271.852 267.168 273.06C268 274.267 268.456 275.694 268.48 277.16C268.496 278.147 268.315 279.127 267.948 280.044C267.582 280.961 267.036 281.795 266.344 282.499C265.651 283.202 264.826 283.761 263.915 284.142C263.005 284.524 262.027 284.72 261.04 284.72V284.72ZM325.6 275L344.32 257.24L320.32 215.48L295.48 222.44L291.88 220.4L285.64 195.08H237.64L231.64 220.28L230.32 220.88H229.36L228.04 221.84L202.6 215L178.6 256.76L197.44 275V279.44L178.6 297.08L202.6 338.96L227.44 331.64L231.28 333.8L237.28 359H285.28L291.28 333.8L295 331.64L319.84 338.96L343.84 297.2L325 279.32L325.6 275ZM301.6 276.92C301.602 280.528 301.117 284.121 300.16 287.6V288.68L313.84 301.64L308.68 310.64L296.68 307.04L289.48 306.32L288.64 306.92C284.356 310.984 279.177 313.985 273.52 315.68L271.12 316.76L266.8 335H256.24L253 323L250.36 316.4C244.128 314.441 238.451 311.027 233.8 306.44L231.64 304.88L214 311L208.72 302L217.96 293.36L222.28 287.72C221.322 284.323 220.838 280.81 220.84 277.28C220.879 273.508 221.403 269.758 222.4 266.12L208.72 253.28L214 244.16L226 247.88L232.24 248.96C237.599 243.46 244.433 239.627 251.92 237.92L256.12 219.8H266.56L270.88 237.92C278.566 239.85 285.501 244.028 290.8 249.92L308.8 244.52L313.96 253.64L304.84 262.28L300.52 267.68C301.421 270.762 301.905 273.95 301.96 277.16L301.6 276.92ZM115 207.44C114.204 207.44 113.441 207.756 112.879 208.319C112.316 208.881 112 209.644 112 210.44V228.44C111.999 229.247 112.312 230.023 112.871 230.605C113.43 231.187 114.193 231.529 115 231.56H184C184.807 231.529 185.57 231.187 186.129 230.605C186.688 230.023 187.001 229.247 187 228.44V210.44C186.97 209.654 186.645 208.908 186.088 208.352C185.532 207.795 184.786 207.47 184 207.44H115Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
3
nervui-service-manage/src/icon/AssessmentStatistics.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M73.8941 359.003C54.9533 359.003 40 344.05 40 325.109V73.8941C40 54.9533 54.9533 40 73.8941 40H326.106C344.05 40 359.003 54.9533 359.003 73.8941V326.106C359.003 345.047 344.05 360 325.109 360L73.8941 359.003ZM73.8941 60.9346C66.9159 60.9346 61.9315 66.9159 61.9315 72.8972V325.109C61.9315 332.087 67.9128 337.072 73.8941 337.072H326.106C333.084 337.072 338.069 331.09 338.069 325.109V73.8941C338.069 66.9159 332.087 61.9315 326.106 61.9315L73.8941 60.9346V60.9346ZM95.8255 278.255C89.8442 278.255 84.8598 273.271 84.8598 267.29C84.8598 261.308 89.8442 256.324 95.8255 256.324H302.181C308.162 256.324 313.146 261.308 313.146 267.29C313.146 273.271 308.162 278.255 302.181 278.255H95.8255V278.255ZM148.66 191.526L103.801 241.371C101.807 243.364 98.8162 245.358 95.8255 245.358C92.8349 245.358 90.8411 244.361 88.8474 242.368C86.8536 240.374 85.8567 238.38 84.8598 235.389C84.8598 232.399 85.8567 230.405 87.8505 227.414L146.667 162.617L208.474 219.439L278.255 141.682H239.377C233.396 141.682 228.411 136.698 228.411 130.717C228.411 124.735 233.396 119.751 239.377 119.751H305.171C306.168 119.751 306.168 120.748 307.165 120.748C307.165 120.748 308.162 120.748 308.162 121.745L309.159 122.741C309.159 122.741 310.156 123.738 310.156 124.735V199.502C310.156 205.483 305.171 210.467 299.19 210.467C293.209 210.467 288.224 205.483 288.224 199.502V157.632L206.48 248.349L148.66 191.526V191.526Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
3
nervui-service-manage/src/icon/AssetManagement.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M326.699 109.165V109.237C334.392 113.716 339.485 121.915 340.279 131.089V269.82C339.557 278.994 334.428 287.157 326.699 291.6L213.829 352.279C205.269 356.107 195.444 355.89 187.137 351.665L74.0862 290.624C66.2485 286.362 61.0113 278.38 60.1084 269.278L60 130.908C60.6501 121.807 65.7067 113.644 73.3638 109.237L186.668 47.9442C195.228 43.9712 205.088 44.0073 213.648 48.1248L326.699 109.165ZM309.94 277.947C316.694 273.865 320.992 266.822 321.57 258.985H321.606V140.552C321.028 132.642 316.658 125.563 309.832 121.554L211.842 69.0735C204.438 65.57 195.914 65.5339 188.51 68.929L90.3395 121.337C83.5854 125.31 79.2512 132.353 78.7094 140.155L78.8177 258.587C79.5762 266.497 84.1633 273.432 90.8813 277.08L188.835 331.836C196.094 335.52 204.546 335.664 211.987 332.377L309.94 277.947ZM251.899 210.188C249.84 212.21 247.059 213.15 244.242 212.644L210.507 212.716V229.331H244.097C246.951 228.861 249.804 229.836 251.827 231.895C253.922 233.99 254.897 236.988 254.5 239.877C254.825 242.803 253.813 245.692 251.755 247.715C249.696 249.774 246.915 250.713 244.097 250.207H210.507V276.863C210.796 280.294 210.11 283.833 208.412 286.867C206.137 289.143 203.031 290.19 199.816 289.721C196.674 290.19 193.459 289.107 191.112 286.867C189.414 283.906 188.583 280.366 188.908 276.863V250.171H155.824C152.97 250.677 150.153 249.738 148.094 247.643C146 245.548 145.024 242.55 145.422 239.661C145.097 236.735 146 233.773 147.914 231.57C150.045 229.945 152.682 229.186 155.39 229.367H188.872V212.716H155.824C152.97 213.186 150.153 212.247 148.094 210.152C146 208.057 145.024 205.059 145.422 202.17C145.097 199.244 146 196.246 147.914 194.115C150.045 192.418 152.682 191.695 155.39 191.876H178.073L155.932 144.055C154.487 141.599 153.657 138.745 153.584 135.856C153.548 133.328 154.849 130.944 156.98 129.535C159.255 127.838 162.036 126.862 164.89 126.935C168.646 127.368 171.788 129.824 173.125 133.255L199.961 189.42L226.761 133.183C228.097 129.788 231.059 127.224 234.707 126.574C237.56 126.61 240.341 127.476 242.653 129.174C245.073 130.366 246.662 132.714 246.842 135.386C246.662 138.42 245.687 141.454 243.989 143.983L221.848 191.804H244.242C247.095 191.334 249.949 192.273 251.971 194.368C254.066 196.463 255.041 199.461 254.644 202.35C254.969 205.276 253.958 208.165 251.899 210.188Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
3
nervui-service-manage/src/icon/AuditManagement.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M244.709 206.295V217.106L318.392 217.106L318.398 217.106C323.393 217.12 328.18 219.111 331.712 222.643C335.245 226.176 337.236 230.965 337.249 235.962V298.7C337.245 301.613 336.086 304.405 334.027 306.464C331.967 308.523 329.175 309.682 326.263 309.686H74.0003C71.0878 309.686 68.2946 308.529 66.2351 306.47C64.1756 304.41 63.0186 301.617 63.0186 298.704V235.958C63.0323 230.961 65.0227 226.171 68.5554 222.635C72.0879 219.1 76.8755 217.105 81.8732 217.087L81.8775 217.087L156.938 217.087V205.474L156.31 204.663C155.983 204.241 154.781 202.929 153.494 201.534C152.634 200.602 151.655 199.546 150.701 198.517C150.147 197.919 149.601 197.331 149.093 196.782L149.027 196.71L148.957 196.644C139.13 187.312 131.334 176.052 126.058 163.57C120.781 151.087 118.138 137.649 118.293 124.098L118.293 124.081V124.064C118.293 94.0124 129.673 73.9662 145.69 61.3599C161.817 48.6662 182.928 43.3043 202.576 43.3043H202.71L202.844 43.2923C222.109 41.5644 241.274 47.5469 256.135 59.9278L256.145 59.9365L256.156 59.945C263.74 66.149 270.02 73.7943 274.633 82.4391C279.246 91.0839 282.101 100.557 283.032 110.311L283.033 110.318C283.517 115.269 283.517 120.256 283.033 125.207L283.016 125.376L283.019 125.546C283.215 138.2 280.746 150.754 275.772 162.392C270.799 174.03 263.432 184.491 254.151 193.096L254.071 193.17L253.996 193.25C252.219 195.158 250.032 197.51 248.289 199.632C247.421 200.689 246.606 201.757 245.992 202.731C245.686 203.217 245.392 203.739 245.167 204.267C244.96 204.752 244.709 205.473 244.709 206.295ZM160.735 239.051H84.982V287.741H315.192V239.069H239.767C235.138 239.069 231.983 238.117 229.772 236.668C227.582 235.233 226.038 233.129 224.95 230.299C222.69 224.419 222.634 216.178 222.633 206.441C223.167 201.064 224.748 195.843 227.288 191.072C229.851 186.261 233.339 182.003 237.551 178.543L237.603 178.501L237.652 178.456C245.271 171.61 251.308 163.188 255.343 153.773C259.351 144.419 261.289 134.31 261.022 124.138C261.414 120.241 261.44 116.315 261.1 112.412L261.098 112.393L261.096 112.374C259.702 98.492 252.864 85.7286 242.079 76.8779C231.33 68.0562 217.533 63.8382 203.692 65.138C191.747 65.2178 175.958 67.116 163.059 75.4538C149.886 83.9693 140.169 98.9151 140.163 124.042C140.007 134.94 142.174 145.747 146.52 155.743C150.869 165.745 157.3 174.706 165.384 182.028L165.443 182.081L165.504 182.131C172.974 188.213 177.782 196.964 178.911 206.528C179.242 213.012 178.808 219.513 177.617 225.895C176.798 229.706 174.669 233.11 171.6 235.515C168.521 237.926 164.692 239.178 160.784 239.052L160.735 239.051ZM73.9817 335.037H326.286C329.198 335.037 331.991 336.194 334.051 338.253C336.11 340.313 337.267 343.106 337.267 346.018C337.267 348.931 336.11 351.724 334.051 353.784C331.991 355.843 329.198 357 326.286 357H73.9817C71.0691 357 68.2759 355.843 66.2165 353.784C64.157 351.724 63 348.931 63 346.018C63 343.106 64.157 340.313 66.2165 338.253C68.2759 336.194 71.0691 335.037 73.9817 335.037Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
3
nervui-service-manage/src/icon/CreditManagement.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M308.369 238.3L343.917 327.952C344.588 329.488 344.878 331.164 344.761 332.836C344.643 334.523 344.116 336.155 343.225 337.59C342.335 339.026 341.107 340.223 339.649 341.075C338.191 341.927 336.547 342.409 334.86 342.478L334.777 340.48L334.788 342.48C333.216 342.488 331.667 342.11 330.276 341.379L330.261 341.371L292.451 322.191L269.237 357.546L269.226 357.563C268.371 358.915 267.191 360.03 265.792 360.806C264.388 361.584 262.81 361.995 261.205 362L261.185 362L261.166 362C258.596 361.957 256.128 360.989 254.212 359.274C252.302 357.564 251.068 355.226 250.73 352.684L250.728 352.661L241.341 291.167C214.436 300.282 185.286 300.282 158.381 291.167L148.992 352.674C148.657 355.218 147.423 357.558 145.513 359.27C143.597 360.987 141.128 361.957 138.557 362L138.538 362L138.519 362C136.913 361.997 135.334 361.586 133.929 360.807C132.53 360.031 131.35 358.915 130.495 357.562L130.484 357.545L107.28 322.191L69.4976 341.371L69.4835 341.379C68.0955 342.108 66.5503 342.486 64.9826 342.48L64.939 342.48L64.8954 342.478C63.2141 342.398 61.5777 341.91 60.1268 341.055C58.6759 340.201 57.4542 339.007 56.5662 337.576C55.6782 336.144 55.1504 334.518 55.0277 332.838C54.9058 331.169 55.1873 329.495 55.8483 327.958L91.372 238.3C52.8284 178.021 70.2067 97.9321 130.463 58.965C151.164 45.5866 175.204 38.3211 199.831 38.0003L199.857 38L199.883 38.0003C272.034 38.9473 329.771 98.034 328.827 169.983C328.505 194.231 321.414 217.896 308.369 238.3ZM105.516 256.61L83.5981 311.849L99.9944 303.581L100.004 303.577L114.118 296.366L122.888 309.701L122.889 309.704L133.163 325.283L139.623 282.942C126.873 276.12 115.347 267.22 105.516 256.61ZM308.962 167.991L308.962 168.004C309.052 213.041 281.609 253.602 239.682 270.379C214.101 280.539 185.621 280.539 160.04 270.379C118.614 253.791 91.2695 213.983 90.7323 169.475C89.9981 108.658 138.852 58.7376 199.862 58.0003C259.76 58.4008 308.154 106.533 308.954 166C308.962 166.662 308.965 167.326 308.962 167.991ZM260.109 282.943C272.865 276.125 284.397 267.227 294.234 256.618L316.094 311.852L299.691 303.581L299.682 303.577L285.559 296.367L276.788 309.694L276.787 309.696L266.565 325.267L260.109 282.943ZM199.842 235.17L201.856 235.184V235.121C240.558 233.817 271.436 202.073 271.304 163.223C271.337 161.876 271.098 160.537 270.599 159.286C270.097 158.024 269.342 156.878 268.381 155.92C267.419 154.961 266.272 154.21 265.009 153.712C263.749 153.215 262.4 152.982 261.045 153.027C259.743 153.065 258.462 153.36 257.273 153.894C256.083 154.429 255.011 155.194 254.117 156.145C253.223 157.096 252.525 158.213 252.063 159.434C251.604 160.645 251.386 161.934 251.421 163.229C251.406 191.609 228.334 214.613 199.856 214.613C171.369 214.613 148.291 191.594 148.291 163.2C148.291 157.719 143.833 153.292 138.359 153.292C132.886 153.292 128.428 157.716 128.426 163.196C128.278 202.721 160.226 234.898 199.842 235.17ZM199.856 233.166L199.856 233.161V233.171L199.856 233.166Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
3
nervui-service-manage/src/icon/Execution.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M171.552 336.862H70.219C63.4141 336.862 57.7586 331.059 57.7586 323.73V76.8903C57.7586 69.5621 63.4141 63.7586 70.219 63.7586H272.884C279.689 63.7586 285.345 69.5621 285.345 76.8903V141.775C285.345 144.793 286.544 147.688 288.678 149.822C290.812 151.956 293.706 153.154 296.724 153.154C299.742 153.154 302.637 151.956 304.771 149.822C306.905 147.688 308.103 144.793 308.103 141.775V76.8903C308.103 57.1359 292.4 41 272.884 41H70.219C50.7034 41 35 57.1359 35 76.8903V323.73C35 343.485 50.7034 359.621 70.219 359.621H171.552C174.57 359.621 177.464 358.422 179.598 356.288C181.732 354.154 182.931 351.259 182.931 348.241C182.931 345.223 181.732 342.329 179.598 340.195C177.464 338.061 174.57 336.862 171.552 336.862ZM273.966 177.552C249.822 177.552 226.667 187.143 209.594 204.215C192.522 221.287 182.931 244.442 182.931 268.586C182.931 292.73 192.522 315.885 209.594 332.957C226.667 350.03 249.822 359.621 273.966 359.621C298.109 359.621 321.264 350.03 338.337 332.957C355.409 315.885 365 292.73 365 268.586C365 244.442 355.409 221.287 338.337 204.215C321.264 187.143 298.109 177.552 273.966 177.552ZM273.966 336.862C264.999 336.862 256.121 335.096 247.837 331.665C239.554 328.234 232.027 323.205 225.687 316.865C219.347 310.525 214.318 302.998 210.887 294.714C207.456 286.431 205.69 277.552 205.69 268.586C205.69 259.62 207.456 250.742 210.887 242.458C214.318 234.175 219.347 226.648 225.687 220.308C232.027 213.968 239.554 208.939 247.837 205.508C256.121 202.076 264.999 200.31 273.966 200.31C292.073 200.31 309.44 207.504 322.244 220.308C335.048 233.112 342.241 250.478 342.241 268.586C342.241 286.694 335.048 304.06 322.244 316.865C309.44 329.669 292.073 336.862 273.966 336.862V336.862ZM307.91 262.897H279.655V240.138C279.655 237.12 278.456 234.226 276.322 232.092C274.188 229.958 271.294 228.759 268.276 228.759C265.258 228.759 262.364 229.958 260.229 232.092C258.095 234.226 256.897 237.12 256.897 240.138V274.276C256.897 277.294 258.095 280.188 260.229 282.322C262.364 284.456 265.258 285.655 268.276 285.655H307.91C310.928 285.655 313.822 284.456 315.956 282.322C318.09 280.188 319.289 277.294 319.289 274.276C319.289 271.258 318.09 268.364 315.956 266.229C313.822 264.095 310.928 262.897 307.91 262.897ZM239.828 132.034C239.828 129.017 238.629 126.122 236.495 123.988C234.361 121.854 231.466 120.655 228.448 120.655H114.655C111.637 120.655 108.743 121.854 106.609 123.988C104.475 126.122 103.276 129.017 103.276 132.034C103.276 135.052 104.475 137.947 106.609 140.081C108.743 142.215 111.637 143.414 114.655 143.414H228.448C231.466 143.414 234.361 142.215 236.495 140.081C238.629 137.947 239.828 135.052 239.828 132.034ZM114.655 211.69C111.637 211.69 108.743 212.889 106.609 215.023C104.475 217.157 103.276 220.051 103.276 223.069C103.276 226.087 104.475 228.981 106.609 231.115C108.743 233.249 111.637 234.448 114.655 234.448H143.206C146.224 234.448 149.118 233.249 151.252 231.115C153.386 228.981 154.585 226.087 154.585 223.069C154.585 220.051 153.386 217.157 151.252 215.023C149.118 212.889 146.224 211.69 143.206 211.69H114.655Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
3
nervui-service-manage/src/icon/IndexAllocation.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M192.715 258.178C198.741 258.178 203.625 253.295 203.625 247.268V234.209C207.231 232.743 210.506 230.569 213.258 227.816C216.01 225.062 218.183 221.786 219.648 218.18H279.516C282.399 218.164 285.159 217.007 287.192 214.963C289.225 212.919 290.367 210.153 290.367 207.27C290.367 204.386 289.225 201.62 287.192 199.576C285.159 197.532 282.399 196.375 279.516 196.359H219.648C218.184 192.753 216.011 189.477 213.259 186.725C210.507 183.973 207.231 181.801 203.625 180.337V101.825C203.68 100.358 203.439 98.8945 202.915 97.5227C202.392 96.151 201.597 94.8989 200.579 93.8414C199.56 92.7839 198.339 91.9426 196.988 91.3681C195.636 90.7935 194.183 90.4973 192.715 90.4973C191.247 90.4973 189.794 90.7935 188.442 91.3681C187.091 91.9426 185.87 92.7839 184.851 93.8414C183.833 94.8989 183.038 96.151 182.515 97.5227C181.991 98.8945 181.75 100.358 181.805 101.825V180.337C178.199 181.802 174.924 183.975 172.172 186.727C169.42 189.478 167.247 192.754 165.782 196.359H152.198C149.315 196.375 146.555 197.532 144.522 199.576C142.489 201.62 141.347 204.386 141.347 207.27C141.347 210.153 142.489 212.919 144.522 214.963C146.555 217.007 149.315 218.164 152.198 218.18H165.782C167.247 221.786 169.42 225.063 172.172 227.816C174.924 230.569 178.199 232.743 181.805 234.21V247.268C181.805 253.287 186.689 258.178 192.715 258.178ZM359.583 188.557C353.967 108.24 287.303 43.5103 206.856 40.143C109.83 36.0973 30.9364 118.48 40.8413 216.641C48.3077 290.718 107.765 350.808 181.767 358.991C238.42 365.253 289.916 341.886 322.829 302.459C327.172 297.263 325.679 289.37 319.82 285.987L319.751 285.949C317.557 284.66 314.978 284.187 312.469 284.614C309.961 285.04 307.683 286.339 306.038 288.28C277.467 322.58 232.722 342.953 183.542 337.224C120.054 329.826 69.1527 278.239 62.5703 214.667C53.2981 125.131 130.127 50.3979 220.219 63.2658C277.36 71.418 324.025 115.653 335.377 172.238C340.764 199.079 338.082 224.778 329.587 247.695C327.759 252.639 329.831 258.171 334.395 260.799C335.778 261.601 337.319 262.09 338.911 262.234C340.502 262.377 342.106 262.172 343.611 261.631C345.115 261.091 346.482 260.228 347.619 259.104C348.755 257.98 349.632 256.621 350.189 255.123C358.004 233.852 361.206 211.161 359.583 188.557Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
3
nervui-service-manage/src/icon/InspectionPlan.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M360 62.5295C360 43.581 349.303 40 331.307 40H69.6686C50.6667 40 40 43.581 40 62.5295V333.333C40 352.274 45.8286 360 64.8381 360H337.806C356.808 360 360 352.274 360 333.333V62.5295ZM66.7429 72.8914C66.7429 66.9181 67.0019 65.1962 73.9962 65.1962L327.01 66.2019C333.013 66.2019 334.232 66.9257 334.232 73.9048V325.105C334.232 331.093 334.011 333.333 327.01 333.333H73.9962C68 333.333 66.7429 332.084 66.7429 325.112V72.8914ZM93.3336 266.324C93.3336 271.703 97.9888 276.19 103.581 276.19H296.419C302.012 276.19 306.667 271.695 306.667 266.324C306.667 260.937 302.012 256.449 296.419 256.449H103.581C97.9888 256.449 93.3336 260.937 93.3336 266.324ZM110.987 243.444L152.8 197.539L206.697 249.867L282.888 166.316V204.884C282.888 210.392 287.535 214.979 293.113 214.979C298.682 214.979 303.33 210.392 303.33 204.884V136.023C303.33 135.101 302.408 134.179 302.408 134.179L301.478 133.265C301.478 132.343 300.549 132.343 300.549 132.343C300.084 132.343 299.852 132.114 299.619 131.886C299.387 131.657 299.155 131.429 298.69 131.429H237.356C231.787 131.429 227.139 136.023 227.139 141.531C227.139 147.04 231.787 151.627 237.356 151.627H273.6L208.556 223.246L150.941 170.91L96.1222 230.59C94.2631 233.341 93.3336 235.177 93.3336 237.935C94.2631 240.686 95.1926 242.529 97.0517 244.358C98.9107 246.202 100.77 247.116 103.558 247.116C106.339 247.116 109.128 245.272 110.987 243.444Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
3
nervui-service-manage/src/icon/InspectionResults.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M348.824 206.372C346.702 219.124 342.444 233.997 336.065 246.749C331.815 253.128 327.564 255.25 321.185 253.128C314.806 248.877 312.677 244.627 314.806 238.248C321.185 225.496 325.436 212.752 327.564 200C336.065 165.996 333.943 134.12 331.815 114.997L199.988 53.3744L68.1674 114.997C66.0388 134.12 63.9101 163.874 72.4179 200C87.2981 270.123 131.952 319.001 199.988 348.754C221.254 340.253 238.263 329.63 255.272 316.879C259.522 312.628 265.901 314.75 270.158 319.001C274.409 323.251 272.28 329.63 268.03 333.874C248.892 348.754 227.633 359.377 204.245 370H195.737C117.065 338.125 68.1674 282.875 51.1518 204.251C44.7812 172.07 43.3479 139.107 46.9013 106.496C49.0299 102.245 51.1518 100.123 53.2804 97.9946L195.737 30H204.245L346.702 97.9946C350.952 100.123 353.081 102.245 353.081 106.496C355.203 125.619 357.331 161.752 348.824 206.372V206.372ZM204.245 270.123C187.236 270.123 168.099 261.622 155.34 248.877C127.702 221.253 127.702 178.747 155.34 151.123C182.979 123.498 225.504 123.498 253.143 151.123C276.531 174.497 278.66 212.752 259.522 240.376L304.176 285.003C308.427 289.254 308.427 295.626 304.176 299.877C302.048 301.999 299.926 301.999 295.668 301.999C291.418 301.999 289.289 301.999 287.167 299.877L244.642 257.372C231.883 265.873 219.125 270.123 204.245 270.123V270.123ZM238.263 165.996C229.755 155.373 216.997 151.123 204.245 151.123C191.487 151.123 178.728 157.502 170.22 165.996C151.09 185.127 151.09 214.873 170.22 233.997C189.358 250.999 219.125 250.999 238.263 233.997C257.4 214.873 257.4 185.127 238.263 165.996V165.996Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
3
nervui-service-manage/src/icon/OnlineService.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M217.128 186.883H95.6661C91.0855 186.883 87.3723 183.169 87.3723 178.589C87.3723 174.009 91.0855 170.296 95.6661 170.296H217.128C221.708 170.296 225.421 174.009 225.421 178.589C225.421 183.169 221.708 186.883 217.128 186.883ZM175.726 150.119H95.6661C91.0855 150.119 87.3723 146.407 87.3723 141.826C87.3723 137.246 91.0855 133.533 95.6661 133.533H175.726C180.307 133.533 184.02 137.246 184.02 141.826C184.02 146.406 180.306 150.119 175.726 150.119ZM159.931 113.93H95.6661C91.0855 113.93 87.3723 110.217 87.3723 105.637C87.3723 101.057 91.0855 97.3438 95.6661 97.3438H159.931C164.511 97.3438 168.224 101.057 168.224 105.637C168.224 110.218 164.511 113.93 159.931 113.93ZM315.902 300.006H245.16V340.008H265.358C270.958 340.008 275.473 344.472 275.473 349.997C275.473 355.536 270.958 360 265.358 360H144.08C138.48 360 133.957 355.536 133.957 349.997C133.957 344.472 138.48 340.008 144.08 340.008H164.286V300.006H83.4129C61.1007 300.006 43 282.101 43 260.009V80.0022C43 57.9052 61.1007 40 83.4129 40H315.902C338.239 40 356.339 57.9052 356.339 80.0022V260.009C356.339 282.102 338.239 300.006 315.902 300.006ZM224.93 340.008V300.006H184.517V340.008H224.93ZM336.116 80.0022C336.116 68.9419 327.086 59.9876 315.902 59.9876H83.4129C72.2769 59.9876 63.2064 68.9419 63.2064 80.0022V219.999H336.116V80.0022H336.116ZM336.116 239.994H63.2064V260.009C63.2064 271.045 72.2769 279.993 83.4129 279.993H315.902C327.086 279.993 336.116 271.045 336.116 260.009V239.994H336.116Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
3
nervui-service-manage/src/icon/PressRelease.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M90.0429 35H310.043C318.738 35.2175 327.017 38.7686 333.167 44.9188C339.317 51.0691 342.868 59.3479 343.086 68.0429V206.651C343.086 208.098 342.801 209.531 342.248 210.867C341.695 212.204 340.883 213.418 339.86 214.441C338.838 215.464 337.623 216.275 336.287 216.829C334.95 217.383 333.518 217.668 332.072 217.668C330.625 217.668 329.193 217.383 327.856 216.829C326.52 216.275 325.305 215.464 324.283 214.441C323.26 213.418 322.448 212.204 321.895 210.867C321.342 209.531 321.057 208.098 321.057 206.651V68.0429C321.14 66.5748 320.912 65.1057 320.388 63.7318C319.864 62.3579 319.055 61.1102 318.015 60.0704C316.976 59.0306 315.728 58.2222 314.354 57.698C312.98 57.1738 311.511 56.9457 310.043 57.0286H90.0429C88.5748 56.9457 87.1057 57.1738 85.7318 57.698C84.3579 58.2222 83.1102 59.0306 82.0704 60.0704C81.0306 61.1102 80.2222 62.3579 79.698 63.7318C79.1738 65.1057 78.9457 66.5748 79.0286 68.0429V331.957C78.9457 333.425 79.1738 334.894 79.698 336.268C80.2222 337.642 81.0306 338.89 82.0704 339.93C83.1102 340.969 84.3579 341.778 85.7318 342.302C87.1057 342.826 88.5748 343.054 90.0429 342.971H153.411C156.332 342.972 159.133 344.133 161.198 346.198C163.263 348.264 164.423 351.065 164.423 353.986C164.423 356.907 163.263 359.708 161.198 361.773C159.133 363.839 156.332 365 153.411 365H90.0429C81.3479 364.783 73.0691 361.231 66.9188 355.081C60.7686 348.931 57.2175 340.652 57 331.957V68.0429C57.2175 59.3479 60.7686 51.0691 66.9188 44.9188C73.0691 38.7686 81.3479 35.2175 90.0429 35ZM317.195 228.537V233.973L317.624 233.544V234.259L274.711 345.689C274.239 347.085 273.452 348.353 272.41 349.395C271.368 350.437 270.099 351.225 268.704 351.697C267.377 352.293 265.938 352.601 264.484 352.601C263.029 352.601 261.591 352.293 260.264 351.697L238.092 340.111C236.803 339.527 235.653 338.676 234.717 337.615C233.781 336.554 233.08 335.307 232.661 333.955C232.242 332.603 232.114 331.178 232.286 329.774C232.458 328.369 232.925 327.017 233.658 325.806C237.949 320.657 243.814 323.232 248.821 325.806L263.125 334.532L297.026 250.852L229.653 328.095V352.555C229.716 354.429 229.287 356.287 228.409 357.944C227.53 359.6 226.233 360.997 224.646 361.996C224.463 362.104 224.29 362.208 224.125 362.306C221.451 363.9 220.93 364.21 216.35 362.998C214.654 362.227 213.243 360.941 212.319 359.324C211.395 357.706 211.003 355.838 211.2 353.986V325.377C208.895 324.91 206.676 324.089 204.62 322.946L171.291 305.637C169.598 304.711 168.186 303.345 167.205 301.684C166.223 300.022 165.707 298.126 165.713 296.196C165.726 294.291 166.268 292.426 167.278 290.809C168.288 289.193 169.727 287.889 171.434 287.042L308.183 228.537H317.195ZM285.869 244.415L184.88 295.767L217.208 312.646L285.869 244.415ZM112.072 122.972H280.719C282.193 123.078 283.672 122.866 285.057 122.35C286.442 121.834 287.699 121.027 288.744 119.982C289.789 118.937 290.596 117.68 291.112 116.295C291.628 114.91 291.84 113.431 291.733 111.957C291.816 110.489 291.588 109.02 291.064 107.646C290.54 106.272 289.731 105.025 288.692 103.985C287.652 102.945 286.404 102.136 285.03 101.612C283.656 101.088 282.187 100.86 280.719 100.943H112.072C110.598 100.836 109.118 101.048 107.734 101.564C106.349 102.08 105.092 102.888 104.047 103.933C103.002 104.978 102.195 106.235 101.679 107.619C101.163 109.004 100.951 110.483 101.057 111.957C100.951 113.431 101.163 114.91 101.679 116.295C102.195 117.68 103.002 118.937 104.047 119.982C105.092 121.027 106.349 121.834 107.734 122.35C109.118 122.866 110.598 123.078 112.072 122.972ZM112.072 189.057H228.652C231.572 189.057 234.373 187.896 236.439 185.831C238.504 183.765 239.664 180.964 239.664 178.043C239.664 175.122 238.504 172.321 236.439 170.255C234.373 168.19 231.572 167.029 228.652 167.029H112.072C110.625 167.029 109.193 167.313 107.856 167.867C106.519 168.42 105.305 169.231 104.282 170.254C103.259 171.277 102.448 172.491 101.894 173.828C101.34 175.164 101.055 176.596 101.055 178.043C101.055 179.49 101.34 180.922 101.894 182.258C102.448 183.595 103.259 184.809 104.282 185.832C105.305 186.855 106.519 187.666 107.856 188.22C109.193 188.773 110.625 189.058 112.072 189.057ZM112.072 255H148.548C150.09 255.177 151.652 255.025 153.131 254.556C154.611 254.087 155.974 253.31 157.133 252.277C158.291 251.244 159.218 249.977 159.852 248.561C160.487 247.144 160.815 245.61 160.815 244.057C160.815 242.505 160.487 240.971 159.852 239.554C159.218 238.138 158.291 236.871 157.133 235.838C155.974 234.805 154.611 234.028 153.131 233.559C151.652 233.089 150.09 232.938 148.548 233.115H112.072C110.53 232.938 108.968 233.089 107.488 233.559C106.008 234.028 104.645 234.805 103.487 235.838C102.328 236.871 101.401 238.138 100.767 239.554C100.132 240.971 99.8041 242.505 99.8041 244.057C99.8041 245.61 100.132 247.144 100.767 248.561C101.401 249.977 102.328 251.244 103.487 252.277C104.645 253.31 106.008 254.087 107.488 254.556C108.968 255.025 110.53 255.177 112.072 255Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
3
nervui-service-manage/src/icon/QualityParameter.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M348.56 41.4403C345.72 38.6003 341.869 37.0033 337.852 37H62.1475C58.1312 37.0033 54.2803 38.6003 51.4403 41.4403C48.6003 44.2803 47.0033 48.1312 47 52.1475V347.852C47.0033 351.869 48.6003 355.72 51.4403 358.56C54.2803 361.4 58.1312 362.997 62.1475 363H337.852C341.869 362.997 345.72 361.4 348.56 358.56C351.4 355.72 352.997 351.869 353 347.852V52.1475C352.997 48.1312 351.4 44.2803 348.56 41.4403ZM278 86.9203H122V112.92H278V86.9203ZM235.36 147.618L200 182.978L164.64 147.618L146.257 166L169.017 188.76H147V214.76H187V236.15H137V262.15H187V312.79H213V262.15H263V236.15H213V214.76H253V188.76H230.983L253.743 166L235.36 147.618ZM73 337V63H327V337H73Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 797 B |
3
nervui-service-manage/src/icon/RecipeWeekPlan.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M77.625 176.5C77.1854 179.564 77.8981 182.682 79.625 185.25C80.5456 186.536 81.7188 187.62 83.0728 188.437C84.4269 189.254 85.9333 189.785 87.5 190C111.681 193.836 136.049 196.381 160.5 197.625C176.125 198.5 191.625 199 207 199C242.742 199.264 278.433 196.252 313.625 190C315.16 189.751 316.624 189.176 317.917 188.314C319.211 187.451 320.305 186.321 321.125 185C322.005 183.741 322.615 182.314 322.916 180.808C323.217 179.302 323.203 177.75 322.875 176.25C322.626 174.715 322.051 173.251 321.189 171.958C320.326 170.664 319.196 169.57 317.875 168.75C316.616 167.87 315.189 167.26 313.683 166.959C312.177 166.658 310.625 166.672 309.125 167C260.713 175.248 211.489 177.682 162.5 174.25C138.888 172.953 115.357 170.45 92 166.75C88.9363 166.31 85.8185 167.023 83.25 168.75C81.7945 169.541 80.5341 170.648 79.561 171.989C78.5878 173.33 77.9264 174.871 77.625 176.5V176.5ZM346.25 148.75C341.958 144.138 336.879 140.329 331.25 137.5C322.487 123.295 311.989 110.236 300 98.625C287.8 86.8215 273.894 76.9192 258.75 69.25C241.178 60.4179 221.792 55.796 202.125 55.75H198.75C179.003 55.7938 159.535 60.4148 141.875 69.25C126.69 76.6844 112.803 86.519 100.75 98.375C88.6759 110.1 78.0578 123.236 69.125 137.5C61.8573 140.526 55.6254 145.599 51.1871 152.101C46.7488 158.603 44.2953 166.254 44.125 174.125C44.8743 195.064 48.8372 215.764 55.875 235.5C61.1103 250.281 68.8946 264.03 78.875 276.125C89.1091 288.572 101.898 298.675 116.375 305.75C117.672 312.125 120.65 318.037 125 322.875C134.287 331.499 145.806 337.346 158.25 339.75C171.702 343.043 185.529 344.556 199.375 344.25H202.25C215.177 344.322 228.065 342.811 240.625 339.75C253.401 337.343 265.282 331.51 275 322.875C279.718 318.277 283.016 312.419 284.5 306C298.901 298.804 311.666 288.72 322 276.375C331.926 264.243 339.705 250.504 345 235.75C352.18 215.664 356.145 194.572 356.75 173.25C356.808 168.659 355.903 164.108 354.094 159.888C352.286 155.668 349.614 151.874 346.25 148.75V148.75ZM117 115.5C127.481 104.385 140.054 95.4505 153.997 89.2082C167.94 82.9659 182.979 79.5393 198.25 79.125H201.625C232.373 79.9971 261.53 92.9811 282.75 115.25C294.305 126.358 304.312 138.971 312.5 152.75C313.772 155.237 315.973 157.123 318.625 158C319.25 158 332.625 164.125 332.125 173.125C329.375 230.875 307.125 270.5 268.25 287.875C266.165 288.896 264.406 290.478 263.17 292.443C261.933 294.408 261.269 296.678 261.25 299C261.226 300.492 260.891 301.963 260.267 303.319C259.642 304.675 258.743 305.886 257.625 306.875C249 315.5 226.875 321.375 202.5 321.375H200C175 321.375 151.25 315.75 142.375 306.875C141.257 305.886 140.358 304.675 139.733 303.319C139.109 301.963 138.774 300.492 138.75 299C138.731 296.678 138.067 294.408 136.83 292.443C135.594 290.478 133.835 288.896 131.75 287.875C92.875 270.5 70.75 231 68.125 173.125C68.125 163.875 81.5 158 81.875 158C84.274 156.852 86.2445 154.969 87.5 152.625C95.5775 138.951 105.505 126.458 117 115.5V115.5Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
3
nervui-service-manage/src/icon/Scheme.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M130.323 82.1429C130.323 88.6618 125.056 93.9286 118.537 93.9286C112.018 93.9286 106.751 88.6618 106.751 82.1429V46.7857C106.751 40.2667 112.018 35 118.537 35C125.056 35 130.323 40.2667 130.323 46.7857V82.1429ZM177.539 82.1429H153.931C147.412 82.1429 142.145 76.8761 142.145 70.3571C142.145 63.8382 147.412 58.5714 153.931 58.5714H177.539C184.058 58.5714 189.325 63.8382 189.325 70.3571C189.325 76.8761 184.058 82.1429 177.539 82.1429ZM224.682 82.1429C224.682 88.6618 219.415 93.9286 212.896 93.9286C206.377 93.9286 201.11 88.6618 201.11 82.1429V46.7857C201.11 40.2667 206.377 35 212.896 35C219.415 35 224.682 40.2667 224.682 46.7857V82.1429ZM71.394 341.429H177.502C183.984 341.429 189.288 346.695 189.288 353.214C189.288 359.733 184.021 365 177.502 365H71.394C51.8371 365 36 349.163 36 329.643V93.9286C36 74.4085 51.8371 58.5714 71.394 58.5714H83.2165C89.7355 58.5714 95.0022 63.8382 95.0022 70.3571C95.0022 76.8761 89.7355 82.1429 83.2165 82.1429H71.394C64.875 82.1429 59.6083 87.4096 59.6083 93.9286V329.643C59.6083 336.162 64.875 341.429 71.394 341.429ZM260.039 82.1429H248.253C241.734 82.1429 236.468 76.8761 236.468 70.3571C236.468 63.8382 241.734 58.5714 248.253 58.5714H260.039C279.559 58.5714 295.396 74.4085 295.396 93.9286V200.368C295.396 206.887 290.129 212.154 283.61 212.154C277.092 212.154 271.825 206.887 271.825 200.368V93.9286C271.825 87.4096 266.558 82.1429 260.039 82.1429ZM344.16 288.614V307.397C355.982 311.08 364.6 322.129 364.6 335.167C364.6 351.225 351.562 364.263 335.504 364.263H234.958C218.9 364.263 205.862 351.225 205.862 335.167C205.862 322.166 214.48 311.08 226.302 307.397V288.614C226.302 256.129 252.747 229.685 285.231 229.685C317.715 229.685 344.16 256.129 344.16 288.614ZM320.588 288.577C320.588 269.094 304.714 253.22 285.231 253.22C265.748 253.22 249.874 269.094 249.874 288.577V306.071H320.588V288.577ZM229.433 335.167C229.433 338.224 231.901 340.692 234.958 340.692H335.504C338.561 340.692 341.029 338.224 341.029 335.167C341.029 332.11 338.561 329.643 335.504 329.643H234.958C231.901 329.643 229.433 332.11 229.433 335.167ZM151.426 251.157C148.406 251.157 145.386 249.979 143.103 247.695L101.374 206.04C96.7701 201.436 96.7701 193.96 101.374 189.356C105.978 184.752 113.454 184.752 118.058 189.356L151.39 222.687L218.052 156.025C222.656 151.421 230.133 151.421 234.737 156.025C239.34 160.628 239.34 168.105 234.737 172.709L159.75 247.695C157.467 250.016 154.446 251.157 151.426 251.157Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
3
nervui-service-manage/src/icon/Task.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M87 30H313.667C332.412 30 347.667 45.2547 347.667 64V336C347.667 354.745 332.412 370 313.667 370H87C68.2547 370 53 354.745 53 336V64C53 45.2547 68.2547 30 87 30ZM268.333 52.6667H132.333V86.6667H268.333V52.6667ZM321.681 344.014C323.806 341.888 325 339.006 325 336V64C325 57.7553 319.923 52.6667 313.667 52.6667H291V86.6667C291 99.1673 280.834 109.333 268.333 109.333H132.333C119.833 109.333 109.667 99.1673 109.667 86.6667V52.6667H87C80.7553 52.6667 75.6667 57.7553 75.6667 64V336C75.6667 342.256 80.7553 347.333 87 347.333H313.667C316.672 347.333 319.555 346.139 321.681 344.014ZM185.351 236.981L273.672 148.66C274.724 147.608 275.973 146.773 277.348 146.204C278.723 145.634 280.196 145.341 281.684 145.341C283.172 145.341 284.646 145.634 286.021 146.204C287.395 146.773 288.645 147.608 289.697 148.66C290.749 149.712 291.584 150.961 292.153 152.336C292.723 153.711 293.016 155.185 293.016 156.673C293.016 158.161 292.723 159.634 292.153 161.009C291.584 162.384 290.749 163.633 289.697 164.685L193.363 261.019C191.238 263.143 188.356 264.337 185.351 264.337C182.346 264.337 179.463 263.143 177.338 261.019L126.735 210.404C124.61 208.279 123.416 205.397 123.416 202.391C123.416 199.386 124.61 196.504 126.735 194.379C128.86 192.254 131.742 191.06 134.747 191.06C137.753 191.06 140.635 192.254 142.76 194.379L185.351 236.981Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
3
nervui-service-manage/src/icon/TaskCenter.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M330.664 222.461L329.219 212.5C327.617 201.484 324.609 190.781 320.312 180.625C313.75 165.117 304.336 151.133 292.383 139.141C289.102 135.859 282.578 129.687 278.047 126.133L272.227 121.562C273.711 115.977 274.492 110.156 274.492 104.102C274.492 66.5234 243.945 35.9766 206.367 35.9766C168.789 35.9766 138.242 66.5234 138.242 104.062C138.242 107.656 138.516 111.172 139.062 114.648L132.656 118.711C123.633 124.453 113.594 133.32 107.734 139.18C95.7031 151.211 86.2891 165.195 79.7656 180.664C75.2734 191.289 72.2266 202.383 70.7422 213.672L69.6094 222.109C45.1172 232.422 27.8906 256.68 27.8906 284.883C27.8906 322.461 58.4375 353.008 96.0156 353.008C109.063 353.008 121.25 349.336 131.602 342.969L139.219 346.953C142.734 348.789 146.016 350.352 149.219 351.68C165.312 358.516 182.422 361.953 200.039 361.953C217.656 361.953 234.727 358.477 250.82 351.68C253.516 350.547 256.289 349.258 259.297 347.734L268.281 343.164C278.555 349.375 290.586 352.969 303.438 352.969C341.016 352.969 371.562 322.422 371.562 284.844C371.523 256.992 354.688 233.008 330.664 222.461ZM96.0156 246.055C117.422 246.055 134.844 263.477 134.844 284.883C134.844 306.289 117.422 323.711 96.0156 323.711C74.6094 323.711 57.1875 306.289 57.1875 284.883C57.1875 263.477 74.6094 246.055 96.0156 246.055V246.055ZM303.398 323.711C281.992 323.711 264.57 306.289 264.57 284.883C264.57 263.477 281.992 246.055 303.398 246.055C324.766 246.055 342.187 263.477 342.227 284.883C342.227 306.328 324.805 323.711 303.398 323.711ZM206.367 65.2734C227.773 65.2734 245.195 82.6562 245.195 104.062C245.195 125.469 227.773 142.891 206.367 142.891C184.961 142.891 167.539 125.508 167.539 104.102C167.539 82.6953 184.961 65.2734 206.367 65.2734V65.2734ZM206.367 172.188C227.227 172.188 245.898 162.773 258.398 147.969L261.562 150.547C280.703 166.211 295.273 190 299.531 212.578L300.312 216.797C264.18 218.398 235.273 248.32 235.273 284.844C235.273 298.398 239.258 311.016 246.094 321.641L242.187 323.438C228.828 329.57 214.648 332.656 200.039 332.656C184.766 332.656 170.117 329.336 156.484 322.773L153.516 321.328C160.234 310.781 164.141 298.281 164.141 284.883C164.141 248.594 135.625 218.828 99.8047 216.875L100.391 213.672C105.156 186.875 122.891 160.391 146.602 144.609L150.039 142.305C162.344 160.352 182.969 172.188 206.367 172.188V172.188Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
3
nervui-service-manage/src/icon/abilityAssess.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M136 360H65.8345C51.5665 360 40 348.312 40 334.165V264H53.3335C75.4248 264 93.3333 246.091 93.3333 224C93.3333 201.909 75.4248 184 53.3335 184H40V113.834C40 99.5661 51.6876 88 65.8345 88H136V79.9998C136 57.9085 153.909 40 176 40C198.091 40 216 57.9085 216 79.9998V88H286.166C300.434 88 312 99.6873 312 113.834V184H320C342.091 184 360 201.909 360 224C360 246.091 342.091 264 320 264H312V334.165C312 348.434 300.313 360 286.166 360H216V346.666C216 324.575 198.091 306.667 176 306.667C153.909 306.667 136 324.575 136 346.666V360Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 634 B |
4
nervui-service-manage/src/icon/account.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="12" cy="12" r="12" fill="#03A9F4" fill-opacity="0.13549"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.1593 11.9783C12.0248 12.4523 10.719 12.1903 9.85065 11.3145C9.13391 10.5911 8.8224 9.55454 9.02025 8.55146C9.2181 7.54838 9.89921 6.71108 10.8359 6.31951C11.5658 6.01459 12.4296 6.01459 13.1595 6.31951C14.294 6.7936 15.0336 7.91032 15.0336 9.14897C15.0335 10.3876 14.2938 11.5043 13.1593 11.9783ZM9.56512 12.9126H14.4306H14.4308C15.8466 12.9126 16.998 14.0742 16.998 15.5021C16.998 16.9301 15.8464 18.0916 14.4308 18.0916H9.56512C8.14969 18.0916 6.99805 16.9301 6.99805 15.5021C6.99805 14.0742 8.14952 12.9126 9.56512 12.9126Z" fill="#03A9F4"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 772 B |
2
nervui-service-manage/src/icon/arrow.svg
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1651138769411" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15758" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
|
||||
</style></defs><path d="M171.15136 341.00224l684.02176 0-342.016 341.99552L171.15136 341.00224z" p-id="15759"></path></svg>
|
||||
|
After Width: | Height: | Size: 792 B |
3
nervui-service-manage/src/icon/assessBusiness.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M175.512 70.4331H223.723C230.39 70.4331 235.776 65.0471 235.776 58.3804C235.776 51.7137 230.39 46.3277 223.723 46.3277H175.512C168.846 46.3277 163.46 51.7137 163.46 58.3804C163.46 65.0471 168.846 70.4331 175.512 70.4331ZM127.64 76.1582C127.64 82.8249 133.026 88.2109 139.693 88.2109C146.36 88.2109 151.746 82.8249 151.746 76.1959V52.0527C151.746 45.3861 146.36 40 139.693 40C133.026 40 127.64 45.3861 127.64 52.0527V76.1582ZM248.017 76.1582C248.017 82.8249 253.403 88.2109 260.07 88.2109C266.736 88.2109 272.122 82.8249 272.122 76.1959V52.0527C272.122 45.3861 266.736 40 260.07 40C253.403 40 248.017 45.3861 248.017 52.0527V76.1582ZM69.0527 360H330.183C336.812 360 342.235 354.614 342.198 347.947V58.6441C342.198 51.9774 336.812 46.5913 330.145 46.5913H306.04C299.373 46.5913 293.987 51.9774 293.987 58.6441C293.987 65.3107 299.373 70.6968 306.04 70.6968H318.092V335.895H81.1055V70.6968H91.9906C98.6572 70.6968 104.043 65.3107 104.043 58.6441C104.043 51.9774 98.6572 46.5913 91.9906 46.5913H69.0527C62.3861 46.5913 57 51.9774 57 58.6441V347.947C57 354.614 62.3861 360 69.0527 360ZM279 142.968V124.995C279 124.201 278.667 123.439 278.074 122.877C277.482 122.316 276.678 122 275.84 122H124.16C123.322 122 122.518 122.316 121.926 122.877C121.333 123.439 121 124.201 121 124.995V142.968C121 143.762 121.333 144.524 121.926 145.086C122.518 145.648 123.322 145.963 124.16 145.963H275.84C276.678 145.963 277.482 145.648 278.074 145.086C278.667 144.524 279 143.762 279 142.968ZM124.16 175.917C123.322 175.917 122.518 176.233 121.926 176.794C121.333 177.356 121 178.118 121 178.912V196.885C120.999 197.691 121.328 198.465 121.917 199.046C122.507 199.627 123.31 199.969 124.16 200H196.84C197.69 199.969 198.493 199.627 199.083 199.046C199.672 198.465 200.001 197.691 200 196.885V178.912C199.969 178.127 199.626 177.383 199.04 176.827C198.454 176.272 197.668 175.947 196.84 175.917H124.16ZM279 230.995V248.968C279 249.762 278.667 250.524 278.074 251.086C277.482 251.648 276.678 251.963 275.84 251.963H124.16C123.322 251.963 122.518 251.648 121.926 251.086C121.333 250.524 121 249.762 121 248.968V230.995C121 230.201 121.333 229.439 121.926 228.877C122.518 228.316 123.322 228 124.16 228H275.84C276.678 228 277.482 228.316 278.074 228.877C278.667 229.439 279 230.201 279 230.995ZM121.926 282.794C122.518 282.233 123.322 281.917 124.16 281.917H196.84C197.668 281.947 198.454 282.272 199.04 282.827C199.626 283.383 199.969 284.127 200 284.912V302.885C200.001 303.691 199.672 304.465 199.083 305.046C198.493 305.627 197.69 305.969 196.84 306H124.16C123.31 305.969 122.507 305.627 121.917 305.046C121.328 304.465 120.999 303.691 121 302.885V284.912C121 284.118 121.333 283.356 121.926 282.794Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
3
nervui-service-manage/src/icon/assessment.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M115 60.5C115 48.6259 124.626 39 136.5 39H237.5C249.374 39 259 48.6259 259 60.5C259 60.6671 258.998 60.8338 258.994 61C258.729 72.6432 249.207 82 237.5 82H136.5C125.368 82 116.212 73.5398 115.111 62.6982C115.054 62.1382 115.019 61.5719 115.006 61C115.002 60.8338 115 60.6671 115 60.5ZM99.0033 61H64C58.4772 61 54 65.4772 54 71V341C54 346.523 58.4771 351 64 351H195.732C195.841 350.601 195.96 350.201 196.09 349.799L209.298 308.961L174.692 283.703C155.934 270.012 165.618 240.317 188.841 240.317H231.5L244.665 199.611C251.83 177.458 283.171 177.458 290.336 199.611L303.501 240.317H320V71C320 65.4772 315.523 61 310 61H274.997C274.729 81.4802 258.044 98 237.5 98H136.5C115.956 98 99.2709 81.4802 99.0033 61ZM320 256.317H346.16C353.9 256.317 357.129 266.215 350.876 270.779L320 293.315L311.593 299.452C308.802 301.489 307.634 305.088 308.697 308.375L319.836 342.814C319.836 342.814 319.836 342.815 319.836 342.815L323.687 354.723C326.073 362.1 317.621 368.217 311.359 363.646L294.033 351L272.217 335.077H272.216C272.042 334.949 271.863 334.829 271.681 334.718C269.302 333.258 266.343 333.154 263.881 334.404C263.502 334.596 263.135 334.82 262.784 335.077H262.784L240.968 351L223.641 363.646C217.379 368.217 208.927 362.1 211.313 354.723L212.518 351L226.304 308.375C227.366 305.088 226.199 301.489 223.408 299.452L184.125 270.779H184.124C177.872 266.215 181.1 256.317 188.841 256.317H188.841H237.32C237.32 256.317 237.32 256.317 237.32 256.317C237.754 256.317 238.181 256.282 238.6 256.215C241.527 255.741 243.997 253.668 244.931 250.779L259.888 204.535C261.078 200.855 264.269 199.009 267.467 198.997C270.687 198.984 273.914 200.83 275.112 204.535L281.838 225.329L290.069 250.779C290.934 253.453 293.116 255.429 295.758 256.083C296.173 256.186 296.6 256.256 297.035 256.291C297.249 256.308 297.464 256.317 297.681 256.317H320ZM259 128H80V158H259V128ZM203 186H80V216H203V186Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
3
nervui-service-manage/src/icon/assetManagement-cloud.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M94.3432 43H335.839C349.169 43 360 53.7929 360 67.1231V332.818C360 346.148 349.169 356.979 335.839 356.979H94.3432C81.013 356.979 70.1822 346.148 70.1822 332.818V290.517H58.1018C46.0213 290.517 40 284.496 40 272.415C40 260.335 46.0213 254.314 58.1018 254.314H70.1822V218.072H58.1018C46.0213 218.072 40 212.051 40 199.97C40 187.89 46.0213 181.869 58.1018 181.869H70.1822V145.589H58.1018C46.0213 145.589 40 139.568 40 127.488C40 115.445 46.0213 109.386 58.1018 109.386H70.1822V67.1609C70.1822 53.8308 81.013 43 94.3432 43ZM213.027 238.598H253.207C258.66 238.598 263.091 234.356 263.167 229.168C263.167 223.942 258.698 219.701 253.245 219.701H213.065V207.696H253.207C258.66 207.696 263.091 203.454 263.091 198.228C263.091 193.002 258.622 188.761 253.169 188.761H227.531L255.517 141.234C258.13 136.841 256.729 131.161 252.336 128.548C252.185 128.434 252.033 128.359 251.882 128.283C247.148 125.67 241.24 127.185 238.362 131.729L204.658 188.723H202.992L169.288 131.729C166.409 127.185 160.464 125.67 155.768 128.283C151.262 130.631 149.52 136.236 151.905 140.742C151.943 140.818 151.991 140.893 152.038 140.969C152.085 141.045 152.133 141.121 152.17 141.196L180.156 188.723H152.814C147.361 188.723 142.93 192.964 142.93 198.191C142.93 203.417 147.399 207.658 152.852 207.658H193.221V219.663H152.814C147.361 219.663 142.93 223.904 142.93 229.13C142.93 234.356 147.399 238.598 152.852 238.598H193.259V263.44C193.259 268.666 197.69 272.908 203.143 272.908C208.596 272.908 213.027 268.666 213.027 263.44V238.598ZM323.759 332.818C330.424 332.818 335.839 327.402 335.839 320.737V79.2036C335.839 72.5385 330.424 67.1231 323.759 67.1231H311.678V332.818H323.759Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
3
nervui-service-manage/src/icon/assetSettings.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M291.627 342.435C263.216 358.052 231.157 365.818 198.749 364.932C109.585 364.932 52 313.126 52 233.044C53.0551 200.278 66.9116 169.23 90.5963 146.563C98.3263 138.493 106.677 131.039 115.57 124.273L119.492 121.383L115.57 118.493C110.657 115.271 106.604 110.899 103.762 105.756C100.921 100.612 99.3771 94.8535 99.265 88.9786C99.6261 83.4585 101.093 78.0672 103.579 73.1251C106.064 68.1831 109.518 63.791 113.734 60.2099C117.951 56.6288 122.844 53.9318 128.123 52.279C133.403 50.6262 138.96 50.0514 144.466 50.5887C149.758 50.6079 155.003 51.5869 159.946 53.4783L163.867 55.3359L166.757 56.7807L168.408 54.0975C170.55 50.9371 173.12 48.0892 176.045 45.6352C183.63 38.7894 193.484 35 203.702 35C213.92 35 223.774 38.7894 231.359 45.6352C234.241 48.1959 236.868 51.0299 239.202 54.0975L241.473 56.5743L243.537 55.3359L247.665 53.4783C252.602 51.5689 257.851 50.5892 263.144 50.5887C268.7 50.0808 274.3 50.7041 279.608 52.421C284.915 54.1378 289.82 56.9126 294.025 60.5778C298.23 64.2429 301.649 68.7224 304.075 73.7457C306.501 78.7689 307.883 84.2317 308.139 89.8042C307.99 96.7883 305.852 103.585 301.977 109.398C298.102 115.21 292.65 119.797 286.261 122.621L281.514 125.098L285.848 128.607C294.162 135.01 302.088 141.903 309.584 149.247C332.838 171.132 346.74 201.153 348.387 233.044C349.918 254.736 345.429 276.43 335.413 295.733C325.398 315.036 310.245 331.197 291.627 342.435ZM128.986 140.372C120.712 146.587 112.979 153.492 105.87 161.011C85.9755 179.838 74.2032 205.678 73.0525 233.044C73.0525 314.777 139.512 343.673 198.129 343.673C256.746 343.673 326.715 324.478 326.715 232.838C325.115 206.373 313.27 181.572 293.691 163.694C286.495 156.188 278.694 149.285 270.368 143.055L262.525 137.482L259.636 135.418C257.113 133.903 255.074 131.701 253.758 129.069C252.442 126.437 251.903 123.485 252.205 120.557C252.827 117.518 254.303 114.718 256.46 112.488C258.617 110.258 261.366 108.69 264.383 107.967C266.151 107.491 267.877 106.87 269.543 106.11H270.988C280.482 103.22 286.467 98.0601 286.467 89.8042C286.467 81.5483 277.386 72.4669 262.525 72.4669C259.782 72.5103 257.063 72.9982 254.476 73.9116H250.967C246.273 76.0075 241.03 76.537 236.012 75.4219C230.994 74.3068 226.468 71.6062 223.103 67.7197C221.515 65.4288 219.642 63.3483 217.531 61.5278C215.74 59.6675 213.592 58.1877 211.216 57.1769C208.84 56.1661 206.284 55.6451 203.702 55.6451C201.12 55.6451 198.564 56.1661 196.188 57.1769C193.812 58.1877 191.664 59.6675 189.873 61.5278C187.549 63.1552 185.465 65.1005 183.681 67.3069V68.5453C180.183 72.1225 175.636 74.4914 170.699 75.308C165.763 76.1245 160.695 75.3462 156.231 73.086H152.515C149.919 72.2082 147.206 71.7213 144.466 71.6413C129.399 71.6413 120.318 80.7227 120.318 88.9786C120.703 92.8597 122.341 96.5099 124.985 99.3772C127.629 102.244 131.135 104.173 134.972 104.871L140.338 107.761C142.334 108.949 144.014 110.602 145.236 112.578C146.458 114.554 147.185 116.796 147.356 119.113C147.431 121.993 146.722 124.84 145.304 127.349C143.886 129.857 141.813 131.933 139.306 133.354L136.623 135.212L128.986 140.372ZM204.627 294.309C202.965 295.622 200.853 296.228 198.748 295.995C196.643 296.228 194.531 295.622 192.87 294.309C191.209 292.995 190.132 291.08 189.873 288.978V260.495H157.469C156.313 260.495 155.169 260.264 154.103 259.816C153.038 259.367 152.073 258.71 151.265 257.883C150.457 257.056 149.823 256.076 149.4 255.001C148.977 253.925 148.773 252.775 148.8 251.62C148.773 250.454 148.975 249.295 149.396 248.207C149.817 247.12 150.448 246.126 151.253 245.283C152.058 244.44 153.021 243.763 154.088 243.292C155.154 242.821 156.303 242.565 157.469 242.538H189.873V228.09H157.469C155.322 227.764 153.362 226.679 151.947 225.031C150.531 223.384 149.753 221.284 149.753 219.112C149.753 216.94 150.531 214.84 151.947 213.193C153.362 211.546 155.322 210.46 157.469 210.134H189.873L158.914 179.174C157.304 177.393 156.466 175.046 156.582 172.648C156.698 170.25 157.759 167.996 159.533 166.378C161.289 164.88 163.52 164.058 165.828 164.058C168.135 164.058 170.367 164.88 172.123 166.378L198.748 193.622L225.58 166.378C227.261 164.811 229.474 163.939 231.772 163.939C234.07 163.939 236.283 164.811 237.964 166.378C239.653 168.079 240.601 170.379 240.601 172.776C240.601 175.173 239.653 177.473 237.964 179.174L207.83 210.134H240.028C242.175 210.46 244.134 211.546 245.55 213.193C246.966 214.84 247.744 216.94 247.744 219.112C247.744 221.284 246.966 223.384 245.55 225.031C244.134 226.679 242.175 227.764 240.028 228.09H207.623V242.538H240.028C242.4 242.592 244.658 243.573 246.316 245.27C247.975 246.967 248.904 249.247 248.903 251.62C248.903 253.974 247.968 256.231 246.303 257.895C244.639 259.56 242.382 260.495 240.028 260.495H207.623V288.978C207.365 291.08 206.288 292.995 204.627 294.309Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
3
nervui-service-manage/src/icon/basicData.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M350.08 340H340V220.06C340 208.76 330.96 200 319.82 200H280.2C268.86 200 260 208.98 260 220.06V340H240V60.14C240 48.98 230.96 40 219.82 40H180.18C168.86 40 160 49.02 160 60.14V340H140V139.92C140 128.9 130.96 120 119.82 120H80.18C68.86 120 60 128.92 60 139.92V340H49.92C44.52 340 40 344.48 40 350C40 355.36 44.44 360 49.92 360H350.06C355.48 360 360 355.52 360 350C360 344.64 355.56 340 350.08 340Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 529 B |
3
nervui-service-manage/src/icon/basicManage.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M192.5 333.5H75.6219C67.7731 333.5 61.25 327.762 61.25 320.517V76.4825C61.25 69.2375 67.7731 63.5 75.6219 63.5H309.378C317.227 63.5 323.75 69.2375 323.75 76.4825V140.63C323.75 143.614 325.133 146.475 327.594 148.585C330.056 150.695 333.394 151.88 336.875 151.88C340.356 151.88 343.694 150.695 346.156 148.585C348.617 146.475 350 143.614 350 140.63V76.4825C350 56.9525 331.888 41 309.378 41H75.6219C53.1125 41 35 56.9525 35 76.4825V320.517C35 340.047 53.1125 356 75.6219 356H192.5C195.981 356 199.319 354.815 201.781 352.705C204.242 350.595 205.625 347.734 205.625 344.75C205.625 341.766 204.242 338.905 201.781 336.795C199.319 334.685 195.981 333.5 192.5 333.5ZM161.207 309C175.828 309 188.675 299.676 193.245 286.05H284.308C290.203 286.05 295 281.313 295 275.408C295 269.503 290.203 264.766 284.308 264.766H193.269C188.697 251.139 175.828 241.816 161.231 241.816C146.61 241.816 133.762 251.14 129.193 264.766H99.6923C93.7967 264.766 89 269.503 89 275.408C89 281.313 93.7967 286.05 99.6923 286.05H129.189C133.741 299.679 146.612 309 161.207 309ZM222.745 232.604C237.366 232.604 250.214 223.28 254.783 209.654H284.308C290.203 209.654 295 204.917 295 199.012C295 193.107 290.203 188.37 284.308 188.37H254.807C250.235 174.743 237.366 165.42 222.769 165.42C208.148 165.42 195.301 174.744 190.731 188.37H99.6923C93.7967 188.37 89 193.107 89 199.012C89 204.917 93.7967 209.654 99.6923 209.654H190.707C195.279 223.281 208.148 232.604 222.745 232.604ZM161.207 156.184C175.828 156.184 188.675 146.86 193.245 133.234H284.308C288.113 133.234 291.635 131.198 293.549 127.929C295.474 124.641 295.476 120.554 293.554 117.265C291.657 113.975 288.123 111.95 284.308 111.95H193.269C188.697 98.3227 175.828 89 161.231 89C146.61 89 133.762 98.3238 129.193 111.95H99.6923C93.7967 111.95 89 116.687 89 122.592C89 128.497 93.7967 133.234 99.6923 133.234H129.189C133.741 146.864 146.612 156.184 161.207 156.184ZM171.967 128.724C169.75 132.531 165.66 134.876 161.231 134.876C154.357 134.876 148.846 129.355 148.846 122.592C148.846 115.832 154.378 110.308 161.231 110.308C165.66 110.308 169.75 112.653 171.967 116.46C174.181 120.261 174.181 124.923 171.967 128.724ZM235.13 199.012C235.13 205.772 229.597 211.296 222.745 211.296C215.893 211.296 210.36 205.772 210.36 199.012C210.36 192.252 215.893 186.728 222.745 186.728C229.597 186.728 235.13 192.252 235.13 199.012ZM173.615 275.408C173.615 282.168 168.083 287.692 161.231 287.692C154.354 287.692 148.846 282.192 148.846 275.408C148.846 268.648 154.378 263.124 161.231 263.124C168.083 263.124 173.615 268.648 173.615 275.408Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
3
nervui-service-manage/src/icon/bedManagement.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M97.1429 70H302.857C318.643 70 331.429 82.7857 331.429 98.5714V165.714C347.214 165.714 360 178.5 360 194.286V258.571C360 274.357 347.214 287.143 331.429 287.143V320C331.429 325.929 326.643 330.714 320.714 330.714C314.786 330.714 310 325.929 310 320V287.143H90V320C90 325.929 85.2143 330.714 79.2857 330.714C73.3571 330.714 68.5714 325.929 68.5714 320V287.143C52.7857 287.143 40 274.357 40 258.571V194.286C40 178.5 52.7857 165.714 68.5714 165.714V98.5714C68.5714 82.7857 81.3571 70 97.1429 70ZM90 165.714H120.357V137.143C120.357 125.321 129.964 115.714 141.786 115.714H256.071C267.893 115.714 277.5 125.321 277.5 137.143V165.714H310V98.5714C310 94.6429 306.786 91.4286 302.857 91.4286H97.1429C93.2143 91.4286 90 94.6429 90 98.5714V165.714ZM141.786 165.714H256.071V137.143H141.786V165.714ZM331.429 265.714C335.357 265.714 338.571 262.5 338.571 258.571V194.286C338.571 190.357 335.357 187.143 331.429 187.143H68.5714C64.6429 187.143 61.4286 190.357 61.4286 194.286V258.571C61.4286 262.5 64.6429 265.714 68.5714 265.714H331.429Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
3
nervui-service-manage/src/icon/buffetStatistics.svg
Normal file
|
After Width: | Height: | Size: 6.3 KiB |
3
nervui-service-manage/src/icon/buffetUser.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M149.395 232.367C87.2461 232.367 36.8481 277.091 36.8481 332.225C36.8481 332.51 36.8588 332.806 36.8697 333.107C36.881 333.42 36.8925 333.738 36.8925 334.057H207.433V355.86H15V334.057H15.0892C15.0892 333.744 15.0669 333.443 15.0446 333.141C15.0223 332.839 15 332.538 15 332.225C15 274.499 61.5558 226.47 123.079 216.238C101.677 199.215 87.6483 170.71 87.6483 138.407C87.6483 86.2666 124.24 44 169.366 44C214.492 44 251.084 86.2666 251.084 138.407C251.084 190.548 214.492 232.814 169.366 232.814C166.283 232.814 163.29 232.635 160.297 232.233V232.367C157.917 232.159 155.498 232.228 153.065 232.297C151.844 232.332 150.619 232.367 149.395 232.367ZM171.198 65.3119C137.108 65.3119 109.452 97.0344 109.452 136.128C109.452 175.223 137.108 206.945 171.198 206.945C205.288 206.945 232.944 175.223 232.944 136.128C232.944 97.034 205.288 65.3119 171.198 65.3119ZM377.66 297.211L377.659 297.214C374.765 305.258 370.514 312.748 365.09 319.361L365.079 319.374L365.069 319.387C359.674 325.816 353.077 331.127 345.649 335.027C344.619 338.403 342.749 341.472 340.206 343.945L340.157 343.993L340.105 344.039C334.62 348.901 327.92 352.19 320.715 353.558C313.915 355.205 306.94 356.018 299.943 355.98H298.476C290.986 356.142 283.507 355.327 276.228 353.556C269.179 352.183 262.653 348.872 257.388 343.994L257.289 343.903L257.199 343.802C254.894 341.245 253.223 338.192 252.312 334.888C244.856 331.038 238.257 325.716 232.918 319.239C227.46 312.641 223.203 305.139 220.339 297.075C216.544 286.458 214.407 275.322 214.003 264.056L214 263.97L214.002 263.884C214.104 259.182 215.573 254.612 218.23 250.729C220.703 247.115 224.105 244.241 228.071 242.404C232.779 235.04 238.33 228.246 244.612 222.159C251.16 215.734 258.703 210.405 266.951 206.375C276.627 201.548 287.291 199.024 298.109 199L298.115 199H299.893C310.674 199.025 321.302 201.553 330.935 206.383L330.943 206.387C339.156 210.536 346.697 215.893 353.313 222.279L353.314 222.28C359.583 228.337 365.096 235.125 369.734 242.498C372.669 244.074 375.33 246.115 377.612 248.544C379.645 250.45 381.263 252.754 382.363 255.314C383.478 257.908 384.035 260.706 384 263.529L383.999 263.552L383.999 263.576C383.672 275.051 381.533 286.402 377.66 297.211ZM257.356 235.388L257.298 235.443C251.481 240.974 246.456 247.278 242.365 254.177C241.403 255.939 239.909 257.353 238.096 258.218L237.483 258.51H237.405C237.29 258.566 237.154 258.635 237.001 258.716C236.427 259.021 235.682 259.468 234.958 260.027C233.373 261.251 232.619 262.43 232.592 263.373C233.956 292.932 245.209 312.274 264.19 320.737L264.238 320.759L264.285 320.782C265.879 321.561 267.224 322.767 268.17 324.267C269.114 325.763 269.623 327.491 269.64 329.259C269.647 329.62 269.729 329.975 269.88 330.303C270.033 330.633 270.253 330.929 270.527 331.171L270.596 331.232L270.66 331.297C272.394 333.026 276.011 334.763 281.203 336.044C286.272 337.294 292.421 338.009 298.771 338.009H300.082C306.251 338.009 312.09 337.265 316.876 336.006C321.764 334.72 325.18 332.994 326.881 331.297L326.946 331.232L327.015 331.171C327.289 330.929 327.509 330.633 327.662 330.303C327.813 329.975 327.895 329.619 327.902 329.259C327.919 327.491 328.428 325.763 329.371 324.267C330.318 322.767 331.663 321.561 333.257 320.782L333.304 320.759L333.352 320.737C352.355 312.264 363.675 292.824 365.085 263.282L365.086 263.271L365.086 263.259C365.131 262.464 364.518 261.33 362.904 260.057C362.191 259.495 361.447 259.04 360.867 258.73C360.587 258.58 360.365 258.475 360.225 258.413L360.06 258.359C357.955 257.665 356.201 256.184 355.166 254.226C351.017 247.275 345.951 240.91 340.104 235.303L340.057 235.258L340.011 235.21C329.436 224.138 314.906 217.677 299.58 217.233H297.894C290.291 217.444 282.804 219.148 275.862 222.249C268.907 225.355 262.637 229.8 257.411 235.33L257.356 235.388ZM244.195 273.334L244.181 273.301C243.204 271.119 242.835 268.571 243.069 266.118L243.073 266.077L243.078 266.036C243.244 264.688 243.613 263.367 244.19 262.173C244.741 261.032 245.496 259.982 246.462 259.158C248.143 257.521 250.443 256.622 252.891 257.15L252.923 257.156L252.954 257.164C262.888 259.528 272.892 261.126 282.929 261.955L282.963 261.957L282.997 261.961C303.75 264.145 324.606 262.602 345.131 257.359C346.326 256.99 347.584 256.983 348.787 257.345C349.981 257.704 351.01 258.389 351.844 259.246C352.725 260.087 353.409 261.125 353.905 262.241C354.407 263.372 354.726 264.607 354.867 265.864C355.041 267.094 355.046 268.36 354.882 269.592C354.718 270.819 354.387 272.02 353.883 273.12C353.406 274.255 352.739 275.315 351.874 276.181C350.998 277.059 349.907 277.745 348.645 278.061C333.215 282.176 317.556 284.162 301.869 283.99C295.146 283.989 288.382 283.661 281.579 283.089C270.885 282.271 260.23 280.599 249.66 278.082C248.409 277.814 247.304 277.191 246.392 276.365C245.473 275.532 244.748 274.493 244.211 273.366L244.195 273.334Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
3
nervui-service-manage/src/icon/buffsetService.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M301.872 96.168C319.905 113.566 331.105 130.853 335.026 137.312C342.493 140.971 360.899 152.171 359.966 172.706C359.518 182.488 358.323 208.511 347.944 236.55C342.045 252.455 334.13 266.493 324.31 278.254C313.483 291.247 300.341 301.626 285.108 309.168C283.988 315.627 280.814 321.638 275.699 326.753C268.27 334.257 257.106 339.932 242.396 343.703C230.561 346.69 216.97 348.295 202.97 348.295C201.999 348.295 200.991 348.295 200.02 348.258C185.011 348.482 170.338 346.914 157.607 343.666C142.897 339.895 131.659 334.182 124.303 326.715C119.226 321.6 116.015 315.589 114.895 309.13C99.6993 301.626 86.5198 291.209 75.6925 278.216C65.8732 266.456 57.9581 252.418 52.059 236.513C41.821 208.829 40.5473 183.012 40.0518 172.97L40.037 172.669C39.0662 152.022 57.4727 140.896 64.9398 137.237C68.8601 130.778 80.0981 113.454 98.0938 96.0933C111.311 83.3619 125.461 73.2066 140.171 65.8888C158.839 56.667 178.365 52 198.228 52H201.775C221.637 52 241.164 56.7043 259.794 65.9635C274.505 73.2813 288.692 83.4366 301.872 96.168ZM309.413 190.575C319.672 186.481 324.67 174.846 320.575 164.587C316.481 154.328 304.846 149.33 294.587 153.425C214.61 185.342 135.339 166.47 107.234 153.773C97.1672 149.226 85.3206 153.7 80.7734 163.766C76.2262 173.833 80.7002 185.679 90.7665 190.227C126.14 206.206 216.941 227.48 309.413 190.575Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
3
nervui-service-manage/src/icon/businessCenter.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M106.333 66.6667H93C89.4638 66.6667 86.0724 68.0714 83.5719 70.5719C81.0714 73.0724 79.6667 76.4638 79.6667 80V240H106.333V66.6667ZM333 266.667H248.333C246.556 266.639 244.792 266.967 243.143 267.631C241.494 268.295 239.995 269.282 238.733 270.533C233.653 275.719 227.568 279.812 220.85 282.563C214.133 285.314 206.925 286.665 199.667 286.533C192.409 286.665 185.2 285.314 178.483 282.563C171.765 279.812 165.68 275.719 160.6 270.533C159.323 269.265 157.802 268.269 156.129 267.604C154.456 266.94 152.666 266.621 150.867 266.667H66.3333C62.7971 266.667 59.4057 268.071 56.9052 270.572C54.4048 273.072 53 276.464 53 280V346.667C53 350.203 54.4048 353.594 56.9052 356.095C59.4057 358.595 62.7971 360 66.3333 360H333C336.536 360 339.928 358.595 342.428 356.095C344.929 353.594 346.333 350.203 346.333 346.667V280C346.333 276.464 344.929 273.072 342.428 270.572C339.928 268.071 336.536 266.667 333 266.667V266.667ZM199.667 266.667C203.169 266.667 206.636 265.977 209.872 264.637C213.107 263.297 216.047 261.332 218.523 258.856C220.999 256.38 222.963 253.44 224.303 250.205C225.644 246.97 226.333 243.502 226.333 240H319.667V53.3333C319.667 49.7971 318.262 46.4057 315.761 43.9052C313.261 41.4048 309.87 40 306.333 40H146.333C142.797 40 139.406 41.4048 136.905 43.9052C134.405 46.4057 133 49.7971 133 53.3333V240H173C173 243.502 173.69 246.97 175.03 250.205C176.37 253.44 178.334 256.38 180.81 258.856C183.287 261.332 186.226 263.297 189.462 264.637C192.697 265.977 196.165 266.667 199.667 266.667V266.667ZM186.333 93.3333H266.333C269.869 93.3339 273.26 94.7389 275.76 97.2393C278.26 99.7397 279.665 103.131 279.665 106.667C279.665 110.203 278.26 113.594 275.76 116.094C273.26 118.594 269.869 119.999 266.333 120H186.333C182.797 119.999 179.407 118.594 176.907 116.094C174.407 113.594 173.002 110.203 173.002 106.667C173.002 103.131 174.407 99.7397 176.907 97.2393C179.407 94.7389 182.797 93.3339 186.333 93.3333V93.3333ZM186.333 160H266.333C269.869 160.001 273.26 161.406 275.76 163.906C278.26 166.406 279.665 169.797 279.665 173.333C279.665 176.869 278.26 180.26 275.76 182.761C273.26 185.261 269.869 186.666 266.333 186.667H186.333C182.797 186.666 179.407 185.261 176.907 182.761C174.407 180.26 173.002 176.869 173.002 173.333C173.002 169.797 174.407 166.406 176.907 163.906C179.407 161.406 182.797 160.001 186.333 160V160Z" fill="white"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
3
nervui-service-manage/src/icon/callAdvisory.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M10.3767 6.42941C10.5467 6.63208 10.73 6.83941 10.9253 7.05075C11.308 7.49152 11.6935 7.92975 12.082 8.36541C12.3487 8.67475 12.57 8.95008 12.7447 9.19275C12.92 9.43675 13.0573 9.65941 13.16 9.86341C13.26 10.0667 13.3293 10.2527 13.366 10.4234C13.4027 10.5934 13.4213 10.7634 13.4213 10.9341V11.7254C13.4213 11.9694 13.3813 12.1887 13.2987 12.3834C13.2234 12.5696 13.1122 12.7392 12.9714 12.8824C12.8306 13.0257 12.6629 13.1397 12.478 13.2181C12.2949 13.2952 12.098 13.3344 11.8993 13.3334H4.386C4.168 13.3334 3.95867 13.2967 3.76 13.2241C3.56699 13.1547 3.38894 13.0493 3.23534 12.9134C3.0851 12.7783 2.96319 12.6147 2.87667 12.4321C2.78734 12.2454 2.74334 12.0347 2.74334 11.8001V10.8621C2.74334 10.6674 2.76067 10.4801 2.79734 10.3021C2.83467 10.1234 2.902 9.93675 2.99867 9.74208C3.11316 9.52109 3.24772 9.31109 3.40067 9.11475C3.57134 8.89208 3.786 8.64608 4.04534 8.37741C4.25667 8.15075 4.47467 7.92141 4.69734 7.69075L5.30067 7.06341L5.91 6.43008H10.378L10.3767 6.42941V6.42941ZM8.08734 11.0434C8.298 11.0434 8.498 11.0027 8.684 10.9207C8.87067 10.8401 9.03267 10.7307 9.17067 10.5927C9.45888 10.3004 9.62072 9.90659 9.62134 9.49608C9.62347 9.29086 9.58212 9.0875 9.5 8.89941C9.42183 8.71791 9.3101 8.5528 9.17067 8.41275C9.03071 8.27321 8.86558 8.16146 8.684 8.08341C8.4958 8.00156 8.29256 7.96 8.08734 7.96141C7.88037 7.96052 7.67545 8.00228 7.48534 8.08408C7.11421 8.23657 6.81848 8.52967 6.66267 8.89941C6.58284 9.08938 6.54172 9.29336 6.54172 9.49941C6.54172 9.70547 6.58284 9.90945 6.66267 10.0994C6.744 10.2901 6.85334 10.4547 6.99134 10.5927C7.28377 10.8804 7.67716 11.0421 8.08734 11.0434V11.0434ZM14.1873 5.72208C14.1873 5.93341 14.1127 6.11275 13.962 6.25875C13.891 6.32953 13.8065 6.38536 13.7135 6.42292C13.6205 6.46048 13.5209 6.47901 13.4207 6.47741H11.8993C11.688 6.47741 11.5093 6.40408 11.3633 6.25875C11.292 6.18906 11.2357 6.10548 11.198 6.01317C11.1603 5.92086 11.1419 5.82178 11.144 5.72208V4.95541H5.044V5.72208C5.044 5.93341 4.97067 6.11275 4.824 6.25875C4.75441 6.32998 4.67092 6.38614 4.57872 6.42376C4.48651 6.46138 4.38756 6.47964 4.288 6.47741H2.76667C2.55667 6.47741 2.37534 6.40475 2.22534 6.25875C2.15259 6.18983 2.09499 6.10652 2.05619 6.01413C2.0174 5.92173 1.99826 5.82227 2 5.72208V4.93075C2 4.83408 2.024 4.75075 2.07334 4.68141C2.12134 4.61208 3.99334 2.66675 8.1 2.66675C12.2067 2.66675 14.0767 4.61341 14.1207 4.68141C14.1653 4.75008 14.1873 4.83408 14.1873 4.93075V5.72208Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
3
nervui-service-manage/src/icon/callCenter.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M9.74469 15.2C9.67292 15.2 9.60114 15.2 9.52937 15.1642C8.34506 14.9847 6.44298 14.2311 4.14613 11.7548C2.13638 9.52971 1.02386 7.37642 1.27507 5.97677C1.45451 4.57713 3.46425 3.71581 3.53604 3.67992C3.71548 3.60814 3.9308 3.67992 4.00258 3.82347L5.68935 6.65864C5.76112 6.76631 5.76112 6.87398 5.72523 6.98164C5.68935 7.0893 5.61757 7.16108 5.50989 7.19696C5.50989 7.19696 5.29457 7.30463 5.25868 7.55584C5.18691 7.84295 5.25868 8.48894 6.26355 9.67326C6.90954 10.4628 7.59141 10.8935 8.16564 10.8935C8.70395 10.9294 9.02696 10.5705 9.06283 10.5705C9.20639 10.4269 9.42172 10.4269 9.56528 10.5346L12.221 12.5443C12.3646 12.652 12.4004 12.8673 12.3287 13.0109C12.2569 13.1185 11.2161 15.2 9.74469 15.2ZM3.53604 4.50534C2.96184 4.82835 2.10051 5.43845 1.99285 6.12033C1.8493 7.01751 2.49529 8.84783 4.68447 11.2523C6.83776 13.5851 8.5604 14.267 9.60116 14.4464C10.3548 14.5541 11.1085 13.5851 11.4673 12.975L9.31404 11.36C9.06283 11.5394 8.66805 11.7189 8.12973 11.7189C7.3043 11.683 6.47887 11.1806 5.65345 10.2116C4.72034 9.09904 4.32558 8.16596 4.50502 7.4123C4.57679 7.12519 4.72034 6.90985 4.86389 6.8022L3.53604 4.50534ZM14.3743 9.06317C14.1948 9.06317 14.0154 8.91962 14.0154 8.74017C13.9795 8.52484 13.9436 8.27363 13.9077 8.05829C13.8719 7.84297 14.0154 7.66353 14.1948 7.62764C14.4102 7.59176 14.5896 7.73531 14.6255 7.91474C14.6614 8.16597 14.7332 8.41718 14.7332 8.66839C14.7691 8.88373 14.6255 9.06317 14.4102 9.09906C14.4102 9.06317 14.4102 9.06317 14.3743 9.06317ZM13.8001 6.8022C13.6565 6.8022 13.513 6.69454 13.4412 6.55099C13.3694 6.40744 13.3335 6.26389 13.2618 6.12034C12.9746 5.47435 12.5799 4.86425 12.1133 4.29003C11.0726 3.03394 9.74471 2.06497 8.2015 1.52664C7.98618 1.45485 7.9144 1.2395 7.95029 1.06006C8.02206 0.844762 8.23739 0.772973 8.41684 0.80886C10.1036 1.38307 11.575 2.42383 12.6875 3.78758C13.19 4.39768 13.5847 5.04367 13.9077 5.76144C13.9795 5.90499 14.0513 6.04855 14.0872 6.22799C14.159 6.40742 14.0513 6.65864 13.8719 6.73043C13.9077 6.8022 13.836 6.8022 13.8001 6.8022ZM12.0774 9.02728C11.898 9.02728 11.7544 8.88373 11.7186 8.70428C11.5391 7.62764 11.0726 6.62276 10.3907 5.76145C9.7088 4.90012 8.81162 4.25415 7.80674 3.85937C7.6273 3.78759 7.51962 3.57227 7.5914 3.35694C7.66319 3.17751 7.87851 3.06983 8.09385 3.1416C9.20638 3.60816 10.2112 4.32592 11.0008 5.2949C11.7544 6.26389 12.2928 7.37643 12.5081 8.59663C12.544 8.81196 12.4004 8.9914 12.1851 9.02728C12.1133 8.9914 12.1133 9.02728 12.0774 9.02728ZM9.70882 8.88373C9.52938 8.88373 9.38582 8.77607 9.34993 8.59662C9.20638 8.09419 8.95515 7.59176 8.59628 7.16109C8.2374 6.73044 7.80674 6.37155 7.34019 6.12033C7.16075 6.01266 7.08897 5.79734 7.19664 5.6179C7.3043 5.43846 7.51962 5.36669 7.69908 5.47435C8.27328 5.79734 8.77571 6.1921 9.20638 6.73044C9.60114 7.23287 9.92413 7.80708 10.1036 8.41718C10.1754 8.63251 10.0318 8.81196 9.85237 8.88373H9.70882Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
3
nervui-service-manage/src/icon/careSetting.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M309.987 313.809C311.633 314.503 314.154 315.405 314.827 315.952C315.5 316.5 315.661 317.111 315.661 317.111C315.066 316.738 316.388 317.511 315.661 317.111L320.446 286.002L333.405 201.751L332.944 201.39C332.443 200.997 331.827 200.545 331.075 200.037C325.508 196.275 315.942 191.981 302.055 188.012C298.806 187.083 295.391 186.192 291.821 185.342C265.229 179.013 230.077 175 191 175C146.678 175 107.406 180.162 79.9446 188.012C66.0579 191.981 56.4914 196.275 50.9247 200.037C50.1958 200.53 49.5949 200.969 49.1023 201.353L48.6402 201.714L66.3401 317.076C67 316.5 67.5 316 68.1281 315.542C69.9486 314.712 71.8136 313.909 73.7192 313.132C89.3457 305.695 119.877 295.959 171.244 294.597C177.725 294.306 184.319 294.157 191 294.157C220.259 294.157 247.907 297.02 271.582 302.118C285.361 305.086 298.462 308.951 309.987 313.809ZM119 97.7659L119.791 97.5969C121.977 97.1298 124.531 96.6503 127.469 96.1785C143.123 93.665 165.597 92 191 92C216.403 92 238.877 93.665 254.531 96.1785C257.469 96.6503 260.023 97.1298 262.209 97.5969L263 97.7659V147H119V97.7659ZM285 161.354V84.2453C285 83.6477 284.622 82.8787 283.453 81.9631C282.302 81.061 280.543 80.1468 278.181 79.2508C273.467 77.4628 266.589 75.8327 258.019 74.4567C240.895 71.7072 217.2 70 191 70C164.8 70 141.105 71.7072 123.981 74.4567C115.411 75.8327 108.533 77.4628 103.819 79.2508C101.457 80.1468 99.6977 81.061 98.5467 81.9631C97.3783 82.8787 97 83.6477 97 84.2453V161.354L96.196 161.515C74.7822 165.794 57.1392 171.472 44.8765 178.05C38.7446 181.34 34.0038 184.83 30.8066 188.444C27.6182 192.048 26.0031 195.729 26 199.441C26.0258 200.603 26.2107 201.756 26.5494 202.868L26.5704 202.937L47.1088 336.799C47.3913 338.624 48.1341 340.347 49.2668 341.805C50.3997 343.263 51.8852 344.407 53.583 345.131C55.2809 345.855 57.1351 346.133 58.9705 345.941C60.8059 345.748 62.562 345.091 64.0728 344.03L64.0777 344.027C75.6267 336.023 93.475 329.314 115.33 324.603C137.204 319.887 163.166 317.157 191 317.157C218.834 317.157 244.842 319.887 266.74 324.603C288.616 329.314 306.467 336.023 317.925 344.029L317.927 344.03C319.438 345.091 321.194 345.748 323.029 345.941C324.865 346.133 326.719 345.855 328.417 345.131C330.115 344.407 331.6 343.263 332.733 341.805C333.866 340.347 334.608 338.625 334.891 336.8L355.43 203.271L355.45 203.202C355.819 201.988 356.005 200.725 356 199.456V199.452C356 195.736 354.385 192.052 351.193 188.444C347.996 184.83 343.255 181.34 337.123 178.05C324.861 171.472 307.218 165.794 285.804 161.515L285 161.354ZM202.5 222.5V196.5C202.5 193.45 201.288 190.525 199.132 188.368C196.975 186.212 194.05 185 191 185C187.95 185 185.025 186.212 182.868 188.368C180.712 190.525 179.5 193.45 179.5 196.5V222.5H153.5C150.45 222.5 147.525 223.712 145.368 225.868C143.212 228.025 142 230.95 142 234C142 237.05 143.212 239.975 145.368 242.132C147.525 244.288 150.45 245.5 153.5 245.5H179.5V271.5C179.5 274.55 180.712 277.475 182.868 279.632C185.025 281.788 187.95 283 191 283C194.05 283 196.975 281.788 199.132 279.632C201.288 277.475 202.5 274.55 202.5 271.5V245.5H228.5C231.55 245.5 234.475 244.288 236.632 242.132C238.788 239.975 240 237.05 240 234C240 230.95 238.788 228.025 236.632 225.868C234.475 223.712 231.55 222.5 228.5 222.5H202.5Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
3
nervui-service-manage/src/icon/careWorke.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M194.169 242.057C194.174 242.057 194.178 242.057 194.183 242.057C194.178 242.057 194.174 242.057 194.169 242.057C194.169 242.057 194.169 242.057 194.169 242.057ZM194.797 242.065C194.802 242.065 194.807 242.066 194.812 242.066C194.807 242.066 194.802 242.065 194.797 242.065C194.797 242.065 194.797 242.065 194.797 242.065ZM299.349 171.18L299.1 171.496L298.993 171.884C294.565 187.889 284.239 202.557 270.041 214.172L267.92 215.907L340.248 262.812L340.286 262.834C349.543 268.282 355 278.435 355 289.461V319.469C355 339.24 339.354 355 319.815 355H80.1854C60.6458 355 45 339.24 45 319.476V289.461C45 278.525 50.3942 269.119 59.803 262.778L127.979 218.559L125.694 216.84C109.864 204.928 98.2853 189.358 93.4519 172.24L93.3352 171.827L93.0591 171.498C91.1313 169.201 89.902 166.089 89.902 162.781L89.902 85.484L89.902 85.481C89.8939 79.9737 90.8206 74.5246 92.6234 69.4503C94.4263 64.376 97.066 59.7869 100.378 55.9413C103.689 52.0963 107.602 49.0743 111.883 47.0322C116.162 44.9907 120.732 43.9644 125.331 44.001L125.339 44.0011H266.803L266.811 44.001C271.411 43.9633 275.982 44.9887 280.262 47.0296C284.543 49.0713 288.458 52.093 291.77 55.9382C295.082 59.7839 297.722 64.3734 299.526 69.4482C301.329 74.5231 302.256 79.9729 302.248 85.481V162.781C302.248 165.937 301.129 168.917 299.349 171.18ZM328.981 280.985L247.747 228.306L246.742 228.778C231.51 235.929 214.173 240.065 196.169 240.065H194.808C179.009 239.883 163.754 236.524 150.02 230.751L149.053 230.345L70.8239 280.287L70.8048 280.3C67.8593 282.277 65.7903 285.357 65.7903 289.461V319.476C65.7903 327.239 72.4542 333.987 80.1854 333.987H319.815C327.544 333.987 334.218 327.241 334.218 319.476V289.461C334.218 287.815 333.687 286.015 332.81 284.5C331.983 283.07 330.707 281.659 328.981 280.985ZM275.447 175.275H116.899L118.611 178.268C131.491 200.79 161.073 220.168 196.169 220.168C231.271 220.168 260.855 200.79 273.735 178.268L275.447 175.275ZM110.865 150.286H281.293V85.484C281.293 76.9424 274.838 68.9897 266.811 68.9897H125.347C117.32 68.9897 110.865 76.9424 110.865 85.484V150.286ZM188.714 130.449V117.003H175.272C172.548 117.003 170.455 116.189 169.07 114.941C167.703 113.71 166.871 111.925 166.871 109.637C166.871 107.35 167.703 105.565 169.07 104.334C170.455 103.086 172.548 102.272 175.272 102.272H188.714V88.826C188.714 86.0993 189.528 84.0058 190.775 82.6194C192.005 81.2522 193.789 80.4202 196.075 80.4202C198.361 80.4202 200.145 81.2522 201.375 82.6194C202.622 84.0058 203.436 86.0993 203.436 88.826V102.272H216.877C219.602 102.272 221.694 103.086 223.08 104.334C224.447 105.565 225.279 107.35 225.279 109.637C225.279 111.925 224.447 113.71 223.08 114.941C221.694 116.189 219.602 117.003 216.877 117.003H203.436V130.449C203.436 133.176 202.622 135.269 201.375 136.656C200.145 138.023 198.361 138.855 196.075 138.855C193.789 138.855 192.005 138.023 190.775 136.656C189.528 135.269 188.714 133.176 188.714 130.449Z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |