code init

This commit is contained in:
chenxiaoxi
2021-05-25 18:06:45 +08:00
parent 02698d6dab
commit f54a8d4fa1
1367 changed files with 540755 additions and 21713 deletions
+242 -5
View File
@@ -1,12 +1,249 @@
<template>
<div id="foton">
<router-view />
<div id="app">
<router-view v-if="!isBoolean"/>
<div class="content-box" v-if="isBoolean">
<nav-menu></nav-menu>
<div class="sub-container">
<com-header></com-header>
<div class="container-box">
<router-view />
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'App',
mounted() {},
import {mapGetters, mapState} from 'vuex'
export default {
name: 'App',
data () {
return {
isBoolean: false
}
},
methods: {
/**
* @description: 主题设置
* @author: xx
* @date: 2018-08-29 14:56:39
*/
setTheme (theme) {
document.getElementById('app').className = theme
},
/**
* @description: backSpace回退禁用
* @date: 2021-03-01 16:36:55
* @auth: chenxiaoxi
*/
banBackSpace(e) {
var ev = e || window.event;
//各种浏览器下获取事件对象
var obj = ev.relatedTarget || ev.srcElement || ev.target ||ev.currentTarget;
//按下Backspace键
if(ev.keyCode == 8){
var tagName = obj.nodeName //标签名称
//如果标签不是input或者textarea则阻止Backspace
if(tagName!='INPUT' && tagName!='TEXTAREA'){
return this.stopIt(ev);
}
var tagType = obj.type.toUpperCase();//标签类型
//input标签除了下面几种类型,全部阻止Backspace
if(tagName=='INPUT' && (tagType!='TEXT' && tagType!='TEXTAREA' && tagType!='PASSWORD')){
return this.stopIt(ev);
}
//input或者textarea输入框如果不可编辑则阻止Backspace
if((tagName=='INPUT' || tagName=='TEXTAREA') && (obj.readOnly==true || obj.disabled ==true)){
return this.stopIt(ev);
}
}
},
stopIt(ev) {
if(ev.preventDefault){
//preventDefault()方法阻止元素发生默认的行为
ev.preventDefault();
}
if(ev.returnValue){
//IE浏览器下用window.event.returnValue = false;实现阻止元素发生默认的行为
ev.returnValue = false;
}
return false;
},
// 其他标签页修改用户 或者 退出登录
refresh() {
//执行刷新操作,这里我没有写this.$route.go(0),因为整个页面抖动不是很友好
//现将app.vue下面的 头部组件,菜单组件,内容组件隐藏再放出来,实现刷新一样的效果
console.log('我要刷新页面了')
}
},
computed: {
...mapGetters([
'getWebSocketList', 'getTheme', 'getMenuList'
]),
...mapState(['userInfoModifyTime'])
},
watch: {
// 'userInfoModifyTime'() {
// // console.log('watch global, userInfoModifyTime')
// this.refresh()
// },
getTheme (val) {
// 主题修改
this.setTheme(val)
},
// 监听路由 控制isBoolean
$route () {
if (this.$route.name !== 'Login' && this.$route.name !== 'Home' && !this.$route.meta.isBoolean && this.$route.name !== 'beeEChungLogin' && this.$route.name !== 'beeEnergyLogin' && this.$route.name !== 'mdLawLogin' && this.$route.name !== 'nuoBLogin' && this.$route.name !== 'sTLogin' && this.$route.name !== 'StandardSearch') {
this.isBoolean = true
} else {
this.isBoolean = false
}
}
},
mounted () {
this.setTheme(this.getTheme)
//实现对字符码的截获,keypress中屏蔽了这些功能按键
document.onkeypress = this.banBackSpace
//对功能按键的获取
document.onkeydown = this.banBackSpace
this.visibilitychangeFn = (e) => { //这个方法是监测浏览器窗口发生变化的时候执行
// 切换到当前页面
if (document.hidden == false) {
const userInfoModifyTime = this.userInfoModifyTime
const userInfoModifyTimeInLocalStorage = localStorage.getItem('userInfoModifyTime')
// 用户未切换 不执行任何操作
if (userInfoModifyTime === userInfoModifyTimeInLocalStorage) {
return
}
if (userInfoModifyTimeInLocalStorage === null) {
this.$store.dispatch('syncStorageData')
const currentPage = this.$route.name
if (currentPage === 'Login') {return}
this.currentMinute = 3
this.loading && this.loading.close()
this.loading = this.$loading({
lock: true,
// text: 'Loading',
// spinner: 'el-icon-loading',
// background: 'rgba(0, 0, 0, 0.7)'
});
this.messageForLogin && this.messageForLogin.close()
this.messageForLogin = this.$message({
message: `用户已退出,${this.currentMinute}秒后将跳转到登录页面`,
type: 'warning'
})
this.intervalForLogin = setInterval(() => {
if (this.currentMinute === 0) {
clearInterval(this.intervalForLogin)
this.loading.close()
this.$router.push('/login')
console.log('切换到登录页面', currentPage)
}
this.currentMinute--
this.messageForLogin.message = `用户已退出,${this.currentMinute}秒后将跳转到登录页面`
}, 1000)
} else if (userInfoModifyTime !== userInfoModifyTimeInLocalStorage) {
this.$store.dispatch('syncStorageData')
console.log('用户信息已更改,同步数据')
this.currentMinute = 3
this.loading && this.loading.close()
this.loading = this.$loading({
lock: true,
// text: 'Loading',
// spinner: 'el-icon-loading',
// background: 'rgba(0, 0, 0, 0.7)'
});
this.messageForHome && this.messageForHome.close()
this.messageForHome = this.$message({
message: `用户已切换,${this.currentMinute}秒后将跳转到用户首页`,
type: 'warning'
})
this.intervalForHome = setInterval(() => {
if (this.currentMinute === 0) {
clearInterval(this.intervalForHome)
this.loading.close()
this.$router.push({
path: '/redirect',
query: '/home'
})
}
this.currentMinute--
this.messageForHome.message = `用户已切换,${this.currentMinute}秒后将跳转到用户首页`
}, 1000)
// const route = this.$router.resolve('/home')
// this.$router.push({
// path: '/redirect',
// query: '/home'
// })
// location.reload();
}
}
}
document.addEventListener('visibilitychange', this.visibilitychangeFn);
},
beforeDestroy() {
document.onkeypress = null
document.onkeydown = null
document.removeEventListener('visibilitychange', this.visibilitychangeFn)
clearInterval(this.intervalForLogin)
clearInterval(this.intervalForHome)
}
}
</script>
<style lang="less">
#app {
position: relative;
width: 100%;
height: 100%;
overflow-y: auto;
& > div{
position: absolute;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
}
.content-box {
display: flex;
height: 100%;
.sub-container {
height: 100%;
flex: 1;
overflow-x: auto;
display: flex;
flex-direction: column;
.container-box {
position: relative;
height: calc(~'100% - 50px');
//flex: 1;
background: #F4F4F4;
overflow-y: auto;
padding: 10px 10px 0;
.pagination {
border-top: 1px solid #f4f4f4;
width: calc(~'100% - 20px');
left: 10px;
}
}
}
}
}
</style>
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/ad/getList',
method: 'get',
data,
})
}
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/changeLog/getList',
method: 'post',
data,
})
}
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getIconList(data) {
return request({
url: '/colorfulIcon/getList',
method: 'post',
data,
})
}
-20
View File
@@ -1,20 +0,0 @@
import request from 'axios'
export function getRepos(params) {
return request({
url: 'https://api.github.com/repos/chuzhixin/vue-admin-beautiful',
method: 'get',
params,
timeout: 10000,
})
}
export function getStargazers(params) {
return request({
url:
'https://api.github.com/repos/chuzhixin/vue-admin-beautiful/stargazers',
method: 'get',
params,
timeout: 10000,
})
}
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/goodsList/getList',
method: 'post',
data,
})
}
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getIconList(data) {
return request({
url: '/icon/getList',
method: 'post',
data,
})
}
+39
View File
@@ -0,0 +1,39 @@
import axios from '@/common/axiosV2'
// ******** 公共页面 ******* //
// 获取全部组织机构
export function getDept (data) {
return axios({
url: '/api/sys/org/getTree',
method: 'get',
params: data
})
}
// 获取全部人员(pOrg为部门级别)
export function getUserOrgDept (data) {
return axios({
url: '/api/sys/role/getUserAndOrg',
method: 'get',
params: data
})
}
// 根据用户id获取所在的部门
export function getDepartmentByUserId (data) {
return axios({
url: '/api/sys/user/getDepartInfoByUserIds',
method: 'get',
params: data
})
}
// 分页查询用户(2021-03-21上汽集团全公司人员加载缓慢解决方案)
export function getRoleAndUserByOrgIdPage (params) {
return axios({
url: 'api/sys/role/getRoleAndUserByOrgIdPage',
method: 'get',
params
})
}
-8
View File
@@ -1,8 +0,0 @@
import request from 'axios'
export function getList() {
return request({
url: 'https://cdn.jsdelivr.net/gh/prettier/prettier@master/docs/options.md',
method: 'get',
})
}
-25
View File
@@ -1,25 +0,0 @@
import request from '@/utils/request'
export function getTree(data) {
return request({
url: '/menuManagement/getTree',
method: 'post',
data,
})
}
export function doEdit(data) {
return request({
url: '/menuManagement/doEdit',
method: 'post',
data,
})
}
export function doDelete(data) {
return request({
url: '/menuManagement/doDelete',
method: 'post',
data,
})
}
-8
View File
@@ -1,8 +0,0 @@
import request from '@/utils/request'
export function getNoticeList() {
return request({
url: '/notice/getList',
method: 'post',
})
}
+28
View File
@@ -0,0 +1,28 @@
import axios from '@/common/axiosV2'
// office初始化
export function officeInit(data) {
return axios({
url: '/onlyOffice/lawss/sarStandardsInfo/initStandFile',
method: 'get',
params: data
})
}
// 加载章节
export function getChapter(data) {
return axios({
url: '/onlyOffice/lawss/sarStandardsInfo/getChapter',
method: 'get',
params: data
})
}
// 保存
export function generateStandFile(data) {
return axios({
url: '/onlyOffice/lawss/sarStandardsInfo/generateStandFile',
method: 'post',
data
})
}
-25
View File
@@ -1,25 +0,0 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/personalCenter/getList',
method: 'post',
data,
})
}
export function doEdit(data) {
return request({
url: '/personalCenter/doEdit',
method: 'post',
data,
})
}
export function doDelete(data) {
return request({
url: '/personalCenter/doDelete',
method: 'post',
data,
})
}
+609
View File
@@ -0,0 +1,609 @@
/**
* @description: 流程中心
* @date: 2020-11-12 10:15:37
* @auth: chenxiaoxi
*/
import axios from '@/common/axiosV2'
// 流程发起
export function startProcess (data) {
return axios({
url: '/api/lawss/activiti/startProcess',
method: 'get',
params: data
})
}
// 流程提交
export function completeTask (data) {
return axios({
url: '/api/lawss/activiti/completeTask',
method: 'post',
data
})
}
// // 项目评估流程状态更爱
export function xmpgUpdateStatus (data) {
return axios({
url: '/api/lawss/sarProductStand/updateStatus',
method: 'get',
params: data
})
}
// 联络人分配FO详情查询
export function inboundLiaisonDetail (data) {
return axios({
url: '/api/lawss/activiti/inboundLiaisonDetail',
method: 'get',
params: data
})
}
// 流程保存
export function saveTask (data) {
return axios({
url: '/api/lawss/activiti/saveTask',
method: 'post',
data
})
}
// 流程技术评估获取数据
export function inboundLiaisonDetailForLawsAss (data) {
return axios({
url: '/api/lawss/activiti/inboundLiaisonDetailForLawsAss',
method: 'get',
params: data
})
}
// 項目評估(整合國内外版) 查询详情
export function getProjectEvaluation (data) {
return axios({
url: '/api/lawss/activiti/projectAssessDetail',
method: 'get',
params: data
})
}
// 法规流程入库
export function processCreateStand (data) {
return axios({
url: '/api/lawss/actSarItems/processCreateStand',
method: 'post',
data
})
}
// 流程3 法规流程入库
export function processCreatePG (data) {
return axios({
url: '/api/lawss/actSarItems/processCreateProductInfo',
method: 'post',
data
})
}
// 流程保存
export function saveinboundTask (data) {
return axios({
url: '/api/lawss/activiti/saveinboundTask',
method: 'post',
data
})
}
// 通用保存草稿
export function saveTaskFirst (data) {
return axios({
url: '/api/lawss/activiti/saveTaskFirst',
method: 'post',
data
})
}
// 复审流程-模拟发起
export function autoTaskFirst (data) {
return axios({
url: '/api/lawss/sarBussionessStand/reviewProcessInitiation',
method: 'get',
data
})
}
// 代办任务中复审流程-选择联络人后提交
export function autoPutFirst (data) {
return axios({
url: '/api/lawss/activiti/completeTask',
method: 'post',
data
})
}
// 法规入库及评估流程-根据草稿查询流程详情
export function queryTaskFirst (data) {
return axios({
url: '/api/lawss/activiti/queryTaskFirst',
method: 'get',
params: data
})
}
// 整改流程 详情查询nonconformity
export function getNonconformity (data) {
return axios({
url: '/api/lawss/activiti/nonconformity',
method: 'get',
params: data
})
}
// 整改流程-入库
export function processCloseInconformItems (data) {
return axios({
url: '/api/lawss/actSarItems/processCloseInconformItems',
method: 'post',
data
})
}
// 整改流程-流程保存
export function saveUnqualified (data) {
return axios({
url: '/api/lawss/activiti/saveUnqualified',
method: 'post',
data
})
}
// 企标制修订申请 详情查询
export function getQbzxdsqlcDetail (data) {
return axios({
url: '/api/lawss/activiti/qbzxdsqlcDetail',
method: 'get',
params: data
})
}
// 企标制修订申请流程-入库
export function processCreateBussPlan (data) {
return axios({
url: '/api/lawss/actSarItems/processCreateBussPlan',
method: 'post',
data
})
}
// 查询企业标准库
export function getSarBussStandPage(data) {
return axios({
url: '/api/lawss/sarBussionessStand/getSarBussionStandPage',
method: 'get',
params: data
})
}
// 查询我的企标制修订计划
export function getSelfBussStandPlan(data) {
return axios({
url: '/api/lawss/sarBussStandPlan/getSelfPage',
method: 'get',
params: data
})
}
// 查询标准法规清单
export function sarSarAccessPage(data) {
return axios({
url: '/api/lawss/sarSarAccess/page',
method: 'get',
params: data
})
}
// 查询国内外政策
export function sarLawsInfoPage(data) {
return axios({
url: '/api/lawss/sarLawsInfo/page',
method: 'get',
params: data
})
}
// 查询我的企标
export function getMyEnterpriseStandard(data) {
return axios({
url: '/api/lawss/sarBussStandPlan/getSelfPage',
method: 'get',
params: data
})
}
// 查询数据字典
export function getDicTypeListCode() {
return axios({
url: '/api/sys/dictype/getDicTypeListCode',
method: 'get'
})
}
// 获取动态表单标题
export function getAreaList(data) {
return axios({
url: '/api/lawssBase/utArea/getAreaList',
method: 'get',
params: data
})
}
// 获取动态表单
export function getSarStandAttrDetailsList() {
return axios({
url: '/api/lawss/sarStandAttrDetails/list',
method: 'get'
})
}
// 企标延期制修订审批流程 查询详情
export function queryDetail (data) {
return axios({
url: '/api/lawss/activiti/queryDetail',
method: 'get',
params: data
})
}
// 企标延期制修订审批流程-入库
export function delayProcessToBussPlan (data) {
return axios({
url: '/api/lawss/actSarItems/delayProcessToBussPlan',
method: 'post',
data
})
}
// 企标延期制修订审批流程-流程保存
export function saveTaskForPub (data) {
return axios({
url: '/api/lawss/activiti/saveTaskForPub',
method: 'post',
data
})
}
// 采购流程-流程保存
export function saveCgSq (data) {
return axios({
url: '/api/lawss/activiti/saveCgSq',
method: 'post',
data
})
}
// 企标废止流程详情查询
export function qbfzlcDetail (data) {
return axios({
url: '/api/lawss/activiti/qbfzlcDetail',
method: 'get',
params: data
})
}
// 会前申请流程-入库
export function preConferenceProcess (data) {
return axios({
url: '/api/lawss/actSarItems/preConferenceProcess',
method: 'post',
data
})
}
// 根据部门查询部门下所有的人员
export function findByOrg (data) {
return axios({
url: '/api/sys/user/findByOrg',
method: 'get',
params: data
})
}
// 企标制修订评估流程详情查询
export function qbzxdpgDetail (data) {
return axios({
url: '/api/lawss/activiti/qbzxdpgDetail',
method: 'get',
params: data
})
}
// 企标制修订流程详情
export function qbzxdlcDetail (data) {
return axios({
url: '/api/lawss/activiti/qbzxdlcDetail',
method: 'get',
params: data
})
}
// 采购流程详情
export function bzcgDetail (data) {
return axios({
url: '/api/lawss/activiti/cgsqDetail',
method: 'get',
params: data
})
}
// 企标制修订评估流程-入库
export function bussPlanAssessProcess (data) {
return axios({
url: '/api/lawss/actSarItems/bussPlanAssessProcess',
method: 'post',
data
})
}
// 企标废止流程入库
export function bussAbolishProcess (data) {
return axios({
url: '/api/lawss/actSarItems/bussAbolishProcess',
method: 'post',
data
})
}
// 企标制修订流程入库
export function bussStandCreateProcess (data) {
return axios({
url: '/api/lawss/actSarItems/bussStandCreateProcess',
method: 'post',
data
})
}
// 政策入库及评估流程详情
export function zcfgrklcDetail (data) {
return axios({
url: '/api/lawss/activiti/zcfgrklcDetail',
method: 'get',
params: data
})
}
// 政策入库及评估流程详情, 发起人确认/汇总使用
export function zcfgrklcDetail4 (data) {
return axios({
url: '/api/lawss/activiti/zcfgrklcFqrDetail',
method: 'get',
params: data
})
}
// 企标勘误流程入库
export function bussCorrectErrorProcess (data) {
return axios({
url: '/api/lawss/actSarItems/bussCorrectErrorProcess',
method: 'post',
data
})
}
// 企标备案流程入库
export function bussRecordsProcess (data) {
return axios({
url: '/api/lawss/actSarItems/bussRecordsProcess',
method: 'post',
data
})
}
// 会后流程入库
export function afterConferenceProcess (data) {
return axios({
url: '/api/lawss/actSarItems/afterConferenceProcess',
method: 'post',
data
})
}
// 海外标准清单流程入库
export function foreignAccessProcess (data) {
return axios({
url: '/api/lawss/actSarItems/foreignAccessProcess',
method: 'post',
data
})
}
// 判断海外清单流程是否全部会签完成
export function isEnd (data) {
return axios({
url: '/api/lawss/activiti/isEnd',
method: 'get',
params: data
})
}
// 流程委托接口
export function changeAssigneeNew (data) {
return axios({
url: '/api/lawss/activiti/changeAssigneeNew',
method: 'get',
params: data
})
}
// 政策入库流程数据保存
export function createLawsProcess (data) {
return axios({
url: '/api/lawss/actSarItems/createLawsProcess',
method: 'post',
data
})
}
// 项目评估流程保存 第三步
export function saveProjectAssessDetail3 (data) {
return axios({
url: '/api/lawss/activiti/saveProjectAssessDetail3',
method: 'post',
data
})
}
// 项目评估流程保存第二步
export function saveProjectAssessDetail2 (data) {
return axios({
url: '/api/lawss/activiti/saveProjectAssessDetail2',
method: 'post',
data
})
}
// 项目评估流程保存 第四步
export function saveProjectAssessDetail4 (data) {
return axios({
url: '/api/lawss/activiti/saveProjectAssessDetail4',
method: 'post',
data
})
}
// 项目评估流程保存 第五步
export function saveProjectAssessDetail5 (data) {
return axios({
url: '/api/lawss/activiti/saveProjectAssessDetail5',
method: 'post',
data
})
}
// 查询全部角色
export function findAllRole() {
return axios({
url: 'api/sys/role/findAll',
method: 'get'
})
}
// 查询指定角色人员
export function findUserByRole(params) {
return axios({
url: 'api/sys/user',
method: 'get',
params
})
}
// 查询所有部门
export function findAllDept() {
return axios({
url: 'api/sys/org/getTree',
method: 'get'
})
}
// 根据责任部门+角色组名称查询用户
export function getRoleAndUserByOrgId(params) {
return axios({
url: 'api/sys/role/getRoleAndUserByOrgId',
method: 'get',
params
})
}
// 根据部门加角色查询角色组
export function getTreeByRoleAndOrgId2(params) {
return axios({
url: 'api/sys/org/getTreeByRoleAndOrgId2',
method: 'get',
params
})
}
// 根据部门加角色分组名称查询分组下的所有角色
export function getRoleByOrgIdOrGroupName(params) {
return axios({
url: 'api/sys/role/getRoleByOrgId',
method: 'get',
params
})
}
// 根据部门id获取部门下的科室
export function getChildDeptByOrgId(params) {
return axios({
url: 'api/sys/org/getChildDept',
method: 'get',
params
})
}
// 更新企标状态
export function bussCreateUpdateState(data) {
return axios({
url: 'api/lawss/actSarItems/bussCreateUpdateState',
method: 'post',
params: data
})
}
// 修改标准评估的流程状态
export function skillAssessProcessStart(data) {
return axios({
url: 'api/lawss/actSarItems/skillAssessProcessStart',
method: 'post',
data
})
}
// 流程文件文档转换
export function addConvertFile(data) {
return axios({
url: 'api/convert/otActConvert/addConvertFile',
method: 'get',
params: data
})
}
// 获取文档转换后的文件
export function getConvertFileByAttId(data) {
return axios({
url: 'api/convert/otActConvert/getConvertFileByAttId',
method: 'get',
params: data
})
}
// 未符合项跟踪修改状态
export function updateBaseInfo(data) {
return axios({
url: 'api/lawss/sarInconformInfo/updateBaseInfo',
method: 'post',
data: data
})
}
// 标准法规入库流程修改技术评估状态
export function processStartForStand(data) {
return axios({
url: 'api/lawss/actSarItems/processStartForStand',
method: 'post',
data
})
}
// 行政管理要求评估流程 第二步 查询详情接口
export function inboundLiaisonDetailForXZYQ (data) {
return axios({
url: '/api/lawss/activiti/inboundLiaisonDetailForXZYQ',
method: 'get',
params: data
})
}
// 行政管理要求评估流程 第三步 保存接口
export function saveTaskForXZYQ (data) {
return axios({
url: '/api/lawss/activiti/saveTaskForXZYQ',
method: 'post',
data
})
}
// 查询标准详情
export function getStandInfoById (data) {
return axios({
url: '/api/lawss/sarStandardsInfo/getStandInfoById',
method: 'get',
params: data
})
}
-8
View File
@@ -1,8 +0,0 @@
import request from '@/utils/request'
export function getPublicKey() {
return request({
url: '/publicKey',
method: 'post',
})
}
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getIconList(data) {
return request({
url: '/remixIcon/getList',
method: 'post',
data,
})
}
-25
View File
@@ -1,25 +0,0 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/roleManagement/getList',
method: 'post',
data,
})
}
export function doEdit(data) {
return request({
url: '/roleManagement/doEdit',
method: 'post',
data,
})
}
export function doDelete(data) {
return request({
url: '/roleManagement/doDelete',
method: 'post',
data,
})
}
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getRouterList(data) {
return request({
url: '/menu/navigate',
method: 'post',
data,
})
}
-25
View File
@@ -1,25 +0,0 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/table/getList',
method: 'post',
data,
})
}
export function doEdit(data) {
return request({
url: '/table/doEdit',
method: 'post',
data,
})
}
export function doDelete(data) {
return request({
url: '/table/doDelete',
method: 'post',
data,
})
}
-9
View File
@@ -1,9 +0,0 @@
import request from '@/utils/request'
export function getTreeList(data) {
return request({
url: '/tree/list',
method: 'post',
data,
})
}
-38
View File
@@ -1,38 +0,0 @@
import request from '@/utils/request'
import { encryptedData } from '@/utils/encrypt'
import { loginRSA, tokenName } from '@/config'
export async function login(data) {
if (loginRSA) {
data = await encryptedData(data)
}
return request({
url: '/login',
method: 'post',
data,
})
}
export function getUserInfo(accessToken) {
return request({
url: '/userInfo',
method: 'post',
data: {
[tokenName]: accessToken,
},
})
}
export function logout() {
return request({
url: '/logout',
method: 'post',
})
}
export function register() {
return request({
url: '/register',
method: 'post',
})
}
-25
View File
@@ -1,25 +0,0 @@
import request from '@/utils/request'
export function getList(data) {
return request({
url: '/userManagement/getList',
method: 'post',
data,
})
}
export function doEdit(data) {
return request({
url: '/userManagement/doEdit',
method: 'post',
data,
})
}
export function doDelete(data) {
return request({
url: '/userManagement/doDelete',
method: 'post',
data,
})
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 682 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 881 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 578 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 827 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 787 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 899 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 796 B

+672
View File
@@ -0,0 +1,672 @@
/**
* @description: 中文包
* @author: L.R.H
* @date: 2020-06-09 12:27:29
*/
export const m = {
home: '首页',
homeTitle: '全球标准法规系统',
statuteBank: '标准法规库',
dataReport: '数据报表',
standardTeam: '标准团队',
config: '配置管理',
personal: '个人中心',
cloudRepository: '云端资源库',
retrieval: '检索',
cn: '中文',
en: '英语',
jn: '日语',
languageVersion: '语言版本',
standAll: '国内外标准法规',
lawsAll: '国内外政策',
enterpriseStandard: '企业标准',
information: '动态&资料',
standSelect: '请输入关键词',
cloudDynamics: '云端动态',
localDynamics: '本地动态',
structuredDatabase: '结构化数据库',
more: '更多',
dataCenter: '资料中心',
domesticStandardDatabase: '国内标准法规',
foreignStandardDatabase: '海外标准法规',
domesticRegulationsDatabase: '国内政策',
foreignRegulationsDatabase: '国外政策',
enterpriseStandardDatabase: '企业标准法规',
accessStandardsAndRegulations: '标准法规清单',
testItemDatabase: '试验项目库',
welcome: '欢迎您',
localTools: '本地工具',
processCenter: '流程中心',
localAndProject: '车型/项目库',
advancedSearch: '高级检索',
toDoTasks: '待办任务',
peopleNum: '当前在线人数',
allPeopleNum: '累计在线人数',
friendshipLinks: '友情链接',
nodeQuickFind: '节点快速查找',
standardCategory: '标准类别',
standardCategoryTips: '根据标准类别查找',
standardNumAndName: '标准号/名称',
standardNumAndNameTips: '根据标准号/名称查找',
clearQuery: '清空查询',
export: '导出',
exportAll: '全部导出',
majorClassificationCode: '专业分类代号',
add: '新增',
bulkDelete: '批量删除',
templateDownload: '模板下载',
import: '导入',
configurationStandard: '配置标准',
removalCriteria: '移除标准',
standNumber: '标准号',
standName: '标准名称',
issueTime: '发布日期',
putTime: '实施日期',
standNatureShow: '标准性质',
standStateShow: '标准状态',
action: '操作',
see: '查看',
stand: '标准/文件性质',
startTime: '开始时间',
endTime: '结束时间',
nationalArea: '国家/地区',
energyTypes: '能源种类',
degreeStandard: '采标程度',
fileState: '标准/文件状态',
enterpriseCategory: '企标分类',
noticeAndClassify: '动态&通知分类',
professionalClassification: '专业分类',
pleaseEnterTheOption: '请输入选项',
sortNumber: '排序号',
newInformation: '新增信息',
editInformation: '编辑信息',
determine: '确定',
pleaseSelectApplicableArea: '请选择适用区域',
itemNumber: '条目号',
entryName: '条目名称',
keyPointsOfimplementation: '实施要点',
pleaseSelectTheApplicableModel: '请选择适用车型',
pleaseSelectEnergyType: '请选择能源种类',
responsibleDepartment: '责任部门',
searchAccordingToResponsibleDepartment: '根据责任部门查找',
newModelImplementationDate: '新车型实施日期',
implementationDateOfVehicleInProduction: '在产车型实施日期',
referenceStandard: '引用标准',
associatedFiles: '关联文件',
newStandardEntry: '新增标准条目',
edit: '编辑',
region: '区域',
country: '国家',
tableName: '表格名称',
applicableModels: '适用车型',
typesOfEnergy: '能源种类',
pleaseSelectRegion: '请选择区域',
lookUpByTableName: '根据表格名称查找',
emptyTheQuery: '清空查询',
countryRegion: '国家地区',
creationTime: '创建时间',
founder: '创建人',
accessToInformation: '准入信息',
dataAcquisition: '数据获取中',
viewPolicyEntry: '查看政策条目',
dataSearch: '数据搜索',
theDataSource: '数据来源',
keywords: '关键字',
searchAccordingToStandardNameDocumentNameKeyword: '根据 [标准名称/文件名称] 关键字查找',
multiAttributeSearch: '多属性搜索',
hideMultiAttributeSearch: '隐藏多属性搜索',
showAddDataList: '显示添加数据列表',
hideAddDataList: '隐藏添加数据列表',
byTheTime: '截止时间',
selectDeadline: '选择截止时间',
theAuthenticationType: '认证类型',
professionalField: '所属专业领域',
query: '查询',
listingItems: '清单条目',
standardFileNo: '标准号/文件号',
standardNameFileName: '标准名称/文件名称',
responsibilityDepartment: '责任部门',
standardState: '标准状态',
remarks: '备注',
moveUp: '上移',
moveDown: '下移',
downloadTemplate: '模板下载',
newAdmittanceStandardsAndRegulations: '新增准入标准法规',
temporaryStorage: '暂存',
publish: '发布',
dynamicTitle: '请输入动态标题',
PleaseSelect: '请选择',
pleaseSelectDepartment: '请选择部门',
fullTextOfAnnex: '文件附件全文',
dynamicContent: '动态内容',
releaseTime: '发布时间',
releaseDate: '发布日期',
messageModule: '消息模块',
dynamicData: '动态资料模块',
issuingAgency: '发布机构',
PleaseEnterTheRelevantLink: '请输入相关链接',
title: '标题',
creator: '创建人',
serialNumber: '序号',
dataType: '资料类型',
standardNumberAndPolicyNumber: '标准号/政策号',
standardNameAndPolicyName: '标准名称/政策名称',
textState: '文本状态',
conversionResults: '转换结果',
timeConsuming: '消耗时间',
searchByModule: '根据模块查找',
searchByTitle: '根据标题查找',
delete: '删除',
upload: '上传',
getFiles: '获取文件',
onlineEditing: '在线编辑',
pleaseEnterTheStandardNumberAndPolicyNumber: '请输入标准号/政策号',
pleaseEnterTheStandardNameAndPolicyName: '请输入标准名称/政策名称',
searchByStandardNumberAndName: '根据标准号/名称查找',
split: '拆分',
pleaseSelectDataType: '请选择资料类型',
pleaseSelectTheTextState: '请选择文本状态',
push: '推送',
bulkCopy: '批量复制',
clauseRequirements: '条款要求',
attribute: '属性',
copy: '复制',
addTo: '添加',
pleaseEntertheContent: '请输入内容',
update: '修改',
yes: '是',
no: '否',
download: '下载',
downloadWithWatermark: '下载(带水印)',
addContent: '添加内容',
save: '保存',
addText: '添加文本',
addPicture: '添加图片',
addTable: '添加表格',
sure: '确定',
uploadPictures: '上传图片',
pleaseEnterAPositiveInteger: '请输入正整数',
pleaseEnterTheTermNumber: '请输入条款号',
onlyTermNameIsAllowed: '只允许输入条款名称',
onlyPositiveIntegersAreAllowed: '只允许输入正整数',
selectFile: '选择文件',
confirm: '确认',
pleaseSelectThePersonYouWantToShare: '请选择要分享的人',
option: '选项',
sharingPolicy: '分享政策',
describe: '描述',
operation: '操作',
systemAssembly: '系统总成',
subfield: '子领域',
pleaseEnterOptions: '请输入选项',
natureOfStandardsDocuments: '标准/文件性质',
pleaseSelectTheNatureOfTheDocument: '请选择文件性质',
area: '地区',
assemblyClassification: '总成分类',
standardAdoptionDegree: '采标程度',
standardDocumentStatus: '标准/文件状态',
pleaseSelectFileStatus: '请选择文件状态',
enterpriseClassification: '企标分类',
associatedSystem: '关联系统',
associatedAssembly: '关联总成',
associatedComponents: '关联部件',
dynamicNotificationClassification: '动态&通知分类',
standardVersion: '标准文本',
abstract: '内容摘要',
standardEnglishName: '标准英文名称',
searchAccordingToStandardEnglishName: '根据标准英文名称查找',
normativeReferenceStandard: '规范性引用标准',
selectApplicableArea: '请选择适用区域',
selectTheApplicableCountry: '请选择适用国家',
enterpriseStandardCategory: '企标类别',
enterpriseStandardClassification: '企标分类',
majorClassification: '专业分类',
standardNumber: '标准编号',
standardYear: '标准年份',
implementationYear: '企标实施年份',
initialDate: '企标首发日期',
substituteStandardNumber: '代替标准号',
searchBySubstituteStandardNumber: '根据代替标准号查找',
replacedStandardNumber: '被代替标准号',
searchByreplacedStandardNumber: '根据被代替标准号查找',
keyWord: '关键词',
selectStandardCategory: '请选择标准类别',
selectStandardClassification: '请选择企标分类',
selectMajorCategory: '请选择专业分类',
pleaseSelect: '请选择',
enterTheStandardNumber: '请输入标准编号',
enterStandardName: '请输入标准名称',
enterStandardEnglishName: '请输入标准英文名称',
enterStandardYear: '请输入标准年份',
enterNormativeReferenceStandards: '请输入规范性引用标准',
selectReleaseDate: '请选择发布日期',
selectImplementationDate: '请选择实施日期',
enterTheImplementationYear: '请输入企标实施年份',
enterTheStartDate: '请输入企标首发日期',
selectStandardStatus: '请选择标准状态',
selectTheStandardNature: '请选择标准性质',
enterMultipleStandardNumbers: '输入多个标准号,以逗号隔开',
selectTheStandard: '请输入被代替标准号',
pleaseEnterKeyWords: '请输入关键词',
enterSummaryOfTheContent: '请输入内容摘要',
cancel: '取消',
submit: '提交',
findByContentSummary: '根据内容摘要查找',
lookUpByAlternativeCriteria: '根据代替标准查找',
findByTheResponsibilityDepartment: '根据责任部门查找',
findByNormativeReferenceStandard: '根据规范性引用标准查找',
lookupByStandardStatus: '根据标准状态查找',
findByPrincipalCompiler: '根据主要编制者查找',
contentInThisPaper: '内容摘要',
substituteForStandNumber: '代替标准号',
theResponsibilityDepartment: '责任部门',
// 雷艳辉加的
searchRecommend: '请输入关键词',
More: '更多',
domesticAndForeignStandardsAndRegulations: '国内外标准法规',
domesticAndForeignPolicy: '国内外政策',
newsAndInformation: '动态&资料',
// 添加--删多的
roleName: '角色名称',
pleaseEnterTheRoleName: '请输入角色名称',
configureRoleResources: '配置角色资源',
configureResourcePermissions: '配置资源权限',
allocationPolicy: '配置政策',
deletePolicy: '移除政策',
dataProcessing: '数据处理中',
roleDescription: '角色描述',
enable: '启用',
disable: '禁用',
researchInstituteUsers: '研究院用户',
nonGraduateUsers: '非研究院用户',
configurationAdministrator: '配置管理员',
notYet: '暂无',
operator: '操作人',
operationTime: '操作时间',
systemMenu: '系统菜单',
gettingSystemMenu: '系统菜单',
resourcePermissions: '资源权限',
gettingMenu: '菜单获取中',
getting: '正在获取中',
pleaseEnterTheRoleDescription: '请输入角色描述',
roleType: '角色类型',
pleaseSelectRoleType: '请选择角色类型',
roleStatus: '角色状态',
pleaseSelectRoleStatus: '请选择角色状态',
seeInformation: '查看信息',
customerType: '用户类型',
nameOfPersonnel: '人员姓名',
noQueryResult: '暂无查询结果',
applyForPurchase: '申请购买',
recommendItToMe: '为我推荐',
pleaseEnterTheNameOfThePerson: '请输入人员姓名',
pleaseEnterTheSystemAccountNumber: '请输入系统账号',
pleaseEnterThePersonnelNumber: '请输入人员编号',
userPassword: '用户密码',
pleaseEnterUserPassword: '请输入用户密码',
enterThePasswordAgain: '再次输入密码',
pleaseEnterThePasswordAgain: '请再次输入密码',
pleaseSelectARole: '请选择角色',
pleaseEnterThePhoneNumber: '请输入手机号码',
pleaseEnterTheOfficePhoneNumber: '请输入办公室电话',
eMail: '电子邮件',
pleaseEnterEmailAddress: '请输入电子邮箱',
userStatus: '用户状态',
pleaseSelectStatus: '请选择状态',
type: '类型',
byType: '按类型',
byAccount: '按账户',
byStatus: '按状态',
userInformation: '用户信息',
accountNumber: '账号',
synchronizationTime: '同步时间',
welcomeToTheRegulatoryThinkTank: '欢迎登录全球标准法规系统',
// 雷艳辉加的
principalCompiler: '主要编制者',
basicInformation: '基础信息',
substitutionAndBidAcquisition: '代替和采标关系',
textInformation: '文本信息',
closeToTheStandard: '相近标准',
listOfCloseCriteria: '相近标准列表',
none: '无',
downloadWithWaterMark: '下载(带水印)',
standardDecompositionSheet: '标准分解单',
outOfStock: '暂缺',
typeOfEnergy: '能源种类',
draftForComment: '征求意见稿',
rangeOfApplication: '适用范围',
theAssociatedFiles: '关联文件',
contentAbstract: '内容简介',
associatedProcess: '关联流程',
standardCommentSeeking: '标准征求意见审批流程',
standardsAndRegulationsNotice: '标准法规实施通知及排查流程',
standardDetails: '标准详情',
theStandardTranslation: '标准译文',
applicableCertification: '适用认证',
findAccordingToApplicableCertification: '根据适用认证查找',
remark: '备注',
pleaseEnterTheRemarks: '请输入备注信息',
pleaseSelectedDepartment: '请选择部门',
searchByItemNameRequirement: '根据条目名称/要求查找',
findParts: '根据涉及零部件查找',
entryNumber: '条目号',
implementationPoints: '实施要点',
partsInvolved: '涉及零部件',
newModelVehicle: '新车型实施日期',
onTheVehicleDate: '在产车型实施日期',
operating: '操作',
warningTimeSetting: '预警时间设置',
threeMonths: '3个月',
sixMonths: '6个月',
oneYear: '1年',
twoyear: '2年',
empty: '清空',
preservation: '保存',
search: '搜索',
conversionTime: '转换时间',
findByRegion: '根据区域查找',
searchBykeyWord: '根据关键词查找',
findByCountryAndRegion: '根据国家/地区查找',
searchByStandardName: '根据标准名称查找',
searchByStandardNumber: '根据标准号查找',
searchByStandardCategory: '根据标准类别查找',
searchByNumber: '根据编号查找',
searchAccordingToProfessionalField: '根据所属专业领域查找',
findByStandardNature: '根据标准性质查找',
searchAccordingToThApplicableModel: '根据适用车型查找',
searchByStandardOrNumber: '根据标准号/名称查找',
pleaseEnterThNameOfTheExportFile: '请输入导出文件名称',
pleaseSelectArea: '请选择区域',
pleaseSelectCountry: '请选择国家',
exportName: '导出名称',
pleaseSelectTheAppropriateModel: '请选择适用车型',
pleaseSelectTheStandardCategory: '请输入标准编号',
pleaseEnterAStandardYear: '请输入标准年份',
pleaseEnterAStandardEnglishName: '请输入标准英文名称',
pleaseEnterTheSubstituteStandardNumber: '请输入代替标准号',
pleaseEnterTheStandardNumberInstead: '请输入被代替标准号',
pleaseEnterTheInternationalStandardNumber: '请输入采用国际标准号',
pleaseSelectBidLevel: '请选择采标程度',
pleaseSelectTheEnergyType: '请选择能源种类',
pleaseSelectTheApplicableCertification: '请选择试用认证',
pleaseSelectTheReleaseDate: '请选择发布日期',
pleaseSelectAnImplementationDate: '请选择实施日期',
pleaseSelectTheImplementationDateOfTheNewModelVehicle: '请选择新车型实施日期',
implementationDateOfNewProductionVehicle: '新生产车实施日期',
pleaseSelectimplementationDateOfNewProductionVehicle: '请选择新生产车实施日期',
pleaseSelectTheImplementationDateOfRegistrationVehicle: '请选择注册登记车实施日期',
pleaseEnterTheDraftingUnit: '请输入起草单位',
pleaseEnterTheGrassMaker: '请输入起草人',
PleaseSelectYourFieldOfExpertise: '请选择所属专业领域',
pleaseEnterComments: '请输入备注',
standardNo: '标准号',
nameStandard: '标准名称',
theImportFile: '导入文件',
specialEffectiveDate: '特殊生效日期',
findByFileName: '根据文件名称查找',
findByFileNumber: '根据文件号',
searchByAreaOfExpertise: '根据所属专业领域查找',
findByStandardCategory: '根据标准类别查找',
lookUpByStandardNumber: '根据标准号',
lookUpByStandardName: '名称查找',
searchByTestItemName: '按试验项目名称查找',
projectCode: '项目代码',
testObject: '试验对象',
testItemName: '试验项目名称',
testItems: '试验项目',
interpretationOfRegulationsAndQuotationOfStandards: '法规解读标准引用',
standardStatus: '标准状态',
pleaseSelectTheImplementationDateOfNewModelCar: '请选择新定型车实施日期',
fieldOfExpertise: '所属专业领域',
standardOrNumber: '标准号/名称',
adoptInternationalStandardNumber: '采用国际标准号',
implementationDate: '实施日期',
implementationDateOfNewModelCar: '新定型车实施日期',
pleaseSelectimplementationDateOfProductionVehicle: '请选择在产车实施日期',
implementationDateOfRegistrationVehicle: '注册登记车实施日期',
draftingUnit: '起草单位',
draftsman: '起草人',
standardTranslation: '标准译文',
contentSummary: '内容摘要',
subordinateSuperior: '所属上级',
departmentName: '部门名称',
enterDepartmentName: '请输入部门名称',
DepartmentAbbreviation: '部门简称',
enterDepartmentAbbreviation: '请输入部门简称',
departmentType: '部门类型',
room: '室',
section: '科',
department: '部门',
subsidiary: '子公司',
selectDepartmentType: '请选择部门类型',
departmentProfile: '部门简介',
enterDepartmentDescription: '请输入部门描述',
personnelName: '人员姓名',
byPersonName: '按人员姓名',
role: '角色',
byRole: '按角色',
state: '状态',
byState: '按状态',
setUpRoles: '设置角色',
organizationType: '组织机构类型',
roomLevel: '室级',
ministry: '部级',
level: '科级',
systemAccount: '系统账号',
personnelNumber: '人员编号',
departments: '所属部门',
email: '电子邮件',
officePhone: '办公电话',
phoneNumber: '手机号码',
fax: '传真',
postalAddress: '通讯地址',
disabled: '禁用',
normal: '正常',
modificationTime: '修改时间',
gettingList: '正在获取人员列表',
creationDate: '创建日期',
pleaseEntertheName: '请输入名称',
saveChanges: '保存修改',
clearAllBrowsingHistory: '清除所有浏览记录',
checkAll: '全选',
collectedUpdates: '已收藏的动态',
pleaseEnterDynamicInformation: '请输入动态信息',
dynamicTitleSearch: '动态标题搜索',
writingNotes: '书写笔记',
pleaseEnterPolicyInformation: '请输入政策信息',
policyTitleSearch: '政策标题搜索',
bodyType: '机构类型',
viewBreakdownSheet: '查看分解单',
standardNumberName: '标准号/名称',
searchByStandardNumberOrName: '根据标准号/名称查找',
standardPolicyNumber: '标准号/政策号',
standardNamePolicyName: '标准名称/政策名称',
fileName: '文件名称',
splitTime: '拆分时间',
termComparison: '条款比对',
fullTextComparison: '全文比对',
oldTermNumber: '旧条款号',
nameOfOldTerm: '旧条款名称',
newTermNumber: '新条款号',
newTermsAndConditions: '新条款名称',
lookAtTheDifferences: '查看差异',
andGetTheResultsOfTheComparison: '导出比对结果',
oldTextNumberOrName: '旧文本号/名称',
searchByOldTextNumberOrname: '根据旧文本号/名称查找',
newTextNumberOrname: '新文本号/名称',
searchByNewTextNumberOrname: '根据新文本号/名称查找',
compare: '比对',
batchDeletion: '批量删除',
oldTextState: '旧文本状态',
newTextState: '新文本状态',
collect: '收藏',
sharingStandard: '分享标准',
standardName: '标准名称',
nameOfNote: '笔记名称',
typesOfNotes: '笔记类型',
noteContent: '笔记内容',
addTime: '添加时间',
addPeople: '添加人',
pleaseEnterANoteName: '请输入笔记名称',
pleaseSelectANoteType: '请选择笔记类型',
pleaseSelectStandardType: '请选择标准类型',
relatedAttachments: '相关附件',
clickOrDragTheFileHere: '点击或拖拽文件到此处',
relatedLinks: '相关链接',
pleaseEnterTheRelevantLink: '请输入相关链接',
earlyWarningStandard: '预警标准',
earlyWarningClause: '预警条款',
dateOfEnforcement: '实施日期',
warningDate: '预警日期',
name: '名称',
content: '内容',
select: '选择',
classificationOfEarlyWarningInformation: '预警信息分类',
pleaseSelectWarningInformationClassification: '请选择预警信息分类',
pleaseSselectWarningDate: '请选择预警日期',
newsPictures: '新闻图片',
views: '浏览数',
theUsername: '用户名',
pleaseEnterYourPassword: '请输入密码',
rememberThePassword: '记住密码',
login: '登录',
forgotPassword: '忘记密码',
exit: '退出',
toDoProcess: '待办流程',
processes: '流程',
process: '处理',
selectCutOffTime: '选择截止时间',
displayAddDataList: '显示添加数据列表',
hideDisplayAddDataList: '隐藏添加数据列表',
standardNameOrFileNameTips: '根据 [标准名称/文件名称] 关键字查找',
loading: '正在登录...',
enterExportFile: '请输入导出文件名称',
exportFile: '导出文件',
standardOrFileNo: '标准号/文件号',
majorCategory: '专业分类',
batchImport: '批量导入',
oldNumber: '旧编号',
draftingDepartment: '起草部门',
collectInformationOrNot: '是否领用信息',
pleaseEnterTheOldNumber: '请输入旧编号',
pleaseEnterTheSortNumber: '请输入排序号',
standardMonth: '标准月份',
pleaseEnterStandardMonth: '请输入标准月份',
version: '版本',
pleaseEnterVersion: '请输入版本',
collectionTime: '领取时间',
pleaseSelectCollectionTime: '请选择领取时间',
recipients: '领用人',
pleaseInputTheRecipient: '请输入领用人',
pleaseEnterDraftingDepartment: '请输入起草部门',
collectOrNot: '是否领用',
enterpriseClassificationCode: '企业分类代号',
ClassificationCode: '分类代号',
viewFilesOnline: '在线查看文件',
link: '链接',
pleaseEnterTheLink: '请输入链接',
substituteDocumentNumber: '代替文件号',
searchBysubstituteDocumentNumber: '根据代替文件号查找',
separateMultipleFileNumbersWithCommasInstead: '输入多个代替文件号,以逗号隔开',
documentNumber: '文件号',
pleaseEnterTheFileNumber: '请输入文件号',
pleaseEnterTheFileName: '请输入文件名称',
englishNameOfDocument: '文件英文名称',
pleaseEnterTheEnglishNameOfTheDcument: '请输入文件英文名称',
publishingDepartment: '发布部门',
pleaseEnterThePublishingDepartment: '请输入发布部门',
documentNumberAndName: '文件号/名称',
searchByDocumentNumberAndName: '根据文件号/名称查找',
searchByDocumentName: '根据文件名称查找',
searchByDocumentNo: '根据文件号查找',
pleaseEnterTheQueryInformation: '请输入查询信息',
pleaseSelectTheDate: '请选择日期',
standardAdvancedSearch: '标准高级检索',
searchBytName: '根据名称查找',
searchByProductCategory: '根据产品类别查找',
productCategory: '产品类别',
searchByAuthenticationType: '根据认证类型查找',
authenticationType: '认证类型',
searchByCategory: '根据所属类别查找',
category: '所属类别',
searchByEnergyType: '根据能源种类查找',
energyType: '能源种类',
searchAccordingToTheDegreeOfBidding: '根据采标程度查找',
degreeOfBidding: '采标程度',
searchByReleaseDate: '根据发布日期查找',
searchHistory: '检索历史',
generalSearch: '一般检索',
searchByKeyword: '根据关键字搜索',
searchCategory: '检索类别',
standardType: '标准类型',
standardNameOrFileName: '标准名称/文件名称',
sharingStandards: '分享标准',
clauseNo: '条款号',
back: '返回',
clauseName: '条款名称',
termsAndConditions: '条款内容',
editorialTerms: '编辑条款',
implementationDateOfProductionVehicle: '在产车实施日期',
specialParameterRequirements: '特殊参数需求',
textDescription: '文字描述',
number: '数字',
isItCompulsory: '是否强制',
viewAttributeInformation: '查看属性信息',
editTerms: '编辑条款内容',
selectAddContentType: '选择添加内容类型',
tableProperties: '表格属性',
numberOfRows: '行数',
numberOfColumns: '列数',
newContents: '新增目录',
editDirectory: '编辑目录',
confirmDeletion: '确认删除',
importFile: '导入文件',
showPictures: '展示图片',
importFailed: '导入失败',
modifyInformation: '修改信息',
collection: '收藏',
cancelCollection: '取消收藏',
share: '分享',
relation: '关联',
oldTextNumberName: '旧文本号/名称',
searchBy: '根据旧文本号/名称查找',
newTextNumberName: '新文本号/名称',
searchByNewTextNumber: '根据新文本号/名称查找',
comparison: '比对',
oldDocumentTextNumber: '旧文档文本号',
oldDocumentTextName: '旧文档文本名称',
oldTextStatus: '旧文本状态',
draft: '草稿',
draftForComments: '征求意见稿',
draftForReview: '送审稿',
draftForApproval: '报批稿',
regulatoryDocument: '法规文件',
standardText: '标准文本',
newDocumentTextNumber: '新文档文本号',
newDocumentTextName: '新文档文本名称',
newTextStatus: '新文本状态',
comparisonType: '比对类型',
comparisonTime: '比对时间',
dataLoading: '数据加载中',
Loading: '加载中',
pleaseEnterName: '请输入名称',
// 雷艳辉加的
versionNumber: '版本号',
saving: '正在保存',
enterpriseStandardYear: '请选择企标实施年份',
listName: '清单名称',
listNamePlaceholder: '请输入清单名称',
isPublic: '是否公开',
byself: '是否仅自己可见',
comparisonListDrawerTitleNew: '比对清单新增',
comparisonListDrawerTitleEdit: '比对清单编辑',
comparisonListDrawerTitleView: '比对清单查看',
maintenanceListDrawerTitle: '清单维护',
characteristic: '特点',
characteristicPlaceholder: '请输入特点',
comparisonTerm: '比对项',
comparisonTermPlaceholder: '请输入比对项'
}
+669
View File
@@ -0,0 +1,669 @@
/**
* @description: 英文包
* @author: L.R.H
* @date: 2020-06-09 12:27:18
*/
export const m = {
home: 'Home',
homeTitle: 'Global standards and regulations system',
statuteBank: 'Statute Bank',
dataReport: 'Data Report',
standardTeam: 'Standard Team',
config: 'Config',
personal: 'Personal',
cloudRepository: 'CloudRepository',
retrieval: 'Retrieval',
cn: 'Chinese',
en: 'English',
jn: 'Japanese',
languageVersion: 'Language Version',
standAll: 'Domestic and foreign standards and regulations',
lawsAll: 'Domestic and foreign policies',
enterpriseStandard: 'Enterprise standard',
information: 'Trends & Information',
standSelect: 'Please enter keywords',
cloudDynamics: 'Cloud Dynamics',
localDynamics: 'Local Dynamics',
more: 'MORE',
dataCenter: 'Data Center',
domesticStandardDatabase: 'Domestic standards and regulations',
foreignStandardDatabase: 'Foreign standards and regulations',
domesticRegulationsDatabase: 'Domestic Policy',
foreignRegulationsDatabase: 'Foreign Policy',
accessStandardsAndRegulations: 'List of standards and regulations',
enterpriseStandardDatabase: 'Enterprise standards and regulations',
testItemDatabase: 'Test Project Library',
welcome: 'Welcome',
localTools: 'Local Tools',
processCenter: 'Process Center',
localAndProject: 'Local product / Project Library',
advancedSearch: 'Advanced Search',
toDoTasks: 'To Do Tasks',
peopleNum: 'Current online population',
allPeopleNum: 'Cumulative online population',
friendshipLinks: 'Friendship links',
nodeQuickFind: 'Node Quick Find',
standardCategory: 'Standard Category',
standardCategoryTips: 'Find by standard category',
standardNumAndName: 'standardNumOrstandardName',
standardNumAndNameTips: 'Search by standard number / name',
clearQuery: 'Clear Query',
export: 'Export',
exportAll: 'Export All',
add: 'Add',
bulkDelete: 'Delete Batch',
templateDownload: 'Template Download',
import: 'Import',
configurationStandard: 'Configuration Standard',
removalCriteria: 'Removal Criteria',
standNumber: 'StandNumber',
standName: 'StandName',
issueTime: 'IssueTime',
putTime: 'PutTime',
standNatureShow: 'Stand Nature',
standStateShow: 'Stand State',
action: 'Action',
see: 'View',
tableName: 'Table Name',
pleaseSelectRegion: 'Please select region',
pleaseSelectCountry: 'Please select Country',
lookUpByTableName: 'Lookup by table name',
emptyTheQuery: 'Empty the query',
creationTime: 'Creation Time',
founder: 'Founder',
accessToInformation: 'Access to information',
dataSearch: 'Data search',
theDataSource: 'The data source',
keywords: 'keywords',
searchAccordingToStandardNameDocumentNameKeyword: 'Search according to [standard name / document name] keyword',
multiAttributeSearch: 'multi-attribute search',
hideMultiAttributeSearch: 'Hide multi-attribute search',
showAddDataList: 'Show add data list',
hideAddDataList: 'Hide add data list',
byTheTime: 'By the time',
selectDeadline: 'Select deadline',
theAuthenticationType: 'The authentication type',
query: 'query',
listingItems: 'Listing items',
standardFileNo: 'Standard/file no',
standardNameFileName: 'Standard name/file name',
responsibilityDepartment: 'The responsibility department',
standardState: 'Standard state',
moveUp: 'Move up',
moveDown: 'Move Down',
downloadTemplate: 'Download the template',
newAdmittanceStandardsAndRegulations: 'New admittance standards and regulations',
temporaryStorage: 'temporaryStorage',
publish: 'publish',
dynamicTitle: 'dynamicTitle',
PleaseSelect: 'PleaseSelect',
pleaseSelectDepartment: 'pleaseSelectDepartment',
dynamicContent: 'dynamicContent',
releaseTime: 'releaseTime',
releaseDate: 'releaseDate',
messageModule: 'messageModule',
issuingAgency: 'issuingAgency',
PleaseEnterTheRelevantLink: 'PleaseEnterTheRelevantLink',
title: 'title',
creator: 'creator',
serialNumber: 'SerialNumber',
dataType: 'DataType',
standardNumberAndPolicyNumber: 'StandardNumberAndPolicyNumber',
standardNameAndPolicyName: 'StandardNameAndPolicyName',
textState: 'TextState',
conversionResults: 'conversionResults',
timeConsuming: 'timeConsuming',
searchByModule: 'searchByModule',
searchByTitle: 'searchByTitle',
delete: 'delete',
upload: 'upload',
getFiles: 'getFiles',
onlineEditing: 'onlineEditing',
pleaseEnterTheStandardNumberAndPolicyNumber: 'pleaseEnterTheStandardNumberAndPolicyNumber',
pleaseEnterTheStandardNameAndPolicyName: 'pleaseEnterTheStandardNameAndPolicyName',
searchByStandardNumberAndName: 'searchByStandardNumberAndName',
split: 'split',
pleaseSelectDataType: 'pleaseSelectDataType',
pleaseSelectTheTextState: 'pleaseSelectTheTextState',
push: 'push',
bulkCopy: 'bulkCopy',
attribute: 'attribute',
copy: 'copy',
addTo: 'addTo',
pleaseEntertheContent: 'pleaseEntertheContent',
update: 'update',
yes: 'yes',
no: 'no',
download: 'download',
downloadWithWatermark: 'downloadWithWatermark',
addContent: 'addContent',
save: 'save',
addText: 'addText',
addPicture: 'addPicture',
addTable: 'addTable',
sure: 'sure',
uploadPictures: 'uploadPictures',
pleaseEnterAPositiveInteger: 'pleaseEnterAPositiveInteger',
pleaseEnterTheTermNumber: 'pleaseEnterTheTermNumber',
onlyTermNameIsAllowed: 'onlyTermNameIsAllowed',
onlyPositiveIntegersAreAllowed: 'onlyPositiveIntegersAreAllowed',
selectFile: 'selectFile',
confirm: 'confirm',
systemAssembly: 'systemAssembly',
subfield: 'subfield',
pleaseEnterOptions: 'pleaseEnterOptions',
natureOfStandardsDocuments: 'natureOfStandardsDocuments',
area: 'area',
countryRegion: 'countryRegion',
typesOfEnergy: 'typesOfEnergy',
standardAdoptionDegree: 'standardAdoptionDegree',
standardDocumentStatus: 'standardDocumentStatus',
enterpriseClassification: 'enterpriseClassification',
dynamicNotificationClassification: 'dynamicNotificationClassification',
standardVersion: 'The standard version',
abstract: 'Content Summary',
standardEnglishName: 'Standard English Name',
normativeReferenceStandard: 'Normative reference standard',
selectApplicableArea: 'Please select applicable area',
selectTheApplicableCountry: 'Please select the applicable country',
enterpriseStandardClassification: 'Enterprise standard classification',
majorClassification: 'Major Classification',
standardNumber: 'Standard Number',
standardYear: 'Standard Year',
implementationYear: 'Implementation year of enterprise standard',
initialDate: 'Initial date of enterprise standard',
substituteStandardNumber: 'Substitute standard number',
replacedStandardNumber: 'Replaced standard number',
keyWord: 'KeyWord',
selectStandardCategory: 'Please select the standard category',
selectStandardClassification: 'Please select enterprise standard classification',
selectMajorCategory: 'Please select the major category',
pleaseSelect: 'please select',
enterTheStandardNumber: 'Please enter the standard number',
enterStandardName: 'Please enter a standard name',
enterStandardEnglishName: 'Please enter a standard English name',
enterStandardYear: 'Please enter a standard year',
enterNormativeReferenceStandards: 'Please enter normative reference standards',
selectReleaseDate: 'Please select a release date',
selectImplementationDate: 'Please select the implementation date',
enterTheImplementationYear: 'Please enter the implementation year of the enterprise standard',
enterTheStartDate: 'Please enter the start date of the bid',
selectStandardStatus: 'Please select standard status',
selectTheStandardNature: 'Please select the standard nature',
enterMultipleStandardNumbers: 'Enter multiple standard Numbers separated by commas',
selectTheStandard: 'Please select the standard nature',
pleaseEnterKeyWords: 'Please enter keywords',
enterSummaryOfTheContent: 'Please enter a summary of the content',
findByContentSummary: 'Find by content summary',
lookUpByAlternativeCriteria: 'Look up by alternative criteria',
findByTheResponsibilityDepartment: 'Find by the responsibility department',
findByNormativeReferenceStandard: 'Find by normative reference standard',
lookupByStandardStatus: 'Lookup by standard status',
findByPrincipalCompiler: 'Find by principal compiler',
contentInThisPaper: 'Content in this paper',
substituteForStandNumber: 'SubstituteForStandNumber',
theResponsibilityDepartment: 'TheResponsibilityDepartment',
principalCompiler: 'principalCompiler',
stand: 'Nature of standards / documents',
region: 'Region',
nationalArea: 'Country / Region',
applicableModels: 'Applicable Models',
applicableCertification: 'Applicable Certification',
professionalField: 'Professional Field',
energyTypes: 'EnergyTypes',
assemblyClassification: 'AssemblyClassification',
degreeStandard: 'DegreeStandard',
fileState: 'FileState',
enterpriseCategory: 'EnterpriseCategory',
enterpriseStandardCategory: 'EnterpriseStandardCategory',
associatedSystem: 'AssociatedSystem',
associatedAssembly: 'AssociatedAssembly',
associatedComponents: 'AssociatedComponents',
noticeAndClassify: 'NoticeAndClassify',
professionalClassification: 'ProfessionalClassification',
option: 'Option',
pleaseEnterTheOption: 'PleaseEnterTheOption',
describe: 'Describe',
operation: 'Operation',
dataAcquisition: 'DataAcquisition',
sortNumber: 'SortNumber',
cancel: 'Cancel',
submit: 'Submit',
newInformation: 'NewInformation',
editInformation: 'EditInformation',
seeInformation: 'SeeInformation',
determine: 'Determine',
pleaseSelectApplicableArea: 'PleaseSelectApplicableArea',
country: 'Country',
itemNumber: 'ItemNumber',
entryName: 'EntryName',
clauseRequirements: 'ClauseRequirements',
keyPointsOfimplementation: 'KeyPointsOfimplementation',
partsInvolved: 'PartsInvolved',
specialEffectiveDate: 'SpecialEffectiveDate',
pleaseSelectTheApplicableModel: 'PleaseSelectTheApplicableModel',
pleaseSelectEnergyType: 'PleaseSelectEnergyType',
responsibleDepartment: 'ResponsibleDepartment',
searchAccordingToResponsibleDepartment: 'searchAccordingToResponsibleDepartment',
newModelImplementationDate: 'NewModelImplementationDate',
implementationDateOfVehicleInProduction: 'ImplementationDateOfVehicleInProduction',
referenceStandard: 'ReferenceStandard',
associatedFiles: 'AssociatedFiles',
newStandardEntry: 'NewStandardEntry',
welcomeToTheRegulatoryThinkTank: 'Welcome to the Regulatory think tank',
// 雷艳辉加的
searchRecommend: 'Please enter a keyword ',
More: 'More',
domesticAndForeignStandardsAndRegulations: 'Domestic and foreign standards and regulations',
domesticAndForeignPolicy: 'Domestic and foreign policy',
newsAndInformation: 'News & Information',
// 添加---删多的
customerType: 'CustomerType',
nameOfPersonnel: 'NameOfPersonnel',
pleaseEnterTheNameOfThePerson: 'pleaseEnterTheNameOfThePerson',
pleaseEnterTheSystemAccountNumber: 'PleaseEnterTheSystemAccountNumber',
pleaseEnterThePersonnelNumber: 'PleaseEnterThePersonnelNumber',
userPassword: 'UserPassword',
pleaseEnterUserPassword: 'PleaseEnterUserPassword',
enterThePasswordAgain: 'EnterThePasswordAgain',
pleaseEnterThePasswordAgain: 'PleaseEnterThePasswordAgain',
pleaseSelectARole: 'PleaseSelectARole',
pleaseEnterThePhoneNumber: 'PleaseEnterThePhoneNumber',
pleaseEnterTheOfficePhoneNumber: 'PleaseEnterTheOfficePhoneNumber',
eMail: 'EMail',
pleaseEnterEmailAddress: 'PleaseEnterEmailAddress',
userStatus: 'UserStatus',
pleaseSelectStatus: 'PleaseSelectStatus',
type: 'Type',
edit: 'Edit',
byAccount: 'ByAccount',
byStatus: 'ByStatus',
userInformation: 'UserInformation',
accountNumber: 'AccountNumber',
synchronizationTime: 'SynchronizationTime',
warningTimeSetting: 'WarningTimeSetting',
threeMonths: 'ThreeMonths',
sixMonths: 'SixMonths',
oneYear: 'OneYear',
twoyear: 'Twoyear',
empty: 'Empty',
preservation: 'Preservation',
search: 'Search',
conversionTime: 'ConversionTime',
findByRegion: 'findByRegion',
findByCountryAndRegion: 'findByCountryAndRegion',
searchByStandardName: 'searchByStandardName',
searchByStandardNumber: 'searchByStandardNumber',
searchByStandardCategory: 'searchByStandardCategory',
searchAccordingToProfessionalField: 'searchAccordingToProfessionalField',
findByStandardNature: 'findByStandardNature',
searchAccordingToThApplicableModel: 'searchAccordingToThApplicableModel',
searchByStandardOrNumber: 'searchByStandardOrNumber',
pleaseEnterThNameOfTheExportFile: 'pleaseEnterThNameOfTheExportFile',
pleaseSelectArea: 'pleaseSelectArea',
pleaseSelectTheAppropriateModel: 'pleaseSelectTheAppropriateModel',
pleaseSelectTheStandardCategory: 'pleaseSelectTheStandardCategory',
pleaseEnterAStandardYear: 'pleaseEnterAStandardYear',
pleaseEnterAStandardEnglishName: 'pleaseEnterAStandardEnglishName',
pleaseEnterTheSubstituteStandardNumber: 'pleaseEnterTheSubstituteStandardNumber',
pleaseEnterTheStandardNumberInstead: 'pleaseEnterTheStandardNumberInstead',
pleaseEnterTheInternationalStandardNumber: 'pleaseEnterTheInternationalStandardNumber',
pleaseSelectBidLevel: 'pleaseSelectBidLevel',
pleaseSelectTheEnergyType: 'pleaseSelectTheEnergyType',
pleaseSelectTheApplicableCertification: 'pleaseSelectTheApplicableCertification',
pleaseSelectTheReleaseDate: 'pleaseSelectTheReleaseDate',
pleaseSelectAnImplementationDate: 'pleaseSelectAnImplementationDate',
pleaseSelectTheImplementationDateOfTheNewModelVehicle: 'pleaseSelectTheImplementationDateOfTheNewModelVehicle',
implementationDateOfNewProductionVehicle: 'implementationDateOfNewProductionVehicle',
pleaseSelectTheImplementationDateOfRegistrationVehicle: 'pleaseSelectTheImplementationDateOfRegistrationVehicle',
pleaseEnterTheDraftingUnit: 'pleaseEnterTheDraftingUnit',
pleaseEnterTheGrassMaker: 'pleaseEnterTheGrassMaker',
PleaseSelectYourFieldOfExpertise: 'PleaseSelectYourFieldOfExpertise',
pleaseEnterComments: 'pleaseEnterComments',
searchByTestItemName: 'searchByTestItemName',
projectCode: 'projectCode',
testObject: 'testObject',
testItemName: 'testItemName',
standardStatus: 'standardStatus',
pleaseEntertheName: 'pleaseEntertheName',
pleaseSelectTheImplementationDateOfNewModelCar: 'pleaseSelectTheImplementationDateOfNewModelCar',
fieldOfExpertise: 'fieldOfExpertise',
standardOrNumber: 'standardOrNumber',
adoptInternationalStandardNumber: 'adoptInternationalStandardNumber',
implementationDate: 'implementationDate',
implementationDateOfNewModelCar: 'implementationDateOfNewModelCar',
implementationDateOfProductionVehicle: 'implementationDateOfProductionVehicle',
implementationDateOfRegistrationVehicle: 'implementationDateOfRegistrationVehicle',
draftingUnit: 'draftingUnit',
draftsman: 'draftsman',
standardText: 'standardText',
standardTranslation: 'standardTranslation',
draft: 'draft',
draftForComments: 'draftForComments',
draftForReview: 'draftForReview',
draftForApproval: 'draftForApproval',
contentSummary: 'contentSummary',
subordinateSuperior: 'Subordinate superior',
departmentName: 'Department name',
enterDepartmentName: 'Please enter department name',
DepartmentAbbreviation: 'Department abbreviation',
enterDepartmentAbbreviation: 'Please enter the Department abbreviation',
departmentType: 'Department type',
room: 'Room',
section: 'Section',
department: 'Department',
subsidiary: 'Subsidiary',
selectDepartmentType: 'Please select Department type',
departmentProfile: 'Department profile',
enterDepartmentDescription: 'Please enter department description',
personnelName: 'Name of personnel',
byPersonName: 'By person name',
role: 'Role',
byRole: 'By role',
state: 'State',
byState: 'By state',
setUpRoles: 'Set up roles',
organizationType: 'Organization type',
roomLevel: 'Room level',
ministry: 'Ministry',
level: 'Level',
systemAccount: 'system account',
personnelNumber: 'Personnel number',
departments: 'Departments',
email: 'E-mail',
officePhone: 'Office phone',
phoneNumber: 'phone number',
fax: 'Fax',
postalAddress: 'postal address',
disabled: 'Disabled',
normal: 'Normal',
modificationTime: 'Modification time',
gettingList: 'Getting a list of people',
bodyType: 'Body type',
basicInformation: 'Basic information',
substitutionAndBidAcquisition: 'Substitution and bid acquisition relationship',
textInformation: 'Text information',
closeToTheStandard: 'Close to the standard',
listOfCloseCriteria: 'List of Close criteria',
none: 'Nothing',
downloadWithWaterMark: 'Download (with watermark)',
standardDecompositionSheet: 'Standard decomposition sheet',
outOfStock: 'be out of stock at the moment',
typeOfEnergy: 'Types of energy',
draftForComment: 'Draft for comment',
rangeOfApplication: 'range of application ',
theAssociatedFiles: 'The associated files',
contentAbstract: 'Content abstract',
associatedProcess: 'Associated process',
standardCommentSeeking: 'Standard comment seeking approval process',
standardsAndRegulationsNotice: 'Standards and regulations implementation notice and inspection process',
standardDetails: 'Standard details',
theStandardTranslation: 'The standard translation',
remark: 'remark',
pleaseSelectedDepartment: 'Please select a department',
searchByItemNameRequirement: 'Search by item name/requirement',
findParts: 'Find according to involved parts',
entryNumber: 'Entry number',
implementationPoints: 'Implementation points',
newModelVehicle: 'Date of implementation of the new model vehicle',
onTheVehicleDate: 'On the vehicle implementation date',
operating: 'Operating',
standardNo: 'StandardNo',
viewBreakdownSheet: 'View breakdown sheet',
nameStandard: 'NameStandard',
theImportFile: 'theImportFile',
findByFileName: 'FindByFileName',
findByFileNumber: 'FindByFileNumber',
searchByAreaOfExpertise: 'SearchByAreaOfExpertise',
findByStandardCategory: 'FindByStandardCategory',
lookUpByStandardNumber: 'LookUpByStandardNumber',
saveChanges: 'SaveChanges',
clearAllBrowsingHistory: 'ClearAllBrowsingHistory',
checkAll: 'CheckAll',
collectedUpdates: 'CollectedUpdates',
pleaseEnterDynamicInformation: 'PleaseEnterDynamicInformation',
writingNotes: 'WritingNotes',
pleaseEnterPolicyInformation: 'PleaseEnterPolicyInformation',
policyTitleSearch: 'PolicyTitleSearch',
lookUpByStandardName: 'LookUpByStandardName',
theUsername: 'The user name',
pleaseEnterYourPassword: 'Please enter your password',
rememberThePassword: 'Remember the password',
login: 'Login',
forgotPassword: 'Forgot password',
exit: 'Exit',
toDoProcess: 'To Do Process',
process: 'Process',
selectCutOffTime: 'Select cut-off time',
displayAddDataList: 'Display add data list',
hideDisplayAddDataList: 'Hide add data list',
standardNameOrFileNameTips: 'Search standard Name/File Name',
loading: 'Loading...',
enterExportFile: 'Please enter the name of the export file',
standardOrFileNo: 'Standard/file no',
remarks: 'Remarks',
roleName: 'Role name',
pleaseEnterTheRoleName: 'Please enter the role name',
configureRoleResources: 'Configure role resources',
configureResourcePermissions: 'Configure resource permissions',
dataProcessing: 'Data processing',
roleDescription: 'Role description',
enable: 'enable',
disable: 'disable',
researchInstituteUsers: 'Research Institute users',
nonGraduateUsers: 'Non graduate users',
configurationAdministrator: 'Configuration administrator',
notYet: 'Not yet',
operator: 'Operator',
operationTime: 'Operation time',
systemMenu: 'system menu',
gettingSystemMenu: 'Getting system menu',
resourcePermissions: 'Resource permissions',
gettingMenu: 'Getting menu',
getting: 'Getting',
pleaseEnterTheRoleDescription: 'Please enter the role description',
roleType: 'Role type',
pleaseSelectRoleType: 'Please select role type',
roleStatus: 'Role status',
pleaseSelectRoleStatus: 'Please select role status',
addRoleInformation: 'Add role information',
editRoleInformation: 'Edit role information',
clauseNo: 'Clause no',
back: 'back',
clauseName: 'Clause name',
sharingStandards: 'Sharing standards',
editorialTerms: 'Editorial terms',
specialParameterRequirements: 'Special parameter requirements',
textDescription: 'Text description',
number: 'number',
isItCompulsory: 'Is it compulsory',
viewAttributeInformation: 'View Attribute Information',
editTerms: 'Edit terms',
termsAndConditions: 'Terms and conditions',
selectAddContentType: 'Select add content type',
tableProperties: 'Table properties',
numberOfRows: 'number of rows',
numberOfColumns: 'number of columns',
newContents: 'new contents',
editDirectory: 'edit directory',
showPictures: 'show pictures',
importFailed: 'import failed',
modifyInformation: 'Modify information',
relation: 'relation',
oldTextNumberName: 'Old text number/name',
searchBy: 'Search by old text number / name',
newTextNumberName: 'New text number / name',
searchByNewTextNumber: 'Search by new text number / name',
comparison: 'comparison',
oldDocumentTextNumber: 'Old document text number',
oldDocumentTextName: 'Old document text name',
oldTextStatus: 'Old text status',
regulatoryDocument: 'Regulatory documents',
newDocumentTextNumber: 'New document text number',
newDocumentTextName: 'New document text name',
newTextStatus: 'New text status',
comparisonType: 'Comparison type',
comparisonTime: 'Comparison time',
dataLoading: 'Data loading',
// 雷艳辉加的
versionNumber: 'Version number',
// 雷艳辉加的
standardNumberName: 'standardNumberName',
searchByStandardNumberOrName: 'searchByStandardNumberOrName',
standardPolicyNumber: 'StandardPolicyNumber',
standardNamePolicyName: 'standardNamePolicyName',
fileName: 'FileName',
splitTime: 'SplitTime',
termComparison: 'termComparison',
fullTextComparison: 'FullTextComparison',
oldTermNumber: 'OldTermNumber',
nameOfOldTerm: 'NameOfOldTerm',
newTermNumber: 'NewTermNumber',
newTermsAndConditions: 'NewTermsAndConditions',
lookAtTheDifferences: 'LookAtTheDifferences',
oldTextNumberOrName: 'OldTextNumberOrName',
searchByOldTextNumberOrname: 'SearchByOldTextNumberOrname',
newTextNumberOrname: 'NewTextNumberOrname',
searchByNewTextNumberOrname: 'SearchByNewTextNumberOrname',
compare: 'Compare',
batchDeletion: 'BatchDeletion',
oldTextState: 'OldTextState',
newTextState: 'NewTextState',
collect: 'Collect',
andGetTheResultsOfTheComparison: 'AndGetTheResultsOfTheComparison',
standardName: 'StandardName',
nameOfNote: 'NameOfNote',
typesOfNotes: 'TypesOfNotes',
noteContent: 'NoteContent',
addTime: 'AddTime',
addPeople: 'AddPeople',
pleaseEnterANoteName: 'PleaseEnterANoteName',
pleaseSelectANoteType: 'PleaseSelectANoteType',
pleaseSelectStandardType: 'PleaseSelectStandardType',
relatedAttachments: 'RelatedAttachments',
clickOrDragTheFileHere: 'ClickOrDragTheFileHere',
relatedLinks: 'RelatedLinks',
pleaseEnterTheRelevantLink: 'PleaseEnterTheRelevantLink',
earlyWarningStandard: 'EarlyWarningStandard',
earlyWarningClause: 'EarlyWarningClause',
dateOfEnforcement: 'DateOfEnforcement',
warningDate: 'WarningDate',
name: 'Name',
content: 'Content',
select: 'Select',
classificationOfEarlyWarningInformation: 'ClassificationOfEarlyWarningInformation',
pleaseSelectWarningInformationClassification: 'PleaseSelectWarningInformationClassification',
newsPictures: 'NewsPictures',
views: 'Views',
standardNameOrFileName: 'Standard name/file name',
majorCategory: 'majorCategory',
batchImport: 'batchImport',
oldNumber: 'oldNumber',
draftingDepartment: 'draftingDepartment',
collectInformationOrNot: 'collectInformationOrNot',
pleaseEnterTheOldNumber: 'pleaseEnterTheOldNumber',
pleaseEnterTheSortNumber: 'pleaseEnterTheSortNumber',
standardMonth: 'standardMonth',
pleaseEnterStandardMonth: 'pleaseEnterStandardMonth',
version: 'version',
pleaseSelectTheNatureOfTheDocument: 'pleaseSelectTheNatureOfTheDocument',
pleaseEnterVersion: 'pleaseEnterVersion',
collectionTime: 'collectionTime',
pleaseSelectCollectionTime: 'pleaseSelectCollectionTime',
recipients: 'recipients',
pleaseInputTheRecipient: 'pleaseInputTheRecipient',
pleaseEnterDraftingDepartment: 'pleaseEnterDraftingDepartment',
collectOrNot: 'collectOrNot',
enterpriseClassificationCode: 'enterpriseClassificationCode',
ClassificationCode: 'ClassificationCode',
viewFilesOnline: 'viewFilesOnline',
fullTextOfAnnex: 'fullTextOfAnnex',
documentNumber: 'documentNumber',
link: 'link',
pleaseSelectFileStatus: 'pleaseSelectFileStatus',
pleaseEnterTheRemarks: 'pleaseEnterTheRemarks',
pleaseSelectThePersonYouWantToShare: 'pleaseSelectThePersonYouWantToShare',
collection: 'collection',
cancelCollection: 'cancelCollection',
sharingPolicy: 'sharingPolicy',
share: 'share',
confirmDeletion: 'confirmDeletion',
processes: 'processes',
pleaseSelectimplementationDateOfProductionVehicle: 'pleaseSelectimplementationDateOfProductionVehicle',
pleaseSelectimplementationDateOfNewProductionVehicle: 'pleaseSelectimplementationDateOfNewProductionVehicle',
pleaseEnterTheLink: 'pleaseEnterTheLink',
allocationPolicy: 'allocationPolicy',
deletePolicy: 'deletePolicy',
sharingStandard: 'sharingStandard',
interpretationOfRegulationsAndQuotationOfStandards: 'interpretationOfRegulationsAndQuotationOfStandards',
importFile: 'importFile',
testItems: 'testItems',
majorClassificationCode: 'majorClassificationCode',
exportName: 'exportName',
exportFile: 'exportFile',
pleaseEnterTheFileNumber: 'pleaseEnterTheFileNumber',
pleaseEnterTheFileName: 'pleaseEnterTheFileName',
searchBysubstituteDocumentNumber: 'searchBysubstituteDocumentNumber',
substituteDocumentNumber: 'substituteDocumentNumber',
englishNameOfDocument: 'englishNameOfDocument',
separateMultipleFileNumbersWithCommasInstead: 'separateMultipleFileNumbersWithCommasInstead',
pleaseEnterTheEnglishNameOfTheDcument: 'pleaseEnterTheEnglishNameOfTheDcument',
publishingDepartment: 'publishingDepartment',
pleaseEnterThePublishingDepartment: 'pleaseEnterThePublishingDepartment',
documentNumberAndName: 'documentNumberAndName',
searchByDocumentNumberAndName: 'searchByDocumentNumberAndName',
searchByDocumentName: 'searchByDocumentName',
searchByDocumentNo: 'searchByDocumentNo',
pleaseEnterTheQueryInformation: 'pleaseEnterTheQueryInformation',
pleaseSelectTheDate: 'pleaseSelectTheDate',
standardAdvancedSearch: 'standardAdvancedSearch',
searchBySubstituteStandardNumber: 'searchBySubstituteStandardNumber',
searchByNumber: 'searchByNumber',
searchBytName: 'searchBytName',
searchBykeyWord: 'searchBykeyWord',
findAccordingToApplicableCertification: 'findAccordingToApplicableCertification',
searchAccordingToStandardEnglishName: 'searchAccordingToStandardEnglishName',
searchByProductCategory: 'searchByProductCategory',
productCategory: 'productCategory',
viewPolicyEntry: 'viewPolicyEntry',
searchByAuthenticationType: 'searchByAuthenticationType',
authenticationType: 'authenticationType',
startTime: 'startTime',
endTime: 'endTime',
Loading: 'Loading',
structuredDatabase: 'structuredDatabase',
searchByCategory: 'searchByCategory',
category: 'category',
searchByEnergyType: 'searchByEnergyType',
searchAccordingToTheDegreeOfBidding: 'searchAccordingToTheDegreeOfBidding',
searchByReleaseDate: 'searchByReleaseDate',
noQueryResult: 'noQueryResult',
applyForPurchase: 'applyForPurchase',
recommendItToMe: 'recommendItToMe',
searchHistory: 'searchHistory',
generalSearch: 'generalSearch',
searchByKeyword: 'searchByKeyword',
searchCategory: 'searchCategory',
standardType: 'standardType',
saving: 'saving',
pleaseEnterName: 'Please Enter Name',
dynamicData: 'Dynamic data module',
enterpriseStandardYear: 'Please select the implementation year of the enterprise standard',
listName: 'List Name',
listNamePlaceholder: 'Please Enter List Name',
isPublic: 'public',
byself: 'Visible only to oneself',
comparisonListDrawerTitleNew: 'New comparison list',
comparisonListDrawerTitleEdit: 'Edit comparison list',
comparisonListDrawerTitleView: 'View comparison list',
maintenanceListDrawerTitle: 'Maintenance list',
characteristic: 'Characteristic',
characteristicPlaceholder: 'Please Enter Characteristic',
comparisonTerm: 'Comparison Term',
comparisonTermPlaceholder: 'Please Enter Comparison Term'
}
+67
View File
@@ -0,0 +1,67 @@
/**
* @description: 日语包
* @author: L.R.H
* @date: 2020-06-09 01:31:02
*/
export const m = {
home: '最初のページ',
statuteBank: '標準法規庫',
dataReport: 'データレポート',
standardTeam: '標準チーム',
config: '設定管理',
personal: 'センター',
retrieval: '検索',
cloudRepository: '雲端資源庫',
cn: '中国語',
en: '英語',
jn: '日本語',
languageVersion: '言語バージョン',
standAll: '国内外標準法規',
lawsAll: '国内外の政策',
enterpriseStandard: '企業基準',
information: 'ダイナミック&資料',
standSelect: 'キーワードを入力してください',
cloudDynamics: '雲の動き',
localDynamics: 'ローカルダイナミック',
more: 'もっと',
dataCenter: '資料センター',
domesticStandardDatabase: '国内標準法規',
foreignStandardDatabase: '海外標準法規',
domesticRegulationsDatabase: '国内政策',
foreignRegulationsDatabase: '海外政策',
enterpriseStandardDatabase: '企業標準法規',
accessStandardsAndRegulations: '標準法規リスト',
testItemDatabase: '試験項目ライブラリ',
welcome: '歓迎',
localTools: 'ローカルツール',
processCenter: 'プロセスセンター',
localAndProject: 'ローカル製品/プロジェクトライブラリ',
advancedSearch: '高度検索',
toDoTasks: '任務を待つ',
peopleNum: '現在のオンライン人数',
allPeopleNum: 'オンライン人数を累計する',
friendshipLinks: '相互リンク',
nodeQuickFind: 'ノードのクイック検索',
standardCategory: '標準カテゴリ',
standardCategoryTips: '標準カテゴリで検索',
standardNumAndName: '標準番号/名前',
standardNumAndNameTips: '標準番号/名前で検索',
clearQuery: '空のクエリ',
export: 'エクスポート',
exportAll: 'すべてをエクスポート',
add: 'ついか',
bulkDelete: 'ロットさくじょ',
templateDownload: 'テンプレートのダウンロード',
import: 'インポート',
configurationStandard: '設定基準',
removalCriteria: '標準を削除',
standNumber: '標準番号',
standName: '標準の名前',
issueTime: '公開日',
putTime: '実施日',
standNatureShow: '標準的性質',
standStateShow: '標準状態',
action: 'オペレーション',
see: '表示',
edit: '編集'
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.6 KiB

+47
View File
@@ -0,0 +1,47 @@
/*查看抽屉公共样式 drawer*/
.check-item-row {
display: flex;
justify-content: space-between;
height: 100%;
background: #F6F7F9;
.check-item-col1{
display: flex;
padding: 4px 30px;
width: 49%;
line-height: 32px;
background: #EBF1F5;
font-family: Helvetica, 'Hiragino Sans GB', 'Microsoft Yahei', '\5FAE\8F6F\96C5\9ED1', Arial, sans-serif !important;
}
.check-item-col2{
display: flex;
padding: 4px 30px;
width: 49%;
line-height: 32px;
background: #fff;
font-family: Helvetica, 'Hiragino Sans GB', 'Microsoft Yahei', '\5FAE\8F6F\96C5\9ED1', Arial, sans-serif !important;
}
.check-item-label, .check-item-value{
display: inline-block;
}
.check-item-label{
width: 80px;
color: #515a6e;
font-weight: bold;
.ellipsis();
}
.check-item-value{
width: calc(~'100% - 85px');
color: #909bb3;
.ellipsis();
}
}
.check-draw{
.el-drawer__body{
//background:#F6F7F9;
//background-image: url("~@/assets/images/check.png");
background-repeat: no-repeat;
background-position: bottom center;
//padding-top: 20px;
}
}
+394
View File
@@ -0,0 +1,394 @@
/*liuyan 全局公共样式*/
@import './style';
@import './mixins';
// 左侧菜单样式
@import './navMenu';
// tree组件父组件内样式
@import './tree';
// 查询条件 form表单
@import "./formSearch";
// 查询区域样式,按钮样式
@import './newStyle';
// table公共样式
@import "./table";
// 抽屉公共样式
@import "./drawer";
// 搜索下拉框公共样式
@import "./searchInput";
// 查看弹窗里的样式
@import "./check";
// 提示消息弹窗
@import "./messageBox";
// dialog公共样式
@import "./dialog";
// 流程公共样式
@import "./process";
// 滚动条美化
@import './scroll';
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@primary-color: @baseColor;
/**
* @description: 主题定制mixins(注意:所有要作为主题的样式,都写在这个mixins里,然后根据主题给该方法传入自定义颜色)
* @author: chenxiaoxi
* @params:
* 1. @baseColor: 基础颜色(不可使用过渡和图片)
* 2. @bgColor: 背景色
* @date: 2018-09-01 17:23:58
*/
.my-theme (@baseColor: @baseColor, @bgColor: @bgColor) {
}
// 主题1
.theme-one{
.my-theme();
}
#app{
&.theme-one {
background: url('~@/assets/images/shangqi/home/home-bg.png') no-repeat;
background-size: cover;
}
input:focus{
border-color: #DCDFE6;
outline: 0;
}
}
// 返回按钮样式
.back {
width: 30px;
height: 30px;
border-radius: 50%;
background: #1E89FF;
display: inline-block;
line-height: 35px;
text-align: center;
cursor: pointer;
position: relative;
margin-right: 5px;
.el-icon-back, .el-icon-right{
color: #ffffff;
font-size: 20px;
font-weight: 600;
}
}
.el-divider-marginTop{
margin-top: 0;
}
/*details详情页公共样式*/
.details-container{
background: #ffffff;
.details-header{
.flex();
align-items: center;
.title {
font-weight: bold;
width: 100%;
font-size: 16px;
flex: 1;
.ellipsis();
padding: 0 15px;
}
.standard-details-header-title{
font-weight: bold;
font-size: 16px;
flex: 1;
padding: 0 20px;
.ellipsis();
}
}
.laws-details-content{
margin-top: 15px;
.content-box{
.flex();
flex-direction: column;
//.bg();
padding: 10px;
.flex-row-2 {
-ms-flex: 1!important;
flex: 1!important;
overflow: hidden;
}
.flex-row {
-ms-flex: 1 1 100%!important;
flex: 1 1 100%!important;
}
.content-row{
.flex();
//line-height: 48px;
min-height: 48px;
overflow: hidden;
&:last-child{
margin-bottom: 0;
}
.content-col{
flex: 0 0 25%;
.flex();
.content-label{
font-weight: 600;
font-size: 12px;
width: 148px;
text-align: center;
background: #F2F5F9;
.flex();
align-items: center;
justify-content: center;
border: 0.5px solid #dedede;
min-height: 48px;
}
.content-info{
line-height: normal;
flex: 1;
padding: 5px 15px;
font-size: 13px;
.flex();
align-items: center;
justify-content: left;
border: 0.5px solid #dedede;
word-break: break-all;
overflow: hidden;
.res-type-content{
ul{
display: inline-flex;
li{
margin-left: 10px;
}
}
}
}
}
}
}
.border-right-hide{
border-right: 1px solid transparent !important;
}
.border-bottom-hide{
border-bottom: 1px solid transparent !important;
}
}
.el-divider{
display: block;
height: 3px;
width: 100%;
margin: 10px 0;
background-color: #3391CE;
}
}
/*ueditor编辑器样式*/
.ueditor-style{
.el-form-item__content{
line-height: 20px;
}
}
.tree-box{
background: #f3f3f3;
margin-bottom: 28px;
.el-form-item{
margin-bottom: 0;
.el-form-item__label{
width: 100% !important;
text-align: left !important;
background: #28629b;
font-size: 14px !important;
color: #FFFFFF;
text-indent: 12px;
font-weight: 600;
}
.el-form-item__content{
margin-left: unset !important;
width: 100% !important;
}
.tree-container{
padding: 5px;
.tree-container-right{
background: #FFFFFF;
width: 45% !important;
}
.selected-list{
background: #FFFFFF;
width: 45% !important;
}
.transfer-group{
width: 10% !important;
}
}
}
}
/*目标市场准入清单 css*/
#accessStandardsAndRegulations{
.el-date-editor{
width: 100%;
}
}
/*登录页*/
.cloud-login{
.login-form-content{
//padding-top: 4.5vh;
width: 22vw;
height: 100%;
//border-top: 1px solid #FFF;
.login-form-input{
margin-bottom: 3.5vh;
height: 6.25vh;
&:nth-child(2){
margin-bottom: 0;
.el-input__inner{
background-image: url("~@/assets/images/password.png") !important;
}
}
.el-input{
height: 100%;
.flex();
align-items: center;
.el-input__inner{
height: inherit;
border-radius: 70px;
background: #EEF8FA;
font-size: 16px;
padding: 0 25px 0 50px;
background-image: url("~@/assets/images/user.png");
background-repeat: no-repeat;
background-position: 18px center;
background-size: 18px;
border: 1px solid transparent;
}
}
}
.login-form-control{
margin-top: 2.5vh;
padding: 0 5px;
.flex();
justify-content: space-between;
& > span{
color: #fff;
font-size: 14px;
.el-checkbox{
color: #fff;
&:hover{
cursor: pointer;
color: rgba(248,181,81,1);
}
.is-checked{
.el-checkbox__inner{
background-color: #f8b551;
border-color: #f8b551;
}
}
}
.is-checked{
.el-checkbox__label{
color: #f8b551;
}
}
&:hover{
cursor: pointer;
color: rgba(248,181,81,1);
}
}
}
.login-form-submit{
position: relative;
margin-top: 2.2vh;
height: 5.5vh;
line-height: 5.5vh;
color: #FFF;
font-size: 20px;
text-align: center;
background: rgba(248,181,81,1);
border-radius: 70px;
&::before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 70px;
background: rgba(255,255,255,.25);
display: none;
}
&:hover{
cursor: pointer;
&::before{
display: block;
}
}
}
}
}
.comment-history-list{
li{
padding-left: 30px;
padding-bottom: 10px;
margin-bottom: 10px;
font-size: 14px;
border-bottom: 1px dashed #DDD;
.comment-history-top{
.flex();
justify-content: space-between;
margin-bottom: 5px;
}
.comment-history-bottom{
margin-top: 5px;
&>div{
.flex();
p{
flex: 1;
.ellipsis();
}
}
}
}
}
.action-bar{
border-top: 3px solid #f4f4f4;
width: 100%;
line-height: 50px;
background: #fff;
padding: 0 10px;
.el-button+.el-button {
margin-left: 5px;
}
}
.action-bar1{
width: 100%;
line-height: 50px;
background: #fff;
padding: 0 10px;
.el-button+.el-button {
margin: 0;
}
}
/*高级查询 样式*/
.high-search-form {
/deep/.el-form-item__label {
//width: 100px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
@media screen and (min-width: 1920px) {
width: 140px;
}
}
}
/*悬浮展示tooltip样式*/
.el-tooltip__popper{
max-width: calc(~'100% - 232px');
}
.clearfix{
&:after {
clear: both;
}
&:after, &:before {
display: table;
content: "";
}
}
.clearfix{
*zoom: 1;/*ie6清除浮动的方式 *号只有IE6-IE7执行,其他浏览器不执行*/
}
+29
View File
@@ -0,0 +1,29 @@
/*dialog公共样式*/
.v-class{
.el-dialog{
border-radius: 6px;
.el-dialog__header{
width: 100%;
font-size: 14px;
color: #17233d;
font-weight: bold;
border-bottom: 1px solid #e5e5e5;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
.el-dialog__title{
font-size: 16px;
}
}
.el-dialog__body{
padding: 15px 20px;
}
.el-dialog__footer{
.el-button{
//width: 60px;
height: 32px;
padding: 8px 23px;
}
}
}
}
+139
View File
@@ -0,0 +1,139 @@
/*抽屉公共样式*/
.el-drawer-body{
.el-drawer__wrapper{
/deep/ :focus {
outline: 0;
}
.el-drawer__header{
margin-bottom: 0;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
color: #333333;
border-bottom: 1px solid #e5e5e5;
}
.el-drawer__body{
height: 100%;
overflow-y: auto;
display: flex;
flex-direction: column;
// 底部带 提交、取消按钮
.demo-drawer-content{
padding: 0 19px;
//height: calc(~'100% - 50px');
overflow-y: auto;
flex: auto;
display: flex;
flex-direction: column;
}
.maintenance-drawer-content {
}
/*查看抽屉 样式*/
.see-drawer-content{
padding: 0 19px;
.see-drawer-div{
border-bottom: 1px solid #E5E5E5;
.see-drawer-name{
display: inline-block;
width: 130px;
height: 50px;
line-height: 50px;
font-size: 16px;
font-weight: bold;
color: #333333;
vertical-align: top;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.see-drawer-val{
display: inline-block;
width: calc(~'100% - 135px');
padding: 0 15px;
height: 50px;
line-height: 50px;
font-size: 16px;
color: #333333;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.see-drawer-Multiple-val{
display: inline-block;
width: calc(~'100% - 135px');
.see-drawer-val{
display: block;
width: 100%;
}
}
}
}
// 底部带 提交、取消按钮、分页
.demo-drawer-content-mini{
padding: 0 19px;
//height: calc(~'100% - 107px');
overflow-y: auto;
flex: auto;
display: flex;
flex-direction: column;
& > .pagination{
position: static;
bottom: auto;
}
}
// 底部不带按钮,内容是表格
.not-footer-drawer{
padding: 0 19px;
height: 100%;
.pagination{
bottom: 0;
}
}
}
// 底部按钮
.demo-drawer-footer{
width: 100%;
//position: absolute;
//bottom: 0;
//left: 0;
padding: 0 20px;
height: 50px;
line-height: 50px;
border-top: 1px solid #e8e8e8;
text-align: right;
background: #fff;
z-index: 999;
}
@media screen and(-ms-high-contrast:active),(-ms-high-contrast:none){
/*兼容IE11*/
.el-drawer__body {
overflow-y: auto;
}
.demo-drawer-footer{
height: auto;
}
}
}
.el-col-24{
.el-form-item__content{
.el-select, .el-textarea{
width: 100%;
.el-input__inner, .el-textarea__inner{
width: 100%;
}
}
}
}
}
// 底部不带按钮
//.el-drawer-body{
// .not-footer-drawer{
// .el-drawer__body{
// padding: 0 19px;
// }
// .pagination{
// bottom: 0;
// }
// }
//}
+37
View File
@@ -0,0 +1,37 @@
/*动态&资料 查询条件 form表单*/
.dynamic-label-input-form{
.el-form-item{
.el-form-item__label{
position: relative;
top: 1px;
padding: 0 7px;
width: 80px;
height: 32px;
line-height: 32px;
font-size: 12px;
border: 1px solid #DDD;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border-right: none;
background: #F4F8FB;
text-align: center;
}
.el-form-item__content{
line-height: 32px;
}
.el-input{
width: calc(~'100% - 80px');
height: 32px;
.el-input__inner{
width: 100%;
height: 32px;
font-size: 12px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
.el-date-editor{
width: 100%;
}
}
}
}
File diff suppressed because one or more lines are too long
Binary file not shown.
+242
View File
@@ -0,0 +1,242 @@
<?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" >
<!--
2013-9-30: Created.
-->
<svg>
<metadata>
Created by iconfont
</metadata>
<defs>
<font id="iconfont" horiz-adv-x="1024" >
<font-face
font-family="iconfont"
font-weight="500"
font-stretch="normal"
units-per-em="1024"
ascent="896"
descent="-128"
/>
<missing-glyph />
<glyph glyph-name="weituo" unicode="&#58901;" d="M176.384 379.008c17.664 0 32 14.336 32 32V759.04c0 1.792 1.024 2.56 1.28 2.56h432.128v-81.792c0-38.784 31.616-70.4 70.4-70.4H801.28v-198.4c0-17.664 14.336-32 32-32s32 14.336 32 32v230.4c0 0.64 0 1.28-0.128 1.92v0.512c0 0.64-0.128 1.28-0.256 1.92v0.256c-0.128 0.768-0.256 1.536-0.384 2.176-0.512 2.304-1.28 4.48-2.176 6.656v0.128c-0.384 0.64-0.64 1.408-1.024 2.048 0 0 0 0.128-0.128 0.128-0.384 0.64-0.64 1.152-1.024 1.792 0 0.128-0.128 0.128-0.128 0.256-0.384 0.64-0.768 1.152-1.28 1.792-0.128 0.128-0.128 0.256-0.256 0.384-0.384 0.512-0.768 1.024-1.28 1.536l-0.128 0.128-1.536 1.536-0.128 0.128L695.936 816.768l-0.128 0.128c-0.512 0.512-1.024 0.896-1.536 1.408h-0.128c-0.512 0.384-1.024 0.896-1.664 1.28-0.128 0.128-0.256 0.128-0.384 0.256-1.152 0.896-2.432 1.536-3.712 2.304 0 0-0.128 0-0.128 0.128-1.28 0.64-2.688 1.28-4.224 1.792-1.408 0.512-2.816 0.896-4.352 1.152h-0.256c-0.64 0.128-1.408 0.256-2.176 0.256-0.64 0.128-1.408 0.128-2.048 0.128H209.664c-35.968 0-65.28-29.824-65.28-66.56v-347.904c0-17.792 14.336-32.128 32-32.128z m535.808 294.4c-3.456 0-6.4 2.944-6.4 6.4v39.04l47.616-45.44h-41.216zM957.952 151.552L728.96 331.648c-3.328 2.688-7.296 4.608-11.392 5.76-82.944 22.4-277.632 75.008-293.76 77.312-29.44 4.352-68.608-17.152-83.712-46.08-15.872-30.336-12.16-76.416 25.472-105.728 4.864-3.84 15.744-12.288 103.168-52.736L321.664 212.48c-53.76 50.688-134.4 126.592-137.984 129.664-15.104 13.056-44.416 16.512-56.32 17.408-29.568 2.176-51.84-2.944-66.048-15.488-17.664-15.488-24.96-40.576-20.864-72.576 2.176-17.024 8.576-41.344 19.328-53.632 1.152-1.408 3.072-3.456 223.872-215.68 7.808-7.552 18.176-11.776 29.056-11.776h381.312l51.072-60.928c10.368-12.416 25.472-19.456 41.6-19.456h1.28c16.64 0.384 31.872 8.192 41.984 21.376l133.504 175.36c10.752 14.208 8.192 34.048-5.504 44.8z m-171.52-171.52l-52.864 63.104c-6.144 7.296-15.104 11.392-24.576 11.392H321.664c-70.784 68.096-193.28 185.856-212.48 204.544-3.968 8.96-7.04 28.288-5.248 36.352 9.472 2.048 30.976 0 39.68-3.2 14.208-13.312 91.264-85.76 143.104-134.656 5.76-5.504 13.44-8.576 21.376-8.704l314.88-4.992c15.232-0.256 28.544 10.24 31.744 25.216 3.2 14.848-4.48 29.952-18.432 36.096-102.272 44.672-216.832 97.408-231.68 108.416-12.544 9.728-10.112 21.76-8.064 25.6 2.432 4.736 13.184 11.392 18.432 12.16 20.608-4.352 178.304-46.592 279.424-73.984L893.44 120.832l-107.008-140.8zM280.704 601.344h318.08c17.664 0 32 14.336 32 32s-14.336 32-32 32H280.704c-17.664 0-32-14.336-32-32s14.336-32 32-32zM280.704 466.688h448.128c17.664 0 32 14.336 32 32s-14.336 32-32 32H280.704c-17.664 0-32-14.336-32-32s14.336-32 32-32z" horiz-adv-x="1024" />
<glyph glyph-name="baocun" unicode="&#58888;" d="M955.786 871.5H67.714c-24.281 0-43.964-19.683-43.964-43.964v-888.072c0-24.281 19.683-43.964 43.964-43.964h888.072c24.281 0 43.964 19.683 43.964 43.964V827.536c0 24.281-19.683 43.964-43.964 43.964zM208.399 804.159c0 2.721 0.202 5.388 0.575 7.99h605.553c0.373-2.602 0.575-5.269 0.575-7.99v-337.505c0-27.412-19.683-49.633-43.964-49.633H252.363c-24.281 0-43.964 22.221-43.964 49.633V804.159z m732-810.691c0-21.328-17.289-38.617-38.617-38.617H121.718c-21.328 0-38.617 17.289-38.617 38.617V773.532c0 21.328 17.289 38.617 38.617 38.617h27.329v-410.8c0-24.123 19.654-43.679 43.897-43.679h637.61c24.244 0 43.897 19.556 43.897 43.679v410.8h27.329c21.328 0 38.617-17.289 38.617-38.617v-780.064zM723.609 504.296c15.933 0 28.85 12.917 28.85 28.85v180.91c0 15.933-12.917 28.85-28.85 28.85s-28.85-12.917-28.85-28.85v-180.911c0-15.933 12.917-28.849 28.85-28.849z" horiz-adv-x="1024" />
<glyph glyph-name="tubiao" unicode="&#58957;" d="M597.333333 469.333333V810.666667c187.733333 0 341.333333-153.6 341.333334-341.333334H597.333333zM490.666667 362.666667V680.533333c-155.733333-10.666667-277.333333-140.8-277.333334-296.533333 0-164.266667 134.4-298.666667 298.666667-298.666667 157.866667 0 285.866667 121.6 296.533333 277.333334H490.666667zM469.333333 765.866667V341.333333h424.533334c-21.333333-192-183.466667-341.333333-381.866667-341.333333-211.2 0-384 172.8-384 384 0 196.266667 149.333333 360.533333 341.333333 381.866667M512 810.666667C277.333333 810.666667 85.333333 618.666667 85.333333 384s192-426.666667 426.666667-426.666667 426.666667 192 426.666667 426.666667H512V810.666667z" horiz-adv-x="1024" />
<glyph glyph-name="pdf" unicode="&#58911;" d="M102.4 896h819.2c56.32 0 102.4-46.08 102.4-102.4v-819.2c0-56.32-46.08-102.4-102.4-102.4H102.4c-56.32 0-102.4 46.08-102.4 102.4V793.6c0 56.32 46.08 102.4 102.4 102.4zM184.32 40.96c-15.36 0-28.16 7.68-33.28 17.92-7.68 12.8-7.68 28.16-5.12 43.52 5.12 20.48 17.92 40.96 33.28 53.76 28.16 25.6 61.44 46.08 97.28 64 20.48 10.24 43.52 17.92 69.12 28.16 40.96 58.88 74.24 122.88 99.84 189.44 2.56 7.68 7.68 17.92 10.24 25.6-7.68 17.92-15.36 35.84-20.48 53.76-7.68 25.6-12.8 48.64-15.36 74.24-2.56 20.48-2.56 40.96 0 61.44 0 15.36 5.12 30.72 15.36 46.08 7.68 10.24 17.92 17.92 30.72 23.04 5.12 2.56 10.24 2.56 15.36 2.56 7.68 2.56 15.36 2.56 23.04 0 7.68-2.56 12.8-5.12 17.92-7.68 28.16-12.8 25.6-35.84 23.04-69.12l-2.56-12.8c-7.68-56.32-20.48-112.64-38.4-166.4l5.12-10.24c20.48-33.28 40.96-66.56 66.56-97.28 12.8-17.92 28.16-33.28 43.52-51.2 25.6 2.56 48.64 2.56 74.24 0s48.64-5.12 71.68-10.24c20.48-5.12 40.96-12.8 58.88-23.04 17.92-10.24 33.28-28.16 43.52-46.08 10.24-17.92 10.24-40.96 0-61.44-7.68-17.92-25.6-28.16-43.52-33.28-17.92-5.12-38.4-5.12-58.88 0-23.04 7.68-43.52 17.92-64 33.28-25.6 17.92-51.2 38.4-74.24 61.44l-33.28 33.28c-17.92-2.56-35.84-5.12-61.44-10.24-56.32-10.24-112.64-23.04-166.4-43.52l-7.68-10.24c-28.16-46.08-64-87.04-102.4-122.88-20.48-17.92-43.52-30.72-69.12-35.84h-2.56z m110.08 135.68c-28.16-12.8-56.32-30.72-79.36-51.2-10.24-7.68-17.92-17.92-20.48-30.72v-5.12c15.36 5.12 28.16 12.8 40.96 23.04 20.48 20.48 40.96 40.96 58.88 64z m373.76 87.04l2.56-2.56c20.48-20.48 43.52-40.96 66.56-56.32 15.36-10.24 33.28-20.48 51.2-25.6 10.24-2.56 20.48-2.56 28.16 0 5.12 2.56 10.24 5.12 15.36 10.24 2.56 7.68 2.56 15.36 0 20.48-5.12 10.24-15.36 20.48-25.6 25.6-15.36 7.68-30.72 12.8-46.08 17.92-20.48 5.12-43.52 7.68-64 10.24h-28.16zM486.4 409.6c-20.48-48.64-43.52-94.72-69.12-138.24l5.12 2.56c35.84 10.24 74.24 17.92 112.64 25.6l30.72 5.12c-7.68 10.24-15.36 17.92-23.04 28.16-20.48 23.04-38.4 51.2-56.32 76.8z m5.12 271.36H483.84c-2.56 0-5.12-2.56-7.68-5.12-5.12-7.68-7.68-17.92-7.68-25.6-2.56-17.92-2.56-33.28 0-51.2s5.12-35.84 10.24-53.76c7.68 30.72 12.8 64 17.92 94.72l2.56 15.36c0 7.68 2.56 17.92 2.56 23.04-2.56 0-7.68 2.56-10.24 2.56z" horiz-adv-x="1024" />
<glyph glyph-name="fanyi" unicode="&#59241;" d="M540.621118 616.149068c19.080745-31.801242 38.161491-63.602484 76.322981-82.683229 38.161491 25.440994 69.962733 50.881988 89.043479 82.683229H540.621118zM903.15528 883.279503H120.84472C57.242236 883.279503 6.360248 832.397516 6.360248 768.795031v-782.310559c0-63.602484 50.881988-114.484472 114.484472-114.484472h782.31056c63.602484 0 114.484472 50.881988 114.484472 114.484472V768.795031c0 63.602484-50.881988 114.484472-114.484472 114.484472z m-629.664597-190.807453c44.521739-31.801242 82.68323-69.962733 114.484472-101.763975l-44.521739-44.52174c-25.440994 31.801242-63.602484 63.602484-114.484472 101.763976l44.521739 44.521739z m6.360249-610.583851l-25.440994 57.242236c12.720497 12.720497 19.080745 25.440994 19.080745 38.16149v254.409938H197.167702v63.602485h146.285714v-279.850932l57.242236 57.242236 19.080746-69.962733c-50.881988-44.521739-89.043478-89.043478-139.925466-120.84472z m527.900621 89.043478H636.024845v-120.84472H572.42236v120.84472H419.776398v63.602484H572.42236v63.602485H445.217391v63.602484h127.204969v57.242236h63.602485v-57.242236h133.565217v-57.242236H636.024845v-63.602484h165.366459c6.360248-6.360248 6.360248-69.962733 6.360249-69.962733z m-6.360249 235.329193c-76.322981 6.360248-139.925466 25.440994-190.807453 57.242236-50.881988-25.440994-114.484472-44.521739-190.807453-63.602485L387.975155 450.782609c63.602484 12.720497 120.84472 31.801242 165.36646 50.881987-38.161491 31.801242-63.602484 69.962733-76.322981 114.484472h-44.52174v57.242236h337.093168v-57.242236c-19.080745-44.521739-50.881988-89.043478-95.403727-120.84472 38.161491-12.720497 89.043478-25.440994 152.645963-31.801242l-25.440994-57.242236z" horiz-adv-x="1024" />
<glyph glyph-name="word" unicode="&#58887;" d="M808.96 896h70.997H73.045C44.373 896 21.333 873.088 21.333 844.885v-921.77c0-28.288 23.168-51.115 51.712-51.115h877.91c28.672 0 51.712 22.912 51.712 51.115V761.643 678.4L808.96 896zM1002.667 678.4H808.96V896zM394.197 162.56a25.813 25.813 0 1 0-48.469-17.92l-142.037 384a25.813 25.813 0 1 0 48.469 17.92l142.037-384z m93.568 384a25.813 25.813 0 1 0 48.47-17.92l-142.08-384a25.813 25.813 0 0 0-48.427 17.92l142.08 384z m190.507-384a25.813 25.813 0 0 0-48.47-17.92l-142.037 384a25.813 25.813 0 1 0 48.47 17.92l142.037-384z m93.568 384a25.813 25.813 0 0 0 48.47-17.92l-142.08-384a25.813 25.813 0 0 0-48.427 17.92l142.08 384z" horiz-adv-x="1024" />
<glyph glyph-name="liucheng-A-" unicode="&#58898;" d="M896 256h-64V384a64 64 0 0 1-64 64H512V576h128a64 64 0 0 1 64 64V832a64 64 0 0 1-64 64H320a64 64 0 0 1-64-64v-192a64 64 0 0 1 64-64h128v-128H192a64 64 0 0 1-64-64v-128H64a64 64 0 0 1-64-64v-192a64 64 0 0 1 64-64h192a64 64 0 0 1 64 64v192a64 64 0 0 1-64 64H192V384h576v-128h-64a64 64 0 0 1-64-64v-192a64 64 0 0 1 64-64h192a64 64 0 0 1 64 64v192a64 64 0 0 1-64 64z" horiz-adv-x="1024" />
<glyph glyph-name="baobiao" unicode="&#58886;" d="M554.496 837.632v-369.664L826.88 713.216C754.688 781.824 659.968 827.904 554.496 837.632zM967.68 384c0 105.472-35.84 202.24-96.256 279.04L568.832 390.656l317.44-266.24c51.2 73.728 81.408 162.816 81.408 259.584z m-479.744-12.288l2.56 3.072h-2.56V838.144C247.296 825.856 56.32 627.2 56.32 384c0-251.904 203.776-455.68 455.68-455.68 131.072 0 248.832 55.808 332.288 144.384L487.936 371.712z" horiz-adv-x="1024" />
<glyph glyph-name="baobiao1" unicode="&#59116;" d="M170.4 728h140.8v76.8c0 12.8 4.8 24 12.8 32 8 8.8 20 14.4 32 14.4h287.2c7.2 0 14.4-3.2 18.4-8.8l216.8-230.4c4-4.8 6.4-10.4 6.4-16.8v-503.2c0-12.8-4.8-24-12.8-32-8-8.8-20-14.4-32-14.4H752v-106.4c0-13.6-11.2-24-24-24H170.4c-13.6 0-24 11.2-24 24V703.2c0 13.6 10.4 24.8 24 24.8z m123.2-344h288c13.6 0 24 10.4 24 24s-10.4 24-24 24h-288c-13.6 0-24-10.4-24-24 0-12.8 10.4-24 24-24z m0-120.8h288c13.6 0 24 10.4 24 24s-10.4 24-24 24h-288c-13.6 0-24-10.4-24-24s10.4-24 24-24z m0-121.6h288c13.6 0 24 10.4 24 24s-10.4 24-24 24h-288c-13.6 0-24-10.4-24-24s10.4-24 24-24zM359.2 728h141.6L752 479.2v-385.6h84.8V585.6L632.8 802.4H359.2V728z" horiz-adv-x="1024" />
<glyph glyph-name="peizhi1" unicode="&#58928;" d="M139.776-128h60.928c18.432 0 33.792 15.36 33.792 33.792V256h-128v-350.208c-0.512-18.432 14.848-33.792 33.28-33.792zM542.72 896h-60.928C463.36 896 448 880.64 448 862.208v-520.704h128V862.208C576 880.64 561.152 896 542.72 896zM200.704 896h-60.928c-18.432 0-33.792-15.36-33.792-33.792v-307.712h128V862.208C233.984 880.64 219.136 896 200.704 896z m683.52 0h-60.928c-18.432 0-33.792-15.36-33.792-33.792v-179.712h128V862.208C918.016 880.64 903.168 896 884.224 896z m76.288-256H747.008a42.391 42.391 0 0 1-42.496-42.496v-128a42.391 42.391 0 0 1 42.496-42.496h213.504a42.391 42.391 0 0 1 42.496 42.496v128c0.512 23.552-18.944 42.496-42.496 42.496z m-137.216-768h60.928c18.432 0 33.792 15.36 33.792 33.792V384h-128v-478.208c0-18.432 14.848-33.792 33.28-33.792zM619.008 298.496H404.992A42.391 42.391 0 0 1 362.496 256v-128a42.391 42.391 0 0 1 42.496-42.496h213.504A42.391 42.391 0 0 1 660.992 128V256c0.512 23.552-18.432 42.496-41.984 42.496zM481.28-128h60.928c18.432 0 33.792 15.36 33.792 33.792V43.00800000000004H448v-137.216c0-18.432 14.848-33.792 33.28-33.792zM276.992 512H63.488a42.391 42.391 0 0 1-42.496-42.496v-128a42.391 42.391 0 0 1 42.496-42.496h213.504a42.391 42.391 0 0 1 42.496 42.496v128A42.391 42.391 0 0 1 276.992 512z" horiz-adv-x="1024" />
<glyph glyph-name="qingdan1" unicode="&#59208;" d="M858.584615 793.6h-214.016C623.064615 852.992 566.744615 896 500.184615 896S377.304615 852.992 355.800615 793.6H141.784615C85.464615 793.6 39.384615 747.52 39.384615 691.2v-716.8C39.384615-81.92 85.464615-128 141.784615-128h716.8c56.32 0 102.4 46.08 102.4 102.4V691.2c0 56.32-46.08 102.4-102.4 102.4z m-358.4 0c28.16 0 51.2-23.04 51.2-51.2 0-28.16-23.04-51.2-51.2-51.2-28.16 0-51.2 23.04-51.2 51.2 0 28.16 23.04 51.2 51.2 51.2zM397.784615 76.8l-204.8 204.8 72.192 72.192L397.784615 221.696l337.408 337.408L807.384615 486.4 397.784615 76.8z" horiz-adv-x="1024" />
<glyph glyph-name="dongtai" unicode="&#58899;" d="M511.646664-127.392674a130.893368 130.893368 0 0 1 142.525613 114.669447H369.121051a130.893368 130.893368 0 0 1 142.525613-114.669447z m451.086219 234.236681a1054.37118 1054.37118 0 0 0-134.689154 459.718569 286.153228 286.153228 0 0 1-248.011708 243.664922v24.488937a61.222342 61.222342 0 0 1-61.222343 61.222343h-14.203583a61.222342 61.222342 0 0 1-61.222342-61.222343v-27.305164a290.438792 290.438792 0 0 1-238.767135-253.460498 988.557162 988.557162 0 0 0-143.688838-446.004763 39.488411 39.488411 0 0 1 37.957852-59.56934h824.971063a39.488411 39.488411 0 0 1 38.876188 58.467337zM448.097873 629.315477a106.281986 106.281986 0 0 1-85.711279-98.567971 36.733405 36.733405 0 0 0-36.733406-33.304955h-3.489673a36.733405 36.733405 0 0 0-33.121287 40.039412A180.238576 180.238576 0 0 0 438.241076 701.986397a36.733405 36.733405 0 1 0 9.856797-72.732143z" horiz-adv-x="1024" />
<glyph glyph-name="gongju" unicode="&#59017;" d="M884.58 151.592c38.924-39.027 38.924-102.544 0.049-141.523-18.901-18.95-43.983-29.352-70.738-29.352-26.653 0-51.738 10.402-70.639 29.352l-200.77 201.019-19.487 19.535-26.018-9.324c-31.369-11.242-64.308-16.933-97.785-16.933-160.669 0-291.34 130.915-291.34 291.779 0 34.214 5.843 67.594 17.475 99.503l159.687-159.883 30.826-30.924 30.826 30.875 112.806 113.001 30.826 30.88-190.512 190.807c31.91 11.632 65.241 17.524 99.406 17.524 160.619 0 291.339-130.921 291.339-291.784 0-33.623-5.696-66.515-16.933-97.931l-9.329-26.014 19.535-19.588L884.58 151.592z m30.875-172.447c-27.097-27.146-63.176-42.117-101.516-42.117h-0.049c-38.334 0-74.369 14.971-101.465 42.117L511.656 180.162c-36.132-12.911-73.832-19.486-112.464-19.486-184.72 0-334.98 150.504-334.98 335.468 0 46.096 9.28 90.863 27.541 133.127l6.185 14.337h0.196c0.049 0 0.146 0 0.146 0.146 0.981 2.651 2.553 5.106 4.661 7.263a19.886 19.886 0 0 0 14.089 5.843c5.106 0 10.212-1.962 14.136-5.843 0.249-0.292 0.494-0.341 0.689-0.341h0.2l183.786-184.035 112.806 112.956-187.522 187.809c-0.097 0.097 0.097 0.146 0 0.245-6.623 6.628-6.623 17.431 0 24.056 1.523 1.522 3.29 2.748 5.204 3.583 0.049 0.049-0.097 0.049-0.049 0.049l19.981 8.689c42.214 18.31 86.933 27.59 132.932 27.59 184.67 0 334.93-150.504 334.93-335.473 0-38.729-6.531-76.477-19.492-112.655l200.775-201.018c55.961-56.112 55.961-147.269 0.049-203.327z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="peizhi2" unicode="&#59346;" d="M512.512 505.408c-29.888 0-57.92-11.584-79.104-32.832a111.36 111.36 0 0 1-32.832-79.104c0-29.888 11.712-57.856 32.832-79.104 21.184-21.12 49.216-32.768 79.104-32.768a111.36 111.36 0 0 1 79.104 32.768 111.36 111.36 0 0 1 32.768 79.104 111.36 111.36 0 0 1-32.768 79.104 110.976 110.976 0 0 1-79.104 32.832z m412.288-235.52l-65.408 55.936a359.296 359.296 0 0 1 0 115.392l65.408 55.872a32 32 0 0 1 9.28 35.2l-0.896 2.56a442.496 442.496 0 0 1-79.552 137.728l-1.856 2.112a32.128 32.128 0 0 1-35.072 9.536l-81.216-28.928a349.184 349.184 0 0 1-99.584 57.536L620.16 797.696a32 32 0 0 1-25.856 25.728l-2.688 0.448a450.624 450.624 0 0 1-158.72 0l-2.752-0.448a32 32 0 0 1-25.792-25.728l-15.808-85.312c-35.904-13.568-69.12-32.896-98.88-57.28L207.872 684.16a32 32 0 0 1-35.072-9.536l-1.792-2.112a445.952 445.952 0 0 1-79.616-137.664l-0.896-2.56a32.128 32.128 0 0 1 9.28-35.2l66.24-56.576a351.552 351.552 0 0 1 0-113.92l-65.984-56.576a32 32 0 0 1-9.344-35.2l0.896-2.56c18.112-50.304 44.8-96.832 79.616-137.728l1.792-2.112a32.128 32.128 0 0 1 35.136-9.472l81.792 29.12a346.24 346.24 0 0 1 98.88-57.344l15.808-85.312a32 32 0 0 1 25.792-25.664l2.688-0.512a448.256 448.256 0 0 1 158.784 0l2.752 0.512a32 32 0 0 1 25.792 25.664l15.68 84.928a351.552 351.552 0 0 1 99.584 57.472l81.28-28.864a32 32 0 0 1 35.008 9.472l1.856 2.112a445.952 445.952 0 0 1 79.552 137.728l0.896 2.56a32.256 32.256 0 0 1-9.472 35.008z m-412.288-52.16a175.808 175.808 0 1 0 0 351.552 175.808 175.808 0 0 0 0-351.552z" horiz-adv-x="1024" />
<glyph glyph-name="jiansuoguanli" unicode="&#58949;" d="M478.85635 422.774306m-365.988503 0a365.988503 365.988503 0 1 1 731.977006 0 365.988503 365.988503 0 1 1-731.977006 0ZM1002.501439-2.591352l-144.347913 144.347913c136.157961 186.32142 120.289928 447.376156-47.604099 615.270182-185.297676 185.297676-486.27843 185.297676-671.576106 0-185.297676-185.297676-185.297676-486.27843 0-671.576106 167.894026-167.894026 430.484379-184.273932 615.270182-47.604099l144.347913-144.347913c28.664834-28.664834 75.245189-28.664834 103.910023 0 28.664834 28.664834 28.664834 75.757061 0 103.910023z m-523.645089 26.105473c-220.616846 0-399.260185 178.643339-399.260185 399.260185s178.643339 399.260185 399.260185 399.260185 399.260185-178.643339 399.260185-399.260185-178.643339-399.260185-399.260185-399.260185z" horiz-adv-x="1024" />
<glyph glyph-name="faguiku" unicode="&#59117;" d="M232.2432 153.6c0 18.2272-14.7456 32.9728-32.9728 32.9728H133.5296c-18.2272 0-32.9728-14.7456-32.9728-32.9728 0-18.2272 14.7456-32.9728 32.9728-32.9728h65.7408c18.2272 0 32.9728 14.7456 32.9728 32.9728zM101.9904 416.9728c0-18.2272 14.7456-32.9728 32.9728-32.9728h64.512c18.2272 0 32.9728 14.7456 32.9728 32.9728 0 18.2272-14.7456 32.9728-32.9728 32.9728H134.9632c-18.2272-0.2048-32.9728-14.9504-32.9728-32.9728z m788.48 392.8064l-65.7408 2.048c0 18.2272-14.7456 32.9728-32.9728 32.9728H200.704c-18.2272 0-32.9728-14.7456-32.9728-32.9728v-63.6928H200.704s65.536-6.144 65.536-65.9456c0 0 0.6144-65.9456-67.1744-65.9456l-31.3344-1.8432 0.6144-129.6384h30.72s67.7888 0 67.7888-69.8368c0 0-6.3488-63.6928-67.9936-63.6928H167.936l-0.6144-129.6384h32.768s65.7408-2.048 65.7408-67.7888c0 0-0.2048-67.7888-67.9936-67.7888l-29.696 2.048-0.4096-65.9456s37.6832-98.7136 95.232-98.7136h629.5552s30.9248 6.144 30.9248 30.9248V777.0112s-6.144 32.768-32.9728 32.768z m-559.5136-195.3792h427.8272v-263.3728H330.9568V614.4z m493.7728-625.4592H265.216s-33.9968 11.264-33.9968 33.9968l560.5376 0.4096c18.2272 0 32.9728 14.7456 32.9728 32.9728V770.6624h33.9968v-750.7968s1.024-30.9248-33.9968-30.9248zM133.5296 647.3728h65.7408c18.2272 0 32.9728 14.7456 32.9728 32.9728 0 18.2272-14.7456 32.9728-32.9728 32.9728H133.5296c-18.2272 0-32.9728-14.7456-32.9728-32.9728 0-18.2272 14.7456-32.9728 32.9728-32.9728z m543.1296-98.7136H413.2864c-9.0112 0-16.384-7.3728-16.384-16.384s7.3728-16.384 16.384-16.384h263.3728c9.0112 0 16.384 7.3728 16.384 16.384s-7.3728 16.384-16.384 16.384z m0-98.9184H413.2864c-9.0112 0-16.384-7.3728-16.384-16.384s7.3728-16.384 16.384-16.384h263.3728c9.0112 0 16.384 7.3728 16.384 16.384s-7.3728 16.384-16.384 16.384z" horiz-adv-x="1024" />
<glyph glyph-name="falvfaguiku" unicode="&#59139;" d="M1154.706286 38.326857c3.876571-23.113143-0.950857-43.885714-14.409143-62.390857a81.92 81.92 0 0 0-54.857143-33.426286l-138.532571-21.942857a79.286857 79.286857 0 0 0-61.732572 14.409143 81.261714 81.261714 0 0 0-34.084571 54.857143l-117.76 745.691428a85.138286 85.138286 0 0 0 15.067428 61.732572 76.068571 76.068571 0 0 0 23.625143 21.942857 98.742857 98.742857 0 0 0 31.744 12.141714l137.362286 21.942857c23.113143 3.803429 43.885714-1.170286 62.317714-14.994285 18.505143-13.897143 29.696-32.329143 33.499429-55.442286l117.76-744.594286zM574.098286 857.892571c23.04 0 42.642286-8.045714 58.806857-24.283428 16.164571-16.091429 24.283429-35.766857 24.283428-58.806857V3.657143c0-23.04-8.045714-42.715429-24.283428-58.88-16.091429-16.091429-35.766857-24.210286-58.806857-24.210286H453.997714c-23.04 0-42.715429 8.045714-58.88 24.210286a80.164571 80.164571 0 0 0-24.210285 58.88V774.802286c0 23.04 6.144 42.715429 18.432 58.806857 12.361143 16.164571 30.427429 24.283429 54.272 24.283428H574.171429z m0-581.778285c7.68 0 14.189714 3.657143 19.602285 10.971428 5.412571 7.314286 8.045714 15.945143 8.045715 25.965715a41.984 41.984 0 0 1-8.045715 26.550857 24.137143 24.137143 0 0 1-19.602285 10.386285H453.997714a24.137143 24.137143 0 0 1-19.602285-10.386285 41.984 41.984 0 0 1-8.045715-26.550857c0-10.020571 2.633143-18.651429 8.045715-25.965715 5.412571-7.314286 11.922286-10.971429 19.602285-10.971428H574.171429z m0 146.578285c7.68 0 14.189714 3.657143 19.602285 10.971429 5.412571 7.314286 8.045714 16.384 8.045715 27.062857a41.984 41.984 0 0 1-8.045715 26.624 24.137143 24.137143 0 0 1-19.602285 10.386286H453.997714a24.137143 24.137143 0 0 1-19.602285-10.386286 41.984 41.984 0 0 1-8.045715-26.550857c0-10.752 2.633143-19.821714 8.045715-27.136 5.412571-7.314286 11.922286-10.971429 19.602285-10.971429H574.171429zM211.602286 857.965714c23.113143 0 42.934857-8.045714 59.465143-24.283428 16.530286-16.091429 24.868571-35.766857 24.868571-58.806857V3.657143c0-23.04-8.338286-42.715429-24.868571-58.88a82.066286 82.066286 0 0 0-59.465143-24.210286H91.574857c-23.113143 0-42.934857 8.045714-59.465143 24.210286-16.530286 16.164571-24.868571 35.84-24.868571 58.88V774.802286c0 23.04 8.338286 42.715429 24.868571 58.806857C48.64 849.773714 68.461714 857.965714 91.574857 857.965714h120.027429zM96.182857 569.270857a25.161143 25.161143 0 0 1-20.772571-10.386286 41.984 41.984 0 0 1-8.045715-26.550857c0-9.947429 2.633143-18.651429 8.045715-25.965714 5.339429-7.314286 12.288-10.971429 20.772571-10.971429H206.994286c8.484571 0 15.213714 3.657143 20.187428 10.971429a44.836571 44.836571 0 0 1 7.533715 25.965714 44.251429 44.251429 0 0 1-7.533715 26.550857 23.698286 23.698286 0 0 1-20.187428 10.386286H96.182857z m115.419429-362.422857a23.698286 23.698286 0 0 1 20.187428 10.386286 42.203429 42.203429 0 0 1 7.533715 25.380571 41.691429 41.691429 0 0 1-7.533715 25.965714 24.137143 24.137143 0 0 1-20.187428 9.801143H96.182857a25.746286 25.746286 0 0 1-20.772571-9.801143 39.497143 39.497143 0 0 1-8.045715-25.965714c0-10.020571 2.633143-18.432 8.045715-25.380571a25.161143 25.161143 0 0 1 20.772571-10.386286h115.419429z m0 141.970286a23.698286 23.698286 0 0 1 20.187428 10.386285 44.251429 44.251429 0 0 1 7.533715 26.550858 44.251429 44.251429 0 0 1-7.533715 26.550857 23.698286 23.698286 0 0 1-20.187428 10.386285H96.182857a25.161143 25.161143 0 0 1-20.772571-10.386285 41.984 41.984 0 0 1-8.045715-26.550857c0-10.752 2.633143-19.602286 8.045715-26.550858a25.161143 25.161143 0 0 1 20.772571-10.386285h115.419429z" horiz-adv-x="1170" />
<glyph glyph-name="shouye4" unicode="&#58976;" d="M984.250182 548.258909L571.810909 875.124364a96 96 0 0 1-119.272727 0L40.122182 548.258909c-25.134545-19.921455-39.936-51.246545-39.936-84.526545V-22.341818c0-58.274909 44.590545-105.541818 99.584-105.541818h275.479273a20.596364 20.596364 0 0 1 20.596363 20.596363V209.617455c0 19.269818 15.616 34.885818 34.885818 34.885818h186.228364c19.269818 0 34.885818-15.616 34.885818-34.885818V-107.287273c0-11.380364 9.216-20.596364 20.596364-20.596363h252.206545c54.993455 0 99.584 47.243636 99.584 105.541818V463.755636c-0.046545 33.256727-14.871273 64.581818-39.982545 84.503273z" horiz-adv-x="1034" />
<glyph glyph-name="qingdan" unicode="&#58885;" d="M654.629 314.514H362.057c-21.943 0-36.571 18.286-36.571 36.572 0 21.943 18.285 36.571 36.571 36.571h288.914c21.943 0 36.572-18.286 36.572-36.571 3.657-21.943-14.629-36.572-32.914-36.572z m3.657 138.972H365.714c-21.943 0-36.571 18.285-36.571 36.571 0 21.943 18.286 36.572 36.571 36.572h292.572c21.943 0 36.571-18.286 36.571-36.572s-18.286-36.571-36.571-36.571z m-3.657-288.915H362.057c-21.943 0-36.571 18.286-36.571 36.572 0 21.943 18.285 36.571 36.571 36.571h288.914c21.943 0 36.572-18.285 36.572-36.571 3.657-18.286-14.629-36.572-32.914-36.572zM841.143 713.143H768V640h36.571v-585.143H219.43V640H256v73.143h-73.143c-21.943 0-36.571-14.629-36.571-36.572v-658.285c0-21.943 14.628-36.572 36.571-36.572h658.286c21.943 0 36.571 14.629 36.571 36.572V676.57c0 21.943-14.628 36.572-36.571 36.572zM658.286 786.286H365.714c-21.943 0-36.571-14.629-36.571-36.572V640h365.714V749.714c0 21.943-14.628 36.572-36.571 36.572z" horiz-adv-x="1024" />
<glyph glyph-name="xiazai2" unicode="&#59429;" d="M358.3 320.2L512 180.1l153.7 140.1 153.7 140.2H596.7V797.8H427.3v-337.4H204.6zM204.7 69.3h614.5v-99.1H204.7z" horiz-adv-x="1024" />
<glyph glyph-name="peizhi" unicode="&#58985;" d="M358.4 665.6c0 14.08-11.52 25.6-25.6 25.6h-51.2c-14.08 0-25.6-11.52-25.6-25.6V588.8h102.4V665.6z m204.8 0c0 14.08-11.52 25.6-25.6 25.6h-51.2c-14.08 0-25.6-11.52-25.6-25.6V384h102.4V665.6z m-307.2-563.2c0-14.08 11.52-25.6 25.6-25.6h51.2c14.08 0 25.6 11.52 25.6 25.6V384H256v-281.6z m512 563.2c0 14.08-11.52 25.6-25.6 25.6h-51.2c-14.08 0-25.6-11.52-25.6-25.6V588.8h102.4V665.6z m25.6-128h-153.6c-14.08 0-25.6-11.52-25.6-25.6v-51.2c0-14.08 11.52-25.6 25.6-25.6h153.6c14.08 0 25.6 11.52 25.6 25.6v51.2c0 14.08-11.52 25.6-25.6 25.6zM409.6 512c0 14.08-11.52 25.6-25.6 25.6h-153.6c-14.08 0-25.6-11.52-25.6-25.6v-51.2c0-14.08 11.52-25.6 25.6-25.6h153.6c14.08 0 25.6 11.52 25.6 25.6v51.2z m256-409.6c0-14.08 11.52-25.6 25.6-25.6h51.2c14.08 0 25.6 11.52 25.6 25.6V384h-102.4v-281.6z m-204.8 0c0-14.08 11.52-25.6 25.6-25.6h51.2c14.08 0 25.6 11.52 25.6 25.6V179.2H460.8v-76.8z m128 230.4h-153.6c-14.08 0-25.6-11.52-25.6-25.6v-51.2c0-14.08 11.52-25.6 25.6-25.6h153.6c14.08 0 25.6 11.52 25.6 25.6v51.2c0 14.08-11.52 25.6-25.6 25.6z" horiz-adv-x="1024" />
<glyph glyph-name="yichu" unicode="&#58897;" d="M792.1 193.3l110.1 110.1c12.7 12.7 12.7 33.3 0 46-12.7 12.7-33.3 12.7-46 0l-110-110.1L636 349.4c-12.7 12.7-33.3 12.7-46 0-12.7-12.7-12.7-33.3 0-46l110.1-110.1-110-110.1c-12.7-12.7-12.7-33.3 0-46 6.3-6.3 14.7-9.5 23-9.5s16.6 3.2 23 9.5l110.1 110.1 110.1-110.1c6.3-6.3 14.7-9.5 23-9.5s16.6 3.2 23 9.5c12.7 12.7 12.7 33.3 0 46L792.1 193.3zM474.9 2.8H133v760h708.7v-239.4c0-19.3 15.7-35 35-35s35 15.7 35 35V797.8c0 19.3-15.7 35-35 35H98c-19.3 0-35-15.7-35-35v-830c0-19.3 15.7-35 35-35h376.9c19.3 0 35 15.7 35 35s-15.6 35-35 35zM753.4 593.9c0 19.3-15.7 35-35 35H267.8c-19.3 0-35-15.7-35-35s15.7-35 35-35h450.5c19.4 0 35.1 15.7 35.1 35zM493.5 387.4c0 19.3-15.7 35-35 35H267.8c-19.3 0-35-15.7-35-35s15.7-35 35-35h190.7c19.3 0 35 15.7 35 35zM267.8 215.8c-19.3 0-35-15.7-35-35s15.7-35 35-35h106.5c19.3 0 35 15.7 35 35s-15.7 35-35 35H267.8z" horiz-adv-x="1024" />
<glyph glyph-name="yujing" unicode="&#59174;" d="M175.726-38.787v316.26c0 189.18 153.404 342.612 342.774 342.612s342.775-153.433 342.775-342.612v-316.26h117.012c24.3 0 44-19.7 44-44s-19.7-44-44-44H44.747c-24.301 0-44 19.7-44 44s19.699 44 44 44h130.98z m367.588 520.804L374.237 203.668h135.221l-33.855-208.762L644.68 273.255H509.457l33.856 208.762h0.001z m259.29 305.76c15.875-9.237 21.299-29.622 12.156-45.488l-60.778-105.636-57.464 33.238 60.78 105.636c9.04 15.865 29.333 21.287 45.106 12.25h0.2zM518.4 866c19.892 0 35.966-14.962 35.966-33.539v-119.693h-71.931V832.561C482.434 851.037 498.508 866 518.4 866h-0.001z m-284.003-78.223c15.773 9.138 36.065 3.716 45.208-12.05 0 0 0-0.1 0.1-0.1l60.78-105.636-57.465-33.237-60.78 105.636c-9.14 15.866-3.716 36.15 12.156 45.387h0.001zM26.44 579.015c9.041 15.867 29.334 21.39 45.208 12.252 0 0 0.1 0 0.1-0.101l105.283-61.052-33.152-57.638L38.595 533.63c-15.872 9.137-21.298 29.522-12.155 45.387z m984.12 0c9.143-15.864 3.717-36.249-12.155-45.486L893.12 472.577l-33.152 57.637 105.283 61.053c15.773 9.137 36.065 3.715 45.208-12.05 0-0.1 0.1-0.1 0.1-0.2v-0.002z" horiz-adv-x="1024" />
<glyph glyph-name="jichuxinxiguanli" unicode="&#59029;" d="M897.707 773.44v-775.467H771.52V773.44h126.187zM924.8 818.56H744.427c-9.92 0-18.027-8.213-18.027-18.24v-829.013c0-10.134 8.107-18.24 18.027-18.24h180.266c9.92 0 18.027 8.213 18.027 18.24V800.32c0 10.027-8 18.24-17.92 18.24m-261.547-45.12v-775.467H537.067V773.44h126.186z m27.094 45.12H510.08c-9.92 0-18.027-8.213-18.027-18.24v-829.013c0-10.134 8.107-18.24 18.027-18.24h180.267c9.92 0 18.026 8.213 18.026 18.24V800.32c0 10.027-8.106 18.24-18.026 18.24M319.893 751.04l121.92-32.64-191.36-714.24-121.92 32.64 191.36 714.24z m-19.2 51.093c-8 0-15.36-5.44-17.6-13.653L77.867 22.613c-2.56-9.706 3.093-19.733 12.8-22.293l174.186-46.613c1.494-0.427 3.094-0.534 4.587-0.534 8 0 15.36 5.44 17.6 13.654l205.12 765.866c2.667 9.707-2.987 19.734-12.693 22.294L305.28 801.6a20.799 20.799 0 0 1-4.587 0.533m570.027-91.84c0-4.8-1.92-9.386-5.333-12.8-3.414-3.413-7.894-5.333-12.8-5.333h-36.054c-9.92 0-18.026 8.107-18.026 18.027 0 9.92 8.106 18.026 18.026 18.026h36.054c4.8 0 9.386-1.92 12.8-5.333 3.413-3.2 5.333-7.68 5.333-12.587m0-72.106c0-4.8-1.92-9.387-5.333-12.8-3.414-3.414-7.894-5.334-12.8-5.334h-36.054c-9.92 0-18.026 8.107-18.026 18.027 0 9.92 8.106 18.027 18.026 18.027h36.054c4.8 0 9.386-1.92 12.8-5.334 3.413-3.2 5.333-7.786 5.333-12.586m0-72.107c0-4.8-1.92-9.387-5.333-12.8-3.414-3.413-7.894-5.333-12.8-5.333h-36.054c-9.92 0-18.026 8.106-18.026 18.026S806.613 584 816.533 584h36.054c4.8 0 9.386-1.92 12.8-5.333 3.413-3.2 5.333-7.787 5.333-12.587M636.267 701.12c0-4.8-1.92-9.387-5.334-12.8-3.413-3.413-7.893-5.333-12.8-5.333H582.08c-9.92 0-18.027 8.106-18.027 18.026s8.107 18.027 18.027 18.027h36.053c4.8 0 9.387-1.92 12.8-5.333 3.414-3.2 5.334-7.787 5.334-12.587m0-72.107c0-4.8-1.92-9.386-5.334-12.8-3.413-3.413-7.893-5.333-12.8-5.333H582.08c-9.92 0-18.027 8.107-18.027 18.027 0 9.92 8.107 18.026 18.027 18.026h36.053c4.8 0 9.387-1.92 12.8-5.333 3.414-3.2 5.334-7.893 5.334-12.587m0-72.213c0-4.8-1.92-9.387-5.334-12.8-3.413-3.413-7.893-5.333-12.8-5.333H582.08c-9.92 0-18.027 8.106-18.027 18.026s8.107 18.027 18.027 18.027h36.053c4.8 0 9.387-1.92 12.8-5.333 3.414-3.2 5.334-7.68 5.334-12.587M392.32 653.227c-1.28-4.587-4.267-8.64-8.427-10.88-4.16-2.454-9.066-2.987-13.76-1.814l-34.88 9.387c-9.706 2.56-15.36 12.48-12.8 22.08 2.56 9.707 12.48 15.36 22.08 12.8l34.88-9.387c9.707-2.666 15.467-12.48 12.907-22.186z m-18.773-69.654c-1.28-4.586-4.267-8.64-8.427-10.88-4.16-2.453-9.067-2.986-13.76-1.813l-34.88 9.387c-9.707 2.56-15.36 12.48-12.8 22.08 2.56 9.706 12.48 15.36 22.08 12.8l34.88-9.387c4.587-1.28 8.64-4.267 10.88-8.427 2.667-4.16 3.307-9.066 2.027-13.76z m-18.56-69.653c-1.28-4.587-4.267-8.64-8.427-10.88-4.16-2.453-9.067-2.987-13.76-1.813l-34.88 9.386c-9.707 2.56-15.36 12.48-12.8 22.08 2.56 9.707 12.48 15.36 22.08 12.8l34.88-9.386c4.587-1.28 8.64-4.267 10.88-8.427 2.56-4.267 3.2-9.173 2.027-13.76z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="jichupeizhiguanli" unicode="&#58980;" d="M261.2 34.8H130c-17.6 0-31.8 14.2-31.8 31.8s14.2 31.8 31.8 31.8h131.2c14.5 56.2 65.1 95.5 123.2 95.5 58 0 108.7-39.3 123.2-95.5h385.6c17.6 0 31.8-14.2 31.8-31.8s-14.2-31.8-31.8-31.8H507.5c-14.5-56.2-65.1-95.5-123.2-95.5-58 0-108.7 39.3-123.1 95.5z m254.3 317.9H130c-17.6 0-31.8 14.2-31.8 31.8s14.2 31.8 31.8 31.8h385.6c14.5 56.2 65.1 95.5 123.2 95.5 58 0 108.7-39.3 123.2-95.5h131.2c17.6 0 31.8-14.2 31.8-31.8s-14.2-31.8-31.8-31.8H761.9c-14.5-56.2-65.1-95.5-123.2-95.5-58 0-108.7 39.3-123.2 95.5z m-254.3 318H130c-17.6 0-31.8 14.2-31.8 31.8s14.2 31.8 31.8 31.8h131.2c14.5 56.2 65.1 95.5 123.2 95.5 58 0 108.7-39.3 123.2-95.5h385.6c11.4 0 21.9-6.1 27.5-15.9 5.7-9.8 5.7-22 0-31.8s-16.2-15.9-27.5-15.9H507.5c-14.5-56.2-65.1-95.5-123.2-95.5-58 0-108.7 39.3-123.1 95.5z m123.2-31.8c22.7 0 43.7 12.1 55.1 31.8 11.4 19.7 11.4 43.9 0 63.6-11.4 19.7-32.4 31.8-55.1 31.8-35.1 0-63.6-28.5-63.6-63.6s28.4-63.6 63.6-63.6z m254.3-318c35.1 0 63.6 28.5 63.6 63.6s-28.5 63.6-63.6 63.6-63.6-28.5-63.6-63.6 28.5-63.6 63.6-63.6zM384.4 3c35.1 0 63.6 28.5 63.6 63.6s-28.5 63.6-63.6 63.6-63.6-28.5-63.6-63.6c0-35.2 28.4-63.6 63.6-63.6z m0 0" horiz-adv-x="1024" />
<glyph glyph-name="sousuo1" unicode="&#59012;" d="M103.355 203.449l324.675 0c-34.137 24.771-64.03 54.772-88.375 88.972l-236.304 0c-22.82 0-41.317-18.126-41.317-40.631l0-7.541c0-22.5 18.495-40.801 41.317-40.801M831.502 192.561c-7.753 20.078-30.923 30.345-51.712 22.759l-9.753-3.555c-20.959-7.312-31.542-29.679-23.745-49.568l70.329-181.652c7.821-20.014 30.9-30.212 51.684-22.736l9.813 3.537c20.979 7.312 31.567 29.744 23.745 49.651l-70.377 181.571zM663.154 55.179l-559.798-0.042c-22.82 0-41.317-18.173-41.317-40.65l0-7.541c0-22.522 18.495-40.845 41.317-40.845l559.798 0c22.799 0 41.271 18.235 41.271 40.738l0 7.63c0.042 22.479-18.451 40.719-41.271 40.719M357.978 464.69c4.994-30.042 14.576-59.939 29.358-88.506 16.135-31.113 37.267-58.141 61.633-80.876 32.937-30.817 71.94-53.828 114.134-67.46 74.426-24.153 158.064-20.078 233.217 17.766 149.426 75.474 208.636 256.275 132.348 403.86-65.164 125.578-207.373 186.305-340.533 155.082-23.274-5.423-46.245-13.351-68.49-24.561-30.646-15.47-57.238-35.484-79.909-58.611-46.332-47.251-75.411-107.874-83.425-171.948-3.515-27.921-2.98-56.426 1.67-84.753M657.922 740.035c127.227 0 230.322-101.786 230.322-227.366 0-125.536-103.118-227.299-230.322-227.299-127.162 0-230.237 101.746-230.237 227.299 0.022 125.554 103.094 227.366 230.237 227.366M106.335 536.673c-24.475 0-44.271-19.629-44.271-43.695l0-8.228c0-24.129 19.822-43.629 44.271-43.629l169.699 0c-4.434 23.207-6.986 47.103-6.986 71.596 0 8.038 0.685 15.964 1.242 23.957l-163.953 0zM103.355 699.707l215.087 0c18.707 33.023 42.213 62.961 69.559 89.038l-284.642 0c-22.82 0-41.317-18.126-41.317-40.631l0-7.587c0-22.522 18.495-40.82 41.317-40.82z" horiz-adv-x="1024" />
<glyph glyph-name="yonghu" unicode="&#58937;" d="M613.475512-125.090975H410.530306c-192.501807 0-344.539079 0-344.539079 99.843549v19.973364c0 187.120111 154.57976 339.331924 344.539079 339.331924h202.939388c189.959319 0 344.544897-152.211813 344.544897-339.331924v-19.973364c-0.034908-99.843549-159.717097-99.843549-344.539079-99.843549zM410.495398 274.207586c-156.941888 0-284.648076-125.349878-284.648076-279.44674v-19.967546c0-39.964183 164.505352-39.964183 284.648076-39.964182h202.945206c99.45374 0 284.653894 0 284.653894 39.964182v19.967546c0 154.096861-127.712007 279.44674-284.653894 279.44674H410.495398z m91.343378 79.881821c-150.832936 0-273.483239 120.904889-273.483239 269.521147 0 148.610441 122.656121 269.480421 273.483239 269.480421s273.483239-120.86998 273.483239-269.480421c0-148.616259-122.685212-269.521147-273.483239-269.521147zM288.24654 623.610554c0-115.563919 95.817459-209.630145 213.592236-209.630144 117.786414 0 213.598055 94.031317 213.598055 209.630144S619.619372 833.205791 501.838776 833.205791c-117.774778 0-213.592237-94.037136-213.592236-209.595237z" horiz-adv-x="1024" />
<glyph glyph-name="xiala" unicode="&#58883;" d="M572.527 129.582c-13.667-13.668-32.216-26.359-49.788-22.454-17.573-2.929-34.169 10.739-47.836 22.454L52.19 554.247c-21.477 21.477-21.477 56.622 0 78.099s56.622 21.477 78.1 0l393.425-404.164 394.401 404.164c21.478 21.477 56.622 21.477 78.1 0s21.477-56.622 0-78.1L572.527 129.583z" horiz-adv-x="1024" />
<glyph glyph-name="shangchuan1" unicode="&#58973;" d="M754.645333 516.906667C743.253333 633.898667 643.498667 725.333333 522.154667 725.333333c-119.893333 0-218.496-89.258667-231.978667-204.16C174.122667 502.784 85.333333 403.541333 85.333333 283.605333 85.333333 150.528 194.474667 42.666667 329.130667 42.666667h124.16v220.842666H284.032L512 504.490667l227.968-240.981334h-164.778667V42.666667h139.946667v1.024c125.141333 10.24 223.530667 113.621333 223.530667 239.914666 0 112.64-78.336 206.933333-184.021334 233.301334z" horiz-adv-x="1024" />
<glyph glyph-name="guanbi" unicode="&#59005;" d="M1014.502958-61.523096l-444.883895 444.883895 444.883895 444.883895c15.340824 15.340824 15.340824 40.908864 0 56.249688s-40.908864 15.340824-56.249688 0l-444.883895-444.883895-444.883895 444.883895c-15.340824 15.340824-40.908864 15.340824-56.249688 0-15.340824-15.340824-15.340824-40.908864 0-56.249688l444.883895-444.883895-444.883895-444.883895c-10.227216-10.227216-15.340824-25.56804-10.227216-40.908864 5.113608-15.340824 20.454432-25.56804 35.795256-25.56804 10.227216 0 20.454432 5.113608 25.56804 10.227216l444.883895 444.883895 444.883895-444.883895c5.113608-5.113608 15.340824-10.227216 25.56804-10.227216 15.340824 0 30.681648 10.227216 35.795256 25.56804 10.227216 15.340824 10.227216 30.681648 0 40.908864z" horiz-adv-x="1027" />
<glyph glyph-name="riqi" unicode="&#58946;" d="M829.984-128l-654.464 0.832A185.6 185.6 0 0 0 7.52 57.6V621.504a185.6 185.6 0 0 0 185.6 185.6h636.864a185.6 185.6 0 0 0 185.6-185.6V57.6a185.6 185.6 0 0 0-185.6-185.6zM193.056 731.456a110.08 110.08 0 0 1-109.952-109.952V57.6a110.08 110.08 0 0 1 109.952-109.952h636.864a110.08 110.08 0 0 1 109.888 109.952V621.504a110.08 110.08 0 0 1-109.888 109.952H193.056zM714.08 622.848a50.432 50.432 0 0 0-50.368 50.368V845.632a50.368 50.368 0 1 0 100.8 0v-172.416a50.368 50.368 0 0 0-50.368-50.432zM297.696 622.848a50.432 50.432 0 0 0-50.368 50.368V845.632a50.368 50.368 0 0 0 100.8 0v-172.416a50.368 50.368 0 0 0-50.368-50.432zM535.904 74.88h-48.128a50.368 50.368 0 1 0 0 100.8h48.128a50.368 50.368 0 1 0 0-100.8zM965.92 446.72H86.432a50.368 50.368 0 0 0 0 100.8h879.488a50.368 50.368 0 1 0 0-100.8zM311.008 233.28h-48.064a50.368 50.368 0 1 0 0 100.8h48.128a50.368 50.368 0 1 0 0-100.8zM535.904 233.28h-48.128a50.368 50.368 0 1 0 0 100.8h48.128a50.368 50.368 0 1 0 0-100.8zM760.16 233.28h-48.128a50.368 50.368 0 0 0 0 100.8h48.128a50.368 50.368 0 0 0 0-100.8zM311.008 74.88h-48.064a50.368 50.368 0 1 0 0 100.8h48.128a50.368 50.368 0 1 0 0-100.8zM760.16 74.88h-48.128a50.368 50.368 0 1 0 0 100.8h48.128a50.368 50.368 0 1 0 0-100.8z" horiz-adv-x="1024" />
<glyph glyph-name="dui" unicode="&#58896;" d="M453.632 187.611l676.571 676.572a105.18 105.18 0 1 0 148.773-148.773L535.113-28.526a112.055 112.055 0 0 0-3.657-3.437 105.18 105.18 0 0 0-152.137-3.658L32.037 311.59A105.18 105.18 0 0 0 180.809 460.36l272.823-272.823z" horiz-adv-x="1316" />
<glyph glyph-name="shaixuan" unicode="&#59301;" d="M527.957333-106.632533l-129.365333 72.2944a97.245867 97.245867 0 0 0-51.4048 86.545066V462.967467a20.5312 20.5312 0 0 1-7.799467 15.633066L40.3456 718.4384l-3.2768 3.8912a95.488 95.488 0 0 0-18.773333 106.069333A95.982933 95.982933 0 0 0 108.117333 886.852267H914.261333a99.140267 99.140267 0 0 0 90.8288-58.453334 96.6144 96.6144 0 0 0-17.5104-105.9328l-3.908266-3.908266-302.301867-242.4832c-4.522667-3.925333-7.150933-9.6256-7.185067-15.616v-479.914667a97.501867 97.501867 0 0 0-96.1024-98.884267h-2.030933a100.829867 100.829867 0 0 0-48.128 11.707734zM752.298667 75.502933a39.048533 39.048533 0 0 0 0 78.097067h221.696a39.185067 39.185067 0 0 0 39.048533-39.048533 38.673067 38.673067 0 0 0-39.048533-39.048534H752.298667z m0 146.3808a39.048533 39.048533 0 0 0 0 77.960534h221.696a39.168 39.168 0 0 0 39.048533-39.048534 37.7856 37.7856 0 0 0-39.048533-39.048533l-221.696 0.136533z m0 146.875734a39.048533 39.048533 0 0 0 0 77.960533h221.696a39.168 39.168 0 0 0 39.048533-39.048533A37.7856 37.7856 0 0 0 973.994667 368.64l-221.696 0.136533z" horiz-adv-x="1024" />
<glyph glyph-name="shanchu" unicode="&#58907;" d="M731.918 715.466H293.285c-40.383 0-73.106-32.72-73.106-73.103v-24.368h584.844v24.368c0.001 40.383-32.72 73.103-73.105 73.103m-127.696 48.735l10.756-76.91H410.225l10.756 76.91h183.24m5.855 48.735H415.128c-20.108 0-38.813-16.277-41.621-36.218L359.252 674.75c-2.784-19.917 11.4-36.194 31.508-36.194h243.685c20.108 0 34.293 16.276 31.484 36.217l-14.255 101.969c-2.786 19.917-21.49 36.194-41.598 36.194m134.026-243.675H281.1c-26.795 0-46.761-21.845-44.334-48.544l39.933-438.996c2.403-26.7 26.344-48.544 53.14-48.544h365.527c26.795 0 50.736 21.845 53.14 48.544l39.932 438.996c2.426 26.699-17.54 48.544-44.336 48.544M415.128 130.647h-73.106L317.653 471.79h97.474v-341.144z m146.211 0h-97.474V471.79h97.474v-341.144z m121.842 0h-73.106V471.79h97.474l-24.368-341.144z" horiz-adv-x="1024" />
<glyph glyph-name="daoru" unicode="&#59102;" d="M564.4 162.5c-14.1-13.8-36.6-13.8-50.8 0L383.1 289.4c-0.1 0.2-0.3 0.3-0.5 0.5-43.4 41.6-53.6 59.2-54.7 77.9-1.2 19.5 14.6 35.8 34.1 35.8h90.9c4.4 0 8 3.6 8.1 8C467.4 696.8 817.6 802 880.8 818.7c9.4 2.5 19.4 2.5 28.2-1.7 10.8-5.3 15.1-14.2 16.2-21.5 3.5-22.3-10-36-21.1-43.4-5.5-3.7-11.6-6.4-18-8-209.6-53.8-295.4-340.5-229.9-340.5h96.9c21.6 0 32.3-26.2 16.8-41.3L564.4 162.5zM178.1 456.9c-21.3-0.3-38 2.9-38-28.9v-322.7c0-21.6 17-39.1 38-39.1h645.3c30 0 38 13 38 39.1v39.1c0 21.6 17 39.1 38 39.1s38-17.5 38-39.1v-78.1c-0.1-43.2-34-78.1-76-78.1H140.1c-41.9 0-75.9 34.9-75.9 78.1V456.9c0 43.2 34 78.1 75.9 78.1h38c21 0 38-17.5 38-39.1 0.3-21.2-16.7-38.7-38-39z" horiz-adv-x="1024" />
<glyph glyph-name="daochu1" unicode="&#59113;" d="M750.8 343.2c-15.1-15.5-41.3-4.8-41.3 16.8v96.9c0 65.5-286.7-20.3-340.5-229.9-1.6-6.4-4.3-12.5-8-18-7.4-11.1-21.1-24.6-43.4-21.1-7.3 1.1-16.2 5.4-21.5 16.2-4.2 8.8-4.2 18.8-1.7 28.2 16.7 63.2 121.9 413.4 407.1 419.8 4.4 0.1 8 3.7 8 8.1v90.9c0 19.5 16.3 35.3 35.8 34.1 18.7-1.1 36.3-11.3 77.9-54.7 0.2-0.2 0.3-0.4 0.5-0.5l126.9-130.5c13.8-14.2 13.8-36.7 0-50.8L750.8 343.2zM178.1 456.9c-21.3-0.3-38 2.9-38-28.9v-322.7c0-21.6 17-39.1 38-39.1h645.3c30 0 38 13 38 39.1v39.1c0 21.6 17 39.1 38 39.1s38-17.5 38-39.1v-78.1c-0.1-43.2-34-78.1-76-78.1H140.1c-41.9 0-75.9 34.9-75.9 78.1V456.9c0 43.2 34 78.1 75.9 78.1h38c21 0 38-17.5 38-39.1 0.3-21.2-16.7-38.7-38-39z" horiz-adv-x="1024" />
<glyph glyph-name="gengduo" unicode="&#58910;" d="M507.014425 634.077405c68.738471 0 124.45949 56.634317 124.45949 126.50156 0 69.873174-55.722996 126.525282-124.45949 126.525282-68.756263 0-124.49705-56.652108-124.49705-126.525282 0-69.867243 55.740788-126.50156 124.49705-126.50156z m0-126.515397c-68.756263 0-124.49705-56.650131-124.49705-126.533189 0-69.887012 55.740788-126.513421 124.49705-126.513421 68.738471 0 124.45949 56.624432 124.45949 126.513421 0.001977 69.879104-55.721019 126.533189-124.45949 126.533189z m0-379.571892c-68.756263 0-124.49705-56.640247-124.49705-126.515398 0-69.867243 55.740788-126.523305 124.49705-126.523305 68.738471 0 124.45949 56.658039 124.45949 126.523305 0.001977 69.875151-55.721019 126.515398-124.45949 126.515398z" horiz-adv-x="1024" />
<glyph glyph-name="bianji-copy" unicode="&#60220;" d="M576 768a48 48 0 0 0 6.528-95.552L576 672v-0.32H223.04a64 64 0 0 1-63.552-56.576l-0.448-7.488v-512a64 64 0 0 1 56.512-63.552l7.488-0.448h512a64 64 0 0 1 63.552 56.576l0.448 7.424V320h0.96a48 48 0 0 0 95.552 4.736l0.32-4.736H896v-256a128 128 0 0 0-128-128H192a128 128 0 0 0-128 128V640a128 128 0 0 0 118.4 127.68L192 768h384z m290.304-77.696a48 48 0 0 0 0-67.904l-384.64-384.64a48 48 0 0 0-67.968 67.84l384.64 384.64a48 48 0 0 0 67.968 0z" horiz-adv-x="1024" />
<glyph glyph-name="chuyidong" unicode="&#58882;" d="M512 481.08344739L156.18756349 836.97598447a68.64728811 68.64728811 0 1 1-97.08344532-97.08344736L414.83645201 384l-355.89253912-355.81243651a68.64728811 68.64728811 0 1 1 97.08344739-97.08344532L512 286.83645201l355.81243651-355.89253912a68.64728811 68.64728811 0 1 1 97.08344532 97.08344739L609.16354799 384l355.89253912 355.81243651a68.64728811 68.64728811 0 1 1-97.08344739 97.08344532L512 481.16354799z" horiz-adv-x="1024" />
<glyph glyph-name="xinzeng" unicode="&#59470;" d="M433.230769 462.769231V817.230769a78.769231 78.769231 0 1 0 157.538462 0v-354.461538h354.461538a78.769231 78.769231 0 1 0 0-157.538462h-354.461538v-354.461538a78.769231 78.769231 0 1 0-157.538462 0v354.461538H78.769231a78.769231 78.769231 0 1 0 0 157.538462h354.461538z" horiz-adv-x="1024" />
<glyph glyph-name="chushaixuanxiang" unicode="&#58881;" d="M512 275.456l253.33760002-253.33760001a76.6976 76.6976 0 1 1 108.54399997 108.54400002L620.6464 384l253.23520001 253.33760002a76.6976 76.6976 0 1 1-108.54400002 108.54399997L512 492.6464 258.66239998 745.88160001a76.6976 76.6976 0 1 1-108.54399997-108.54400002L403.3536 384 150.11839999 130.66239998000003a76.6976 76.6976 0 1 1 108.54400002-108.54399997L512 275.35360000000003z" horiz-adv-x="1024" />
<glyph glyph-name="xiazai" unicode="&#58892;" d="M1251.23064 158.403494V-44.917185c0-16.857383-6.020494-31.306568-17.717453-43.175541-11.868974-11.868974-26.318159-17.717453-43.175542-17.717454H255.26894c-16.857383 0-31.306568 5.84848-43.175542 17.717454-11.868974 11.868974-17.717453 26.318159-17.717453 43.175541V158.403494c0 16.857383 5.84848 31.306568 17.717453 43.175542 11.868974 11.868974 26.318159 17.717453 43.175542 17.717453h295.348228l85.663027-86.351083c24.598018-23.737947 53.324374-35.606921 86.351083-35.606921s61.753066 11.868974 86.351084 35.606921l86.351083 86.351083h294.660172c16.857383 0 31.306568-6.020494 43.175541-17.717453 12.040988-11.868974 18.061482-26.318159 18.061482-43.175542z m-206.416933 361.401646c7.224593-17.373425 4.300353-32.166639-8.944733-44.37964L751.357635 190.742147c-7.568621-8.084663-17.201411-12.040988-28.554343-12.040988-11.352931 0-20.985721 3.956325-28.554342 12.040988L409.737611 475.253486c-13.073072 12.213002-16.169326 27.006215-8.944733 44.37964 7.224593 16.513355 19.609609 24.770032 37.499076 24.770032h162.553334V829.086511c0 11.008903 3.956325 20.469679 12.040988 28.554342 8.084663 8.084663 17.545439 12.040988 28.554342 12.040988h162.553335c11.008903 0 20.469679-3.956325 28.554342-12.040988 8.084663-8.084663 12.040988-17.545439 12.040988-28.554342v-284.511339h162.553334c17.889467 0 30.446498-8.256677 37.67109-24.770032z m-49.540063-532.211658c8.084663 8.084663 12.040988 17.545439 12.040987 28.554343 0 11.008903-3.956325 20.469679-12.040987 28.554342-8.084663 8.084663-17.545439 12.040988-28.554343 12.040988-11.008903 0-20.469679-3.956325-28.554342-12.040988-8.084663-8.084663-12.040988-17.545439-12.040988-28.554342 0-11.008903 3.956325-20.469679 12.040988-28.554343 8.084663-8.084663 17.545439-12.040988 28.554342-12.040987 11.008903 0 20.469679 3.956325 28.554343 12.040987z m162.553334 0c8.084663 8.084663 12.040988 17.545439 12.040988 28.554343 0 11.008903-3.956325 20.469679-12.040988 28.554342-8.084663 8.084663-17.545439 12.040988-28.554342 12.040988-11.008903 0-20.469679-3.956325-28.554343-12.040988-8.084663-8.084663-12.040988-17.545439-12.040987-28.554342 0-11.008903 3.956325-20.469679 12.040987-28.554343 8.084663-8.084663 17.545439-12.040988 28.554343-12.040987 11.008903 0 20.469679 3.956325 28.554342 12.040987z" horiz-adv-x="1448" />
<glyph glyph-name="xiazai1" unicode="&#58912;" d="M884.285714 896H139.714286C57.285714 896 0 838.714286 0 756.285714V11.714286c0-82.428571 57.285714-139.714286 139.714286-139.714286H884.285714c82.428571 0 139.714286 57.285714 139.714286 139.714286V756.285714C1024 838.714286 966.714286 896 884.285714 896z m0-651.714286c0-18.714286-27.714286-46.571429-46.571428-46.571428h-93.142857c-38.142857 0-46.571429-62-46.571429-46.571429v-93.142857c0-18.714286-27.714286-46.571429-46.571429-46.571429H372.285714c-18.714286 0-46.571429 27.714286-46.571428 46.571429v93.142857c0-15.571429-0.285714 46.571429-46.571429 46.571429h-93.142857c-18.714286 0-46.571429 27.714286-46.571429 46.571428V709.857143c0 18.714286 27.714286 46.571429 46.571429 46.571428h651.714286c18.714286 0 46.571429-27.714286 46.571428-46.571428v-465.571429z m0 0M698.142857 430.571429h-93.142857V616.714286c0 25.714286-20.857143 46.571429-46.571429 46.571428h-93.142857c-25.714286 0-46.571429-20.857143-46.571428-46.571428v-186.142857H325.714286c-25.714286 0-31.714286-14.714286-13.571429-32.857143l199.857143-199.714286 199.714286 199.714286c18.285714 18 12.142857 32.857143-13.571429 32.857143z" horiz-adv-x="1024" />
<glyph glyph-name="wenjianjia" unicode="&#58954;" d="M1106.959501 524.377386c0 24.290647-6.940185 31.230832-31.230832 31.230832H38.171017c-24.290647 0-34.700925-6.940185-34.700925-34.700924v-544.80452c0-72.871942 31.230832-104.102774 100.632682-104.102774h905.694137c69.40185 0 100.632682 31.230832 100.632682 100.632682-3.470092 190.855086-3.470092 367.829803-3.470092 551.744704zM31.230832 611.129698h1016.737097c58.991572 0 58.991572 0 58.991572 55.52148 0 65.931757-27.76074 90.222404-90.222405 90.222404H579.505444c-55.52148 0-55.52148 0-55.52148 55.52148 0 58.991572-27.76074 83.28222-86.752312 83.282219h-347.009248C27.76074 899.147374 3.470092 874.856727 0 812.395062v-170.034532c0-27.76074 6.940185-31.230832 31.230832-31.230832z" horiz-adv-x="1114" />
<glyph glyph-name="shangchuan" unicode="&#59469;" d="M996.2496 748.97408l-70.32832 108.07296A85.72928 85.72928 0 0 1 854.016 896H169.984a85.72928 85.72928 0 0 1-71.82336-38.912L27.83232 749.01504A171.49952 171.49952 0 0 1 0 655.4624v-697.7536A85.7088 85.7088 0 0 1 85.7088-128h852.5824A85.7088 85.7088 0 0 1 1024-42.2912v697.7536a171.49952 171.49952 0 0 1-27.7504 93.51168z m-337.92-547.81952v-146.28864H365.71136v146.28864H146.28864l340.5824 354.95936a34.59072 34.59072 0 0 0 50.25792 0l340.5824-355.0208H658.28864zM90.29632 706.33472L172.4416 832.57344h679.19872l82.14528-126.23872H90.25536z" horiz-adv-x="1024" />
<glyph glyph-name="chakan" unicode="&#58965;" d="M512 640c164.928 0 314.24-85.312 448-256-133.76-170.688-283.072-256-448-256s-314.24 85.312-448 256c133.76 170.688 283.072 256 448 256z m0-128a128 128 0 1 1 0-256 128 128 0 0 1 0 256z" horiz-adv-x="1024" />
<glyph glyph-name="shangchuan-copy" unicode="&#60215;" d="M996.2496 748.97408l-70.32832 108.07296A85.72928 85.72928 0 0 1 854.016 896H169.984a85.72928 85.72928 0 0 1-71.82336-38.912L27.83232 749.01504A171.49952 171.49952 0 0 1 0 655.4624v-697.7536A85.7088 85.7088 0 0 1 85.7088-128h852.5824A85.7088 85.7088 0 0 1 1024-42.2912v697.7536a171.49952 171.49952 0 0 1-27.7504 93.51168z m-337.92-547.81952v-146.28864H365.71136v146.28864H146.28864l340.5824 354.95936a34.59072 34.59072 0 0 0 50.25792 0l340.5824-355.0208H658.28864zM90.29632 706.3347200000001L172.4416 832.57344h679.19872l82.14528-126.23872H90.25536z" horiz-adv-x="1024" />
<glyph glyph-name="xiazai1-copy" unicode="&#60216;" d="M884.285714 896H139.714286C57.285714 896 0 838.714286 0 756.285714V11.714286000000016c0-82.428571 57.285714-139.714286 139.714286-139.714286H884.285714c82.428571 0 139.714286 57.285714 139.714286 139.714286V756.285714C1024 838.714286 966.714286 896 884.285714 896z m0-651.714286c0-18.714286-27.714286-46.571429-46.571428-46.571428h-93.142857c-38.142857 0-46.571429-62-46.571429-46.571429v-93.142857c0-18.714286-27.714286-46.571429-46.571429-46.571429H372.285714c-18.714286 0-46.571429 27.714286-46.571428 46.571429v93.142857c0-15.571429-0.285714 46.571429-46.571429 46.571429h-93.142857c-18.714286 0-46.571429 27.714286-46.571429 46.571428V709.857143c0 18.714286 27.714286 46.571429 46.571429 46.571428h651.714286c18.714286 0 46.571429-27.714286 46.571428-46.571428v-465.571429z m0 0M698.142857 430.571429h-93.142857V616.714286c0 25.714286-20.857143 46.571429-46.571429 46.571428h-93.142857c-25.714286 0-46.571429-20.857143-46.571428-46.571428v-186.142857H325.714286c-25.714286 0-31.714286-14.714286-13.571429-32.857143l199.857143-199.714286 199.714286 199.714286c18.285714 18 12.142857 32.857143-13.571429 32.857143z" horiz-adv-x="1024" />
<glyph glyph-name="xiazai-copy" unicode="&#60217;" d="M1251.23064 158.40349400000002V-44.91718500000002c0-16.857383-6.020494-31.306568-17.717453-43.175541-11.868974-11.868974-26.318159-17.717453-43.175542-17.717454H255.26894c-16.857383 0-31.306568 5.84848-43.175542 17.717454-11.868974 11.868974-17.717453 26.318159-17.717453 43.175541V158.40349400000002c0 16.857383 5.84848 31.306568 17.717453 43.175542 11.868974 11.868974 26.318159 17.717453 43.175542 17.717453h295.348228l85.663027-86.351083c24.598018-23.737947 53.324374-35.606921 86.351083-35.606921s61.753066 11.868974 86.351084 35.606921l86.351083 86.351083h294.660172c16.857383 0 31.306568-6.020494 43.175541-17.717453 12.040988-11.868974 18.061482-26.318159 18.061482-43.175542z m-206.416933 361.401646c7.224593-17.373425 4.300353-32.166639-8.944733-44.37964L751.357635 190.74214700000005c-7.568621-8.084663-17.201411-12.040988-28.554343-12.040988-11.352931 0-20.985721 3.956325-28.554342 12.040988L409.737611 475.253486c-13.073072 12.213002-16.169326 27.006215-8.944733 44.37964 7.224593 16.513355 19.609609 24.770032 37.499076 24.770032h162.553334V829.086511c0 11.008903 3.956325 20.469679 12.040988 28.554342 8.084663 8.084663 17.545439 12.040988 28.554342 12.040988h162.553335c11.008903 0 20.469679-3.956325 28.554342-12.040988 8.084663-8.084663 12.040988-17.545439 12.040988-28.554342v-284.511339h162.553334c17.889467 0 30.446498-8.256677 37.67109-24.770032z m-49.540063-532.211658c8.084663 8.084663 12.040988 17.545439 12.040987 28.554343 0 11.008903-3.956325 20.469679-12.040987 28.554342-8.084663 8.084663-17.545439 12.040988-28.554343 12.040988-11.008903 0-20.469679-3.956325-28.554342-12.040988-8.084663-8.084663-12.040988-17.545439-12.040988-28.554342 0-11.008903 3.956325-20.469679 12.040988-28.554343 8.084663-8.084663 17.545439-12.040988 28.554342-12.040987 11.008903 0 20.469679 3.956325 28.554343 12.040987z m162.553334 0c8.084663 8.084663 12.040988 17.545439 12.040988 28.554343 0 11.008903-3.956325 20.469679-12.040988 28.554342-8.084663 8.084663-17.545439 12.040988-28.554342 12.040988-11.008903 0-20.469679-3.956325-28.554343-12.040988-8.084663-8.084663-12.040988-17.545439-12.040987-28.554342 0-11.008903 3.956325-20.469679 12.040987-28.554343 8.084663-8.084663 17.545439-12.040988 28.554343-12.040987 11.008903 0 20.469679 3.956325 28.554342 12.040987z" horiz-adv-x="1448" />
<glyph glyph-name="chakan-copy" unicode="&#60218;" d="M512 640c164.928 0 314.24-85.312 448-256-133.76-170.688-283.072-256-448-256s-314.24 85.312-448 256c133.76 170.688 283.072 256 448 256z m0-128a128 128 0 1 1 0-256 128 128 0 0 1 0 256z" horiz-adv-x="1024" />
<glyph glyph-name="wenjianjia-copy" unicode="&#60219;" d="M1106.959501 524.377386c0 24.290647-6.940185 31.230832-31.230832 31.230832H38.171017c-24.290647 0-34.700925-6.940185-34.700925-34.700924v-544.80452c0-72.871942 31.230832-104.102774 100.632682-104.102774h905.694137c69.40185 0 100.632682 31.230832 100.632682 100.632682-3.470092 190.855086-3.470092 367.829803-3.470092 551.744704zM31.230832 611.129698h1016.737097c58.991572 0 58.991572 0 58.991572 55.52148 0 65.931757-27.76074 90.222404-90.222405 90.222404H579.505444c-55.52148 0-55.52148 0-55.52148 55.52148 0 58.991572-27.76074 83.28222-86.752312 83.282219h-347.009248C27.76074 899.147374 3.470092 874.856727 0 812.395062v-170.034532c0-27.76074 6.940185-31.230832 31.230832-31.230832z" horiz-adv-x="1114" />
<glyph glyph-name="daochu" unicode="&#58936;" d="M469.333333 213.333333V853.333333c0 23.466667 19.2 42.666667 42.666667 42.666667s42.666667-19.2 42.666667-42.666667v-640c0-23.466667-19.2-42.666667-42.666667-42.666666s-42.666667 19.2-42.666667 42.666666M226.210133 627.9424L481.826133 883.566933a42.7776 42.7776 0 0 0 60.330667 0c16.597333-16.597333 16.597333-43.776 0-60.330666L286.5408 567.611733a42.7776 42.7776 0 0 0-60.330667 0 42.7776 42.7776 0 0 0 0 60.330667M542.0544 883.5584l255.616-255.616a42.7776 42.7776 0 0 0 0-60.330667c-16.597333-16.605867-43.776-16.605867-60.330667 0L481.723733 823.210667a42.7776 42.7776 0 0 0 0 60.330666 42.7776 42.7776 0 0 0 60.330667 0M896-128H128c-70.570667 0-128 57.429333-128 128V256c0 23.594667 19.072 42.666667 42.666667 42.666667s42.666667-19.072 42.666666-42.666667v-256c0-23.552 19.114667-42.666667 42.666667-42.666667h768c23.552 0 42.666667 19.114667 42.666667 42.666667V256c0 23.594667 19.072 42.666667 42.666666 42.666667s42.666667-19.072 42.666667-42.666667v-256c0-70.570667-57.429333-128-128-128" horiz-adv-x="1024" />
<glyph glyph-name="xingxing" unicode="&#59504;" d="M313.991837-18.285714c-20.37551 0-40.228571 6.269388-56.946939 18.808163-30.302041 21.942857-44.930612 58.514286-38.661225 95.085714l24.032654 141.061225c3.134694 18.285714-3.134694 36.571429-16.195919 49.110204L123.297959 386.089796c-26.644898 26.122449-36.04898 64.261224-24.555102 99.787755 11.493878 35.526531 41.795918 61.126531 78.889796 66.35102l141.583674 20.375511c18.285714 2.612245 33.959184 14.106122 41.795918 30.30204l63.216326 128.522449C440.946939 765.387755 474.383673 786.285714 512 786.285714s71.053061-20.897959 87.24898-54.334694L662.987755 603.428571c8.359184-16.195918 24.032653-27.689796 41.795918-30.30204l141.583674-20.375511c37.093878-5.22449 67.395918-30.82449 78.889796-66.35102 11.493878-35.526531 2.089796-73.665306-24.555102-99.787755l-102.4-99.787755c-13.061224-12.538776-19.330612-31.346939-16.195919-49.110204l24.032654-141.061225c6.269388-37.093878-8.359184-73.142857-38.661225-95.085714-30.302041-21.942857-69.485714-24.555102-102.4-7.314286L538.122449 59.559184c-16.195918 8.359184-35.526531 8.359184-51.722449 0l-126.955102-66.87347c-14.628571-7.314286-30.302041-10.971429-45.453061-10.971428z m162.481632 96.653061z" horiz-adv-x="1024" />
<glyph glyph-name="214" unicode="&#59186;" d="M302 704h420c44.184 0 80-35.818 80-80v-480c0-44.184-35.816-80-80-80H302c-44.182 0-80 35.816-80 80V624c0 44.182 35.818 80 80 80zM722 64H302c-44.112 0-80 35.888-80 80V624c0 44.112 35.888 80 80 80h420c44.112 0 80-35.888 80-80v-480c0-44.112-35.888-80-80-80zM302 644c-11.028 0-20-8.972-20-20v-480c0-11.028 8.972-20 20-20h420c11.028 0 20 8.972 20 20V624c0 11.028-8.972 20-20 20H302zM352 354c-16.568 0-30 13.43-30 30l0.01 159.77c0 16.568 13.432 30 30 30s30-13.432 30-30L382 384c0-16.568-13.43-30-30-30zM404.686 459.286a29.906 29.906 0 0 0-21.614 9.192l-52.684 54.714c-11.492 11.936-11.132 30.926 0.802 42.418 11.936 11.492 30.93 11.132 42.418-0.802l52.684-54.714c11.492-11.936 11.132-30.926-0.802-42.418a29.896 29.896 0 0 0-20.804-8.39zM644 354h-132c-16.568 0-30 13.432-30 30s13.432 30 30 30h132c16.568 0 30-13.432 30-30s-13.432-30-30-30zM644 194h-132c-16.568 0-30 13.432-30 30s13.432 30 30 30h132c16.568 0 30-13.432 30-30s-13.432-30-30-30zM352 194a30.26 30.26 0 0 0-21.22 8.782C325.2 208.38 322 216.10000000000002 322 224s3.2 15.622 8.78 21.22c5.58 5.58 13.32 8.78 21.22 8.78 7.9 0 15.62-3.2 21.22-8.78 5.58-5.6 8.78-13.32 8.78-21.22s-3.2-15.62-8.78-21.218A30.26 30.26 0 0 0 352 194zM644 514h-132c-16.568 0-30 13.432-30 30s13.432 30 30 30h132c16.568 0 30-13.432 30-30s-13.432-30-30-30z" horiz-adv-x="1024" />
<glyph glyph-name="fenkai-copy" unicode="&#60214;" d="M958.872189 371.96796600000005L511.152191 371.96796600000005 287.727609 758.974184 64.303027 371.96796600000005 288.138978-15.753543000000036 735.859999-15.753543000000036 959.69595 371.96796600000005 959.284581 372.68120999999996ZM959.308117 425.845037L959.69595 426.49893 753.451656 783.753543 340.165912 783.753543 339.778078 783.087371 546.022373 425.845037Z" horiz-adv-x="1024" />
<glyph glyph-name="daibantixing" unicode="&#58919;" d="M301.238 744.6949999999999L239.98 805.953C137.597 727.988 69.913 606.7570000000001 63.487 469.676h85.676c6.426 113.52 64.685 212.904 152.075 275.019z m573.599-275.019h85.676c-6.426 137.081-74.109 258.312-176.92 336.277l-61.258-61.258c87.817-62.115 146.076-161.499 152.502-275.019z m-84.391-21.419c0 131.512-91.245 241.606-214.189 270.735v29.13c0 35.555-28.701 64.257-64.257 64.257-35.555 0-64.257-28.701-64.257-64.257v-29.13c-122.945-29.13-214.189-139.223-214.189-270.735v-235.608l-85.676-85.676v-42.838h728.244v42.838l-85.676 85.676V448.257zM512-44.37900000000002c5.997 0 11.566 0.428 17.135 1.714 27.845 5.569 50.977 24.846 61.687 50.549 4.284 10.281 6.854 21.419 6.854 33.414H426.324c0-47.123 38.554-85.677 85.676-85.677z" horiz-adv-x="1024" />
<glyph glyph-name="mn_xiaoxi_fill" unicode="&#58880;" d="M512 832C264.96 832 64 659.744 64 448c0-182.976 149.344-339.168 357.056-375.744l64.896-90.848C491.968-27.008000000000038 501.664-32 512-32s20.032 4.992 26.048 13.408l64.896 90.88C810.656 108.832 960 264.99199999999996 960 448c0 211.744-200.96 384-448 384zM288.032 384c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64z m224 0c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64z m224 0c-35.296 0-64 28.704-64 64s28.704 64 64 64 64-28.704 64-64-28.704-64-64-64z" horiz-adv-x="1024" />
<glyph glyph-name="shouye3" unicode="&#58918;" d="M50.65 449.1l368.05 365.7s67.05 34.15 113.9 0 371.75-369.5 371.75-369.5 11.4-93.65-113.6-92.4V34s-31.95-58.05-99.95-56.95c0 0-57.25-1.1-96.15 59.5v313.85H355.4v-303.7s-30.35-81-108.85-69.6c0 0-68.35 11.4-87.3 62v311.3S38.15 358 50.65 449.1zM702.2 788.95l143-141.75s22.8-11.4 29.1 20.25 6.35 135.4 6.35 135.4-2.55 22.8-24.05 16.45l-143 1.1c0 0.05-22.8-4.85-11.4-31.45z" horiz-adv-x="1024" />
<glyph glyph-name="touxiang" unicode="&#58920;" d="M1416.767919-128C1134.646702-128 904.767919 101.880254 904.767919 384 904.767919 666.121218 1134.646702 896 1416.767919 896c282.119746 0 511.998528-229.878782 511.998528-512 0-282.119746-229.878782-512-511.998528-512z m0 975.771006c-255.600422 0-463.771006-208.170584-463.771006-463.771006S1161.167497-79.776893 1416.767919-79.776893 1880.544812 128.399578 1880.544812 384 1672.368341 847.771006 1416.767919 847.771006z m0 0M1414.358677 262.632774c-125.390969 0-227.471012 102.080043-227.471012 227.465126 0 125.385082 102.080043 227.465125 227.471012 227.465125 125.385082 0 227.465125-102.080043 227.465125-227.465125 0-125.385082-102.080043-227.465125-227.465125-227.465126z m0 406.707144c-98.865758 0-179.242018-80.37626-179.242018-179.242018S1315.492919 310.855881 1414.358677 310.855881c98.859871 0 179.236131 80.37626 179.236131 179.242019S1513.218548 669.339918 1414.358677 669.339918z m0 0M1416.767919-128c-131.819539 0-258.009664 50.638236-353.65525 141.460923l-10.452313 9.645798 4.019328 13.665127C1100.889349 197.52584 1247.976743 310.050838 1414.358677 310.050838c168.791176 0 315.87857-114.135084 358.47815-276.491803l3.214285-13.665127-10.446427-9.64727c-94.041387-89.218488-217.823742-138.246638-348.836766-138.246638z m-309.451471 166.381934c85.200631-76.358404 194.511344-118.158827 309.451471-118.158827 113.330041 0 221.036555 40.996852 305.432143 115.74517C1681.209097 170.195586 1556.623171 262.632774 1414.358677 262.632774c-139.855252 0-264.442649-91.632145-307.042229-224.25084z m0 0" horiz-adv-x="3562" />
<glyph glyph-name="touxiangtongyong" unicode="&#58930;" d="M874.04 746.04c-200.06 199.67-524.01 199.67-724.08 0-199.67-200.07-199.67-524.01 0-724.08 200.06-199.66 524.01-199.67 724.08 0 199.67 200.06 199.67 524.02 0 724.08zM248.42 21.96c0.05 0.72 0.08 1.44 0.08 2.17 0 70.35 27.42 136.53 77.14 186.34 49.8 49.81 115.89 77.13 186.34 77.13 70.35 0 136.53-27.42 186.34-77.13 49.8-49.81 77.13-115.99 77.13-186.34 0-0.74 0.03-1.47 0.08-2.2C701.59-32.01 610.52-63.89 512-64c-98.53 0.11-189.62 32-263.58 85.96z m100.86 496.08c0 89.73 73.07 162.79 162.79 162.79 89.73 0 162.79-73.06 162.79-162.79 0-89.73-73.06-162.8-162.79-162.8-89.72 0-162.79 73.06-162.79 162.8z m487.7-442.09c-10.99 70.16-44.21 132.98-92.24 180.93-32.27 32.27-71.13 57.75-114.44 74.52 61.72 39.15 102.71 108.14 102.71 186.63 0 122-98.94 220.93-220.93 220.93-122 0-220.93-98.94-220.93-220.93 0-78.49 40.99-147.49 102.71-186.63-43.31-16.66-82.17-42.25-114.44-74.52-48.05-48.04-81.27-110.83-92.36-180.98C110.91 156.19 64.14 264.63 64 384c0.29 247.3 200.7 447.71 448 448 247.3-0.29 447.71-200.7 448-448-0.14-119.35-46.89-227.77-123.02-308.05z" horiz-adv-x="1024" />
<glyph glyph-name="touxiangxiugai" unicode="&#59035;" d="M484.072727 849.454545c-256 0-465.454545-209.454545-465.454545-465.454545 0-130.327273 55.854545-251.345455 144.290909-335.127273l69.818182-55.854545c69.818182-46.545455 158.254545-74.472727 251.345454-74.472727s181.527273 27.927273 251.345455 74.472727c23.272727 13.963636 46.545455 32.581818 69.818182 55.854545 88.436364 83.781818 144.290909 204.8 144.290909 335.127273 0 256-209.454545 465.454545-465.454546 465.454545z m0-851.781818c-79.127273 0-153.6 23.272727-218.763636 69.818182 46.545455 65.163636 125.672727 111.709091 218.763636 111.709091 88.436364 0 167.563636-46.545455 218.763637-111.709091-65.163636-41.890909-139.636364-69.818182-218.763637-69.818182z m-162.909091 446.836364c0 88.436364 74.472727 162.909091 162.909091 162.909091s162.909091-74.472727 162.909091-162.909091-74.472727-162.909091-162.909091-162.909091c-88.436364 4.654545-162.909091 74.472727-162.909091 162.909091z m442.181819-321.163636c-37.236364 51.2-88.436364 93.090909-148.945455 116.363636 69.818182 41.890909 121.018182 121.018182 121.018182 209.454545 0 134.981818-111.709091 242.036364-246.690909 242.036364s-251.345455-111.709091-251.345455-246.690909c0-88.436364 46.545455-162.909091 121.018182-209.454546-60.509091-23.272727-111.709091-65.163636-153.6-116.363636-65.163636 69.818182-102.4 162.909091-102.4 260.654546 0 209.454545 172.218182 381.672727 381.672727 381.672727s381.672727-172.218182 381.672728-381.672727c0-97.745455-37.236364-186.181818-102.4-256z" horiz-adv-x="1024" />
<glyph glyph-name="zhedie" unicode="&#58951;" d="M130.901333 366.506667l149.205334-130.517334a8.533333 8.533333 0 0 1 14.122666 6.4V503.466667a8.533333 8.533333 0 0 1-14.122666 6.4L130.901333 379.392a8.533333 8.533333 0 0 1 0-12.8zM128 682.666667m42.666667 0l682.666666 0q42.666667 0 42.666667-42.666667l0 0q0-42.666667-42.666667-42.666667l-682.666666 0q-42.666667 0-42.666667 42.666667l0 0q0 42.666667 42.666667 42.666667ZM128 170.666667m42.666667 0l682.666666 0q42.666667 0 42.666667-42.666667l0 0q0-42.666667-42.666667-42.666667l-682.666666 0q-42.666667 0-42.666667 42.666667l0 0q0 42.666667 42.666667 42.666667ZM384 426.666667m42.666667 0l426.666666 0q42.666667 0 42.666667-42.666667l0 0q0-42.666667-42.666667-42.666667l-426.666666 0q-42.666667 0-42.666667 42.666667l0 0q0 42.666667 42.666667 42.666667Z" horiz-adv-x="1024" />
<glyph glyph-name="zhongzhi" unicode="&#58884;" d="M524.8 789.333333c-106.666667 0-209.066667-42.666667-285.866667-110.933333l-8.533333 68.266667c0 25.6-21.333333 42.666667-46.933333 38.4-25.6 0-42.666667-21.333333-38.4-46.933334l8.533333-115.2c4.266667-55.466667 51.2-98.133333 106.666667-98.133333h8.533333L384 533.333333c25.6 0 42.666667 21.333333 38.4 46.933334 0 25.6-21.333333 42.666667-46.933333 38.4l-85.333334-4.266667c64 55.466667 145.066667 89.6 230.4 89.6 187.733333 0 341.333333-153.6 341.333334-341.333333s-153.6-341.333333-341.333334-341.333334-341.333333 153.6-341.333333 341.333334c0 25.6-17.066667 42.666667-42.666667 42.666666s-42.666667-17.066667-42.666666-42.666666c0-234.666667 192-426.666667 426.666666-426.666667s426.666667 192 426.666667 426.666667c4.266667 234.666667-187.733333 426.666667-422.4 426.666666z" horiz-adv-x="1024" />
<glyph glyph-name="weixiubanshou" unicode="&#59157;" d="M975.8922 152.928413l-230.14176 230.125303c14.820545 41.375012 22.321332 84.624306 22.321332 128.94697 0 211.731736-172.249292 383.999314-383.999314 383.999314-52.713963 0-103.999814-10.62581-152.392871-31.572058l-22.893673-9.910839c-0.036571-0.036571 0.142628-0.053028 0.071314-0.0896-2.177825-0.947198-4.21485-2.322282-5.999532-4.106964-7.572101-7.588558-7.572101-19.927736 0.036571-27.536408 0.107886-0.107886-0.107886-0.160914-0.036571-0.266971l214.999388-214.999388-129.321826-129.303541L77.856775 688.90917c-0.321828-0.036571-0.643656-0.053028-1.071541 0.374856-8.928898 8.928898-23.392873 8.928898-32.321771 0-2.428339-2.446624-4.21485-5.286391-5.321133-8.321814-0.107886-0.285257-0.250514-0.142628-0.393142-0.160914l-7.107644-16.427856C10.715409 616.035243 0.071314 564.749392 0.071314 511.998857c0-211.713451 172.249292-383.999314 383.999314-383.999314 44.286092 0 87.535387 7.500787 128.963427 22.321332l230.14176-230.107018C774.248675-110.857173 815.570658-128 859.534922-128c0 0 0 0 0.036571 0 43.927693 0 85.286248 17.142827 116.357278 48.213857C1040.034714-15.643629 1040.034714 88.749327 975.8922 152.928413zM924.213207-28.072407C906.927752-45.357862 883.962764-54.857273 859.569665-54.857273l-0.036571 0c-24.427842 0-47.39283 9.499412-64.643542 26.784866L530.213453 236.570778l-22.820531-9.857811C468.214021 209.74934 426.714667 201.142269 384.070628 201.142269c-171.391694 0-310.856588 139.428322-310.856588 310.856588 0 23.820757 2.678852 47.268487 7.999986 70.125589l193.356455-193.393026c8.107871-6.463988 19.249337-6.553588 27.499837-0.411428l203.28558 203.28558c0.071314 0.071314-0.071314 0.160914 0 0.232228 8.285242 8.285242 8.535756 21.215048 1.428112 30.196975L313.928582 814.873745c22.893673 5.302848 46.321289 7.9817 70.142046 7.9817 171.391694 0 310.856588-139.446608 310.856588-310.856588 0-42.697067-8.60707-84.178135-25.570697-123.285723l-9.857811-22.820531L924.176635 101.214676C959.820915 65.570397 959.820915 7.571872 924.213207-28.072407z" horiz-adv-x="1025" />
<glyph glyph-name="shouye" unicode="&#58927;" d="M602.951998 857.089946A125.126544 125.126544 0 0 1 512.025344 896c-34.558272 0-66.812659-13.823309-90.926654-38.910054L32.817304 452.988551c-40.036398-41.725914-34.916654-77.820109-28.260987-92.872157 4.710164-10.649068 23.960402-32.561572 69.833309-32.561572h61.027348v-318.345682c0-76.79616 43.261837-137.055547 115.296636-137.055548h165.265336v328.994751c0 35.326234 5.068547 61.436928 31.486426 61.436928h124.512174c30.923254 0 35.9918-22.219689 35.991801-61.436928v-328.994751h165.265337c72.034798 0 122.720264 66.454277 122.720264 137.055548v318.345682h59.849807c45.872906 0 58.877056 21.912504 63.587221 32.561572 6.655667 15.103245 11.775411 51.146243-28.260987 92.872157L602.951998 857.089946z m238.580071-473.064347v-374.816459c0-35.326234-34.251087-83.861407-70.242888-83.861407h-103.572422v275.80061c0 73.877906-22.936453 118.931653-94.971251 118.931653h-120.825959c-72.034798 0-92.360182-48.330383-92.360182-118.931653v-275.80061H250.611215c-35.9918 0-58.569872 48.586371-58.569872 83.861407V384.025599H53.859452c2.20149 3.891005 16.127194 23.755612 22.424479 30.360082l385.516724 398.213689c11.570621 12.133793 34.353482 29.540923 50.224689 29.387331 15.871206 0.153592 40.855557-17.253537 52.477376-29.387331l383.315234-398.213689c6.348483-6.60447 25.752312-26.469077 27.953803-30.360082h-134.239688z" horiz-adv-x="1024" />
<glyph glyph-name="data-analysis" unicode="&#58917;" d="M902-6H182c-49.6875 0-90 40.3125-90 90V742.125c0 16.5938 13.4063 30 30 30s30-13.4063 30-30v-658.125c0-16.5938 13.4063-30 30-30h720c16.5938 0 30-13.4063 30-30s-13.4063-30-30-30ZM478.25 144c-16.5938 0-30 13.4063-30 30V742.125c0 16.5938 13.4063 30 30 30s30-13.4063 30-30v-568.125c0-16.5938-13.4063-30-30-30ZM822.875 144c-16.5938 0-30 13.4063-30 30V742.125c0 16.5938 13.4063 30 30 30s30-13.4063 30-30v-568.125c0-16.5938-13.4063-30-30-30ZM306.687 144c-16.5938 0-30 13.4063-30 30V543.563c0 16.5938 13.4063 30 30 30s30-13.4063 30-30V174c0-16.5938-13.4063-30-30-30ZM651.313 144c-16.5938 0-30 13.4063-30 30V543.563c0 16.5938 13.4063 30 30 30s30-13.4063 30-30V174c0-16.5938-13.4063-30-30-30Z" horiz-adv-x="1024" />
<glyph glyph-name="liucheng" unicode="&#60213;" d="M544 192h-192a32 32 0 0 0-32 32v96a32 32 0 0 0 64 0v-64h160v64a32 32 0 0 0 32 32h192a32 32 0 0 0 32-32v-192a32 32 0 0 0-32-32h-192a32 32 0 0 0-32 32v64z m-64 320v-64a32 32 0 0 0-32-32H256a32 32 0 0 0-32 32V640a32 32 0 0 0 32 32h192a32 32 0 0 0 32-32v-64h192a32 32 0 0 0 32-32v-96a32 32 0 0 0-64 0v64h-160z m-192-32h128V608H288v-128z m320-320h128v128h-128v-128z" horiz-adv-x="1024" />
<glyph glyph-name="falvfagui" unicode="&#59098;" d="M260.1 718.3v-671.1H128.4V718.3h131.7M61.5 737.8v-710.1c0-26.2 21.2-47.4 47.4-47.4h170.7c26.2 0 47.4 21.2 47.4 47.4V737.8c0 26.2-21.2 47.4-47.4 47.4H109c-26.2 0-47.5-21.2-47.5-47.4zM228.9 582.2h-67v-49.5h67v49.5zM228.9 515.3h-67v-49.5h67v49.5zM228.9 448.4h-67v-49.5h67v49.5zM578.9 718.3v-671.1H447.1V718.3h131.8m-198.7 19.5v-710.1c0-26.2 21.2-47.4 47.4-47.4h170.7c26.2 0 47.4 21.2 47.4 47.4V737.8c0 26.2-21.2 47.4-47.4 47.4H427.7c-26.2 0-47.5-21.2-47.5-47.4zM547.6 582.2h-67v-49.5h67v49.5zM547.6 515.3h-67v-49.5h67v49.5zM547.6 448.4h-67v-49.5h67v49.5zM897.6 718.3v-671.1H765.9V718.3h131.7M699 737.8v-710.1c0-26.2 21.2-47.4 47.4-47.4H917c26.2 0 47.4 21.2 47.4 47.4V737.8c0 26.2-21.2 47.4-47.4 47.4H746.4c-26.2 0-47.4-21.2-47.4-47.4zM866.3 582.2h-67v-49.5h67v49.5zM866.3 515.3h-67v-49.5h67v49.5zM866.3 448.4h-67v-49.5h67v49.5z" horiz-adv-x="1024" />
<glyph glyph-name="shouye1" unicode="&#59249;" d="M704.4-15.9h-125V249.8c0 3.3 0.1 6.5 0.1 9.3 0 1.8 0.1 3.9 0.1 5.9H446.8c0-2 0-4.1 0.1-5.9 0.1-2.8 0.1-5.9 0.1-9.3v-265.6H321.9c-32.2 0-62 14-83.7 39.6-19.8 23.2-31.1 54.4-31.1 85.7V311.8h-16.7c-33 0-59.1 16.1-71.6 44.1l-0.1 0.1c-10 22.8-8.5 59.8 25.6 95.3l284.1 295.6c22.3 23.3 52.4 36.2 84.6 36.2 32.1 0 62.1-12.8 84.6-36.1L882 451.2c34-35.5 35.5-72.5 25.5-95.3l-0.1-0.2c-12.6-28-38.6-44-71.5-44h-16.7v-202.4c0-31.3-11.3-62.5-31.1-85.7-21.8-25.4-51.5-39.5-83.7-39.5z m-75 50h75c40 0 64.8 39.1 64.8 75.3V361.8h66.7c13.2 0 21.4 4.6 25.9 14.4 0.9 2 6.3 17.5-15.8 40.5L561.7 712.2c-12.9 13.4-30.2 20.8-48.5 20.8-18.4 0-35.7-7.4-48.5-20.8L180.5 416.6c-22.3-23.1-16.7-38.6-15.9-40.5 4.3-9.7 12.8-14.3 25.9-14.3h66.7v-252.4c0-36.2 24.8-75.3 64.8-75.3h75.1V249.8c0 2.9-0.1 5.6-0.1 8.3-0.3 15.6-0.6 31.7 11.8 44.3 12.3 12.6 30 12.6 35.8 12.6h137.5c5.8 0 23.5 0 35.8-12.6 12.4-12.6 12.1-28.7 11.8-44.3-0.1-2.7-0.1-5.5-0.1-8.4v-215.6z" horiz-adv-x="1024" />
<glyph glyph-name="sousuo" unicode="&#58916;" d="M957.9-12.2L833.4 112.3c56.4 66.7 92.7 151.4 98.6 245.3 14.6 232-161.7 431.9-393.8 446.5-9 0.6-17.9 0.8-26.8 0.8-220.4 0-405.7-171.5-419.7-394.5-14.6-232 161.7-431.9 393.8-446.5 9-0.6 17.9-0.8 26.8-0.8 102.8 0 197.9 37.3 271.6 99.8l124.5-124.5c6.8-6.8 15.8-10.3 24.7-10.3 9 0 17.9 3.4 24.7 10.3 13.7 13.6 13.7 35.7 0.1 49.4z m-206.2 140C686.4 66.7 601.4 33 512.3 33c-7.4 0-14.9 0.2-22.4 0.7-47.3 3-92.6 15.1-134.6 36-40.6 20.3-76.5 47.9-106.6 82.1-30.2 34.2-53.1 73.3-68.1 116.1-15.5 44.3-21.9 90.7-18.9 138 5.6 89.7 44.8 172.8 110.4 234.2 65.3 61.1 150.3 94.8 239.5 94.8 7.4 0 14.9-0.2 22.3-0.7 47.3-3 92.6-15.1 134.6-36 40.6-20.3 76.5-47.9 106.6-82.1 30.2-34.2 53.1-73.3 68.1-116.1 15.5-44.3 21.9-90.7 18.9-138-5.7-89.6-44.9-172.8-110.4-234.2z" horiz-adv-x="1024" />
<glyph glyph-name="tuandui" unicode="&#58891;" d="M375.1 340.9c-132.3 0-240 107.7-240 240s107.7 240 240 240 240-107.7 240-240-107.6-240-240-240z m0 390c-82.7 0-150-67.3-150-150s67.3-150 150-150 150 67.3 150 150-67.3 150-150 150zM525.1-79.1h-300c-91 0-165 74-165 165v120c0 124.1 100.9 225 225 225h180c124.1 0 225-100.9 225-225v-120c0-91-74-165-165-165z m-240 420c-74.4 0-135-60.6-135-135v-120c0-41.4 33.6-75 75-75h300c41.4 0 75 33.6 75 75v120c0 74.4-60.6 135-135 135h-180zM795.1-49.1h-60c-24.8 0-45 20.2-45 45s20.2 45 45 45h60c41.4 0 75 33.6 75 75v120c0 74.4-60.6 135-135 135h-30c-24.8 0-45 20.1-45 45s20.2 45 45 45c31.5 0 90 0 90 150 0 82.7-67.3 150-150 150-24.8 0-45 20.1-45 45s20.2 45 45 45c132.3 0 240-107.7 240-240 0-84.1-17.6-140-44.1-176.5 70.8-37.9 119.1-112.7 119.1-198.5v-120c0-91-74-165-165-165z" horiz-adv-x="1024" />
<glyph glyph-name="shouye2" unicode="&#58915;" d="M962.1059375 448.57875l-364.378125 378.909375C575.1246875 850.96125 544.821875 864 512.4125 864c-32.420625 0-62.7178125-12.9159375-85.32375-36.511875L62.8390625 448.57875C25.2096875 409.4625 30.044375 375.673125 36.2590625 361.516875c4.4653125-10.059375 19.37625-37.501875 62.47125-37.501875h53.4009375v-291.4725c0-64.7925 45.5821875-125.8575 110.866875-128.424375v-0.118125h70.483125c65.9259375 0 87.688125 43.2346875 88.69875 106.845l0.1921875 0.1228125V212.49656249999998c0 33.0403125-4.96875 51.54 28.8159375 51.54h122.5790625c33.7734375 0 28.75125-18.3871875 28.75125-51.54l0.043125-125.1253125h-0.043125v-71.8359375c0-3.3421875-0.0421875-7.561875 0.0646875-12.3965625v-0.8559375l0.0215625-0.0159375c0.8184375-34.4259375 9.1453125-98.26125 88.693125-98.26125h70.48875v0.1171875c65.3109375 2.535 110.9146875 63.6159375 110.9146875 128.424375V324.020625h53.4c43.096875 0 58.00125 27.55875 62.4721875 37.5009375 6.19875 14.1515625 11.0390625 47.9409375-26.4675 87.05625zM936.78125 384H812.5775v-351.463125c0-33.0403125-21.3609375-68.4290625-55.1446875-68.4290625h-69.3121875c-20.1028125 0.823125-24.830625 9.2625-25.696875 24.3234375v20.424375c0.031875 2.1553125 0.06375 4.3640625 0.06375 6.675V87.36562500000002h-0.0646875V212.49093749999997c0 66.1940625-21.241875 111.5296875-88.8 111.5296875H451.0596875c-67.5571875 0-88.8-45.346875-88.8-111.5296875v-224.8725c-1.0378125-15.33375-6.3375-23.634375-28.90125-23.634375h-66.18375c-33.740625 0.0590625-55.059375 35.4159375-55.059375 68.424375V383.8715625H87.906875c-1.1175 0 0.871875-0.1228125 0 0 2.1178125 3.6046875 13.5515625 17.0175 19.509375 23.221875L471.794375 785.75625c10.809375 11.4234375 26.195625 18.2578125 41.11125 18.129375 14.9053125 0.12375 29.308125-6.82875 40.23375-18.129375l364.25625-378.5353125" horiz-adv-x="1024" />
</font>
</defs></svg>

After

Width:  |  Height:  |  Size: 75 KiB

Binary file not shown.
Binary file not shown.
+25
View File
@@ -0,0 +1,25 @@
.el-message-box{
position: relative;
top: -230px;
.el-button--primary{
height: 32px;
padding: 0 15px;
color: #fff;
background-color: #3391CE;
border-color: #3391CE;
&.is-disabled {
background-color: #b0d3ed !important;
border-color: #bcd1e0 !important;
}
}
.el-button--primary:hover{
padding: 0 15px;
background-color: #3391CE;
border-color: #3391CE;
}
.el-button--primary:focus{
padding: 0 15px;
background-color: #3391CE;
border-color: #3391CE;
}
}
+39
View File
@@ -0,0 +1,39 @@
/**
* @description: 混合css文件
* @author: xx
* @date: 2018-09-01 15:11:57
*/
.ellipsis () {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.full-screen () {
width: 100%;
height: 100%;
}
.flex-center () {
display: flex;
justify-content: center;
align-items: center;
}
.icon-font () {
font-family: "custom-font";
src: url("~styles/iconfont/iconfont.woff");
}
.box-shadow () {
box-shadow: 4px 5px 20px 0px #CCC;
}
.un-select () {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.flex () {
display: flex;
display: -ms-flex;
display: -moz-flex;
display: -webkit-flex;
}
+97
View File
@@ -0,0 +1,97 @@
// 左侧菜单样式
.nav-menu {
.el-menu {
border: transparent;
background-color: transparent !important;
}
.el-submenu__title, .el-menu-item{
i{
color: #ffffff;
}
}
ul > li{
font-size: 15px;
font-weight: 600;
}
.el-submenu__title, .el-menu-item{
font-size: 15px;
background-color: transparent !important;
&::before{
content: '';
position: absolute;
top: 0;
left: 0;
display: block;
width: 0;
height: 100%;
background: rgba(255,255,255,.1) !important;
}
}
&:not(.is-collapse) {
// hover属性
.el-submenu__title:hover, .el-menu-item:hover{
background: transparent !important;
&::before{
transition: all linear .3s;
width: 100%;
}
}
// 选中菜单样式
.el-menu{
.is-active{
background: rgba(255,255,255,.1) !important;
color: #4091FF !important;
}
.is-opened{
background: transparent !important;
}
}
}
/deep/.el-menu {
& > .el-menu-item {
background-color: transparent !important;
&:hover {
background-color: rgba(255, 255, 255, 0.1) !important;
}
}
.el-submenu {
.el-submenu__title {
background-color: transparent !important;
&:hover {
background-color: rgba(255, 255, 255, 0.1) !important;
}
}
}
}
}
.nav-menu-popper {
.el-menu {
border-radius: 15px;
li {
&:hover {
background: rgba(255, 255, 255, 0.1) !important;
}
&.is-active {
background: rgba(255, 255, 255, 0.1) !important;
}
&:first-child {
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
&:last-child {
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
}
}
}
}
.el-drawer__header{
&>span:first-child{
outline: none!important;
}
}
.el-drawer{
outline: none!important;
}

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