构建商务系统基础模块
166
code/list/index.vue
Normal file
@ -0,0 +1,166 @@
|
|||||||
|
<!--
|
||||||
|
* @Descripttion: 此文件由SCUI生成,典型的VUE增删改列表页面组件
|
||||||
|
* @version: 1.0
|
||||||
|
* @Author: SCUI AutoCode 模板版本 1.0.0-beta.1
|
||||||
|
* @Date: <%= createDate %>
|
||||||
|
* @LastEditors: (最后更新作者)
|
||||||
|
* @LastEditTime: (最后更新时间)
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-container>
|
||||||
|
<el-header>
|
||||||
|
<div class="left-panel">
|
||||||
|
<el-button type="primary" icon="el-icon-plus" @click="add"></el-button>
|
||||||
|
<el-button type="danger" plain icon="el-icon-delete" :disabled="selection.length==0" @click="batch_del"></el-button>
|
||||||
|
</div>
|
||||||
|
<div class="right-panel">
|
||||||
|
<div class="right-panel-search">
|
||||||
|
<el-input v-model="search.keyword" placeholder="关键词搜索" clearable></el-input>
|
||||||
|
<el-button type="primary" icon="el-icon-search" @click="upsearch"></el-button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</el-header>
|
||||||
|
<el-main class="nopadding">
|
||||||
|
<scTable ref="table" :apiObj="apiObj" row-key="<%= base.rowKey %>" @selection-change="selectionChange">
|
||||||
|
|
||||||
|
<el-table-column type="selection" width="50"></el-table-column>
|
||||||
|
<% column.forEach(function(item, index){ %>
|
||||||
|
<el-table-column label="<%= item.label %>" prop="<%= item.prop %>" width="<%= item.width %>"></el-table-column>
|
||||||
|
<% })%>
|
||||||
|
<el-table-column label="操作" fixed="right" align="right" width="140">
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button type="text" size="small" @click="table_show(scope.row, scope.$index)">查看</el-button>
|
||||||
|
<el-button type="text" size="small" @click="table_edit(scope.row, scope.$index)">编辑</el-button>
|
||||||
|
<el-popconfirm title="确定删除吗?" @confirm="table_del(scope.row, scope.$index)">
|
||||||
|
<template #reference>
|
||||||
|
<el-button type="text" size="small">删除</el-button>
|
||||||
|
</template>
|
||||||
|
</el-popconfirm>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</scTable>
|
||||||
|
</el-main>
|
||||||
|
</el-container>
|
||||||
|
|
||||||
|
<el-dialog :title="titleMap[saveMode]" v-model="saveDialogVisible" :width="500" destroy-on-close>
|
||||||
|
<save-dialog ref="saveDialog" :mode="saveMode"></save-dialog>
|
||||||
|
<template #footer>
|
||||||
|
<el-button @click="saveDialogVisible=false" >取 消</el-button>
|
||||||
|
<el-button v-if="saveMode!='show'" type="primary" @click="saveForm()" :loading="isSaveing">保 存</el-button>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import saveDialog from './save'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: '<%= base.name %>',
|
||||||
|
components: {
|
||||||
|
saveDialog
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
apiObj: this.$API.<%= api.list %>,
|
||||||
|
selection: [],
|
||||||
|
search: {
|
||||||
|
keyword: ""
|
||||||
|
},
|
||||||
|
saveDialogVisible: false,
|
||||||
|
saveMode: 'add',
|
||||||
|
titleMap: {
|
||||||
|
add: "新增",
|
||||||
|
edit: "编辑",
|
||||||
|
show: "查看"
|
||||||
|
},
|
||||||
|
isSaveing: false,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
//添加
|
||||||
|
add(){
|
||||||
|
this.saveMode = 'add';
|
||||||
|
this.saveDialogVisible = true;
|
||||||
|
},
|
||||||
|
//编辑
|
||||||
|
table_edit(row){
|
||||||
|
this.saveMode = 'edit';
|
||||||
|
this.saveDialogVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
//这里可以再次根据ID查询详情接口
|
||||||
|
this.$refs.saveDialog.setData(row)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//查看
|
||||||
|
table_show(row){
|
||||||
|
this.saveMode = 'show';
|
||||||
|
this.saveDialogVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
//这里可以再次根据ID查询详情接口
|
||||||
|
this.$refs.saveDialog.setData(row)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//删除
|
||||||
|
async table_del(row, index){
|
||||||
|
var reqData = {id: row.id}
|
||||||
|
var res = await this.$API.<%= api.del %>.post(reqData);
|
||||||
|
if(res.code == 200){
|
||||||
|
//这里选择刷新整个表格 OR 插入/编辑现有表格数据
|
||||||
|
this.$refs.table.tableData.splice(index, 1);
|
||||||
|
this.$message.success("删除成功")
|
||||||
|
}else{
|
||||||
|
this.$alert(res.message, "提示", {type: 'error'})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
//批量删除
|
||||||
|
async batch_del(){
|
||||||
|
this.$confirm(`确定删除选中的 ${this.selection.length} 项吗?`, '提示', {
|
||||||
|
type: 'warning'
|
||||||
|
}).then(() => {
|
||||||
|
const loading = this.$loading();
|
||||||
|
this.selection.forEach(item => {
|
||||||
|
this.$refs.table.tableData.forEach((itemI, indexI) => {
|
||||||
|
if (item.id === itemI.id) {
|
||||||
|
this.$refs.table.tableData.splice(indexI, 1)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
loading.close();
|
||||||
|
this.$message.success("操作成功")
|
||||||
|
}).catch(() => {
|
||||||
|
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//提交
|
||||||
|
saveForm(){
|
||||||
|
this.$refs.saveDialog.submit(async (formData) => {
|
||||||
|
this.isSaveing = true;
|
||||||
|
var res = await this.$API.<%= api.save %>.post(formData);
|
||||||
|
this.isSaveing = false;
|
||||||
|
if(res.code == 200){
|
||||||
|
//这里选择刷新整个表格 OR 插入/编辑现有表格数据
|
||||||
|
this.saveDialogVisible = false;
|
||||||
|
this.$message.success("操作成功")
|
||||||
|
}else{
|
||||||
|
this.$alert(res.message, "提示", {type: 'error'})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//表格选择后回调事件
|
||||||
|
selectionChange(selection){
|
||||||
|
this.selection = selection;
|
||||||
|
},
|
||||||
|
//搜索
|
||||||
|
upsearch(){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
72
code/list/save.vue
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
<!--
|
||||||
|
* @Descripttion: 此文件由SCUI生成,典型的VUE增删改列表页面组件
|
||||||
|
* @version: 1.0
|
||||||
|
* @Author: SCUI AutoCode 模板版本 1.0.0-beta.1
|
||||||
|
* @Date: <%= createDate %>
|
||||||
|
* @LastEditors: (最后更新作者)
|
||||||
|
* @LastEditTime: (最后更新时间)
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form :model="form" :rules="rules" :disabled="mode=='show'" ref="dialogForm" label-width="100px" label-position="left">
|
||||||
|
<% column.forEach(function(item, index){ %>
|
||||||
|
<el-form-item label="<%= item.label %>" prop="<%= item.prop %>">
|
||||||
|
<el-input v-model="form.<%= item.prop %>" clearable></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<% })%>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
mode: { type: String, default: "add" }
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
//表单数据
|
||||||
|
form: {
|
||||||
|
<%= base.rowKey %>:"",
|
||||||
|
<% column.forEach(function(item, index){ %>
|
||||||
|
<%= item.prop %>: "",
|
||||||
|
<% })%>
|
||||||
|
},
|
||||||
|
//验证规则
|
||||||
|
rules: {
|
||||||
|
<% column.forEach(function(item, index){ %>
|
||||||
|
<%= item.prop %>: [
|
||||||
|
{required: true, message: '请输入<%= item.label %>'}
|
||||||
|
],
|
||||||
|
<% })%>
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
//表单提交方法
|
||||||
|
submit(callback){
|
||||||
|
this.$refs.dialogForm.validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
callback(this.form)
|
||||||
|
}else{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
//表单注入数据
|
||||||
|
setData(data){
|
||||||
|
this.form.<%= base.rowKey %> = data.<%= base.rowKey %>
|
||||||
|
<% column.forEach(function(item, index){ %>
|
||||||
|
this.form.<%= item.prop %> = data.<%= item.prop %>
|
||||||
|
<% })%>
|
||||||
|
//可以和上面一样单个注入,也可以像下面一样直接合并进去
|
||||||
|
//Object.assign(this.form, data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
5
config.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
// 此文件非必要,在生产环境下此文件配置可覆盖运行配置,开发环境下不起效
|
||||||
|
// 详情见 src/config/index.js
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-unused-vars
|
||||||
|
const APP_CONFIG = {};
|
||||||
1
css/404.6bf6efa9.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.router-err[data-v-10b4695c]{display:flex;width:900px;margin:50px auto;align-items:center}.router-err__icon[data-v-10b4695c]{width:400px}.router-err__icon img[data-v-10b4695c]{width:100%}.router-err__content[data-v-10b4695c]{flex:1;padding:40px}.router-err__content h2[data-v-10b4695c]{font-size:26px}.router-err__content p[data-v-10b4695c]{font-size:14px;color:#999;margin:15px 0 30px 0;line-height:1.5}@media (max-width:992px){.router-err[data-v-10b4695c]{display:block;width:100%;margin-top:10px;text-align:center}.router-err__icon[data-v-10b4695c]{width:280px;margin:0 auto}}
|
||||||
1
css/9163.08433f8d.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.sc-code-editor[data-v-dda70bdc]{font-size:14px;border:1px solid #ddd;line-height:150%}.sc-code-editor[data-v-dda70bdc] .CodeMirror{height:100%}
|
||||||
1
css/app.5a042227.css
Normal file
1
css/cus-cusMsg.d1348b6f.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.bg[data-v-05c35220]:hover{background-color:#409eff}
|
||||||
1
css/equipment-monitor.4bd9c83f.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.nopadding[data-v-51f54629]{display:flex;align-items:center;justify-content:center}.boxRow .boxCol[data-v-51f54629]{margin:10px 0 10px 0}.monitorBox[data-v-51f54629]{border:1px solid #f2f2f2;padding:15px}.monitorItem[data-v-51f54629]{width:100%;display:flex;align-items:stretch}.monitorItem .itemLeft[data-v-51f54629]{flex-basis:290px;height:175px}.monitorItem .itemLeft .img[data-v-51f54629],.monitorItem .itemLeft .monitorVideo[data-v-51f54629]{width:100%;height:100%}.monitorItem .itemRight[data-v-51f54629]{padding:0 20px;flex:1;overflow:hidden}.monitorItem .itemRight .header[data-v-51f54629]{display:flex;align-items:stretch;justify-content:space-between;margin-bottom:20px}.monitorItem .itemRight .header .name[data-v-51f54629]{font-size:14px;color:#000}.monitorItem .itemRight .header .status[data-v-51f54629]{height:28px;padding:0 20px;background:#67c23a33;display:flex;align-items:center;justify-content:center;color:#67c23a;border-radius:4px}.monitorItem .itemRight .dateCom[data-v-51f54629]{display:flex;align-items:center;justify-content:space-between;margin:10px 0 20px 0}.monitorItem .itemRight .dateCom .dateLeft[data-v-51f54629],.monitorItem .itemRight .dateCom .dateRight[data-v-51f54629]{display:flex;align-items:center}.monitorItem .itemRight .comText[data-v-51f54629]{display:flex;align-items:center;margin:8px 0}.monitorItem .itemRight .comText .name[data-v-51f54629]{flex-basis:110px}.monitorItem .itemRight .comText .text[data-v-51f54629]{flex:1;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.alarmName[data-v-51f54629]{margin:10px 0}.alarmBox[data-v-51f54629]{height:140px;overflow:hidden;position:relative}.alarmBox .vague[data-v-51f54629]{position:absolute;left:0;top:0;z-index:100;width:calc(100% - 10px);height:40px;background:linear-gradient(#fff,hsla(0,0%,100%,.1))}.alarmBox .alarmCom[data-v-51f54629]{display:flex;align-items:center;margin-bottom:12px}.alarmBox .alarmCom .comLeft[data-v-51f54629]{width:60px;height:40px}.alarmBox .alarmCom .comLeft .img[data-v-51f54629]{width:100%;height:100%;cursor:pointer}.alarmBox .alarmCom .comRight[data-v-51f54629]{color:#fa3758;padding-left:20px}.alarmBox .alarmCom[data-v-51f54629]:last-child{margin-bottom:0}.dark .monitorBox[data-v-51f54629]{border-color:var(--el-border-color-light)}.dark .monitorItem .itemRight .header .name[data-v-51f54629]{color:#fff}.dark .vague[data-v-51f54629]{color:#1d1e20;background:linear-gradient(#1d1e20,rgba(29,30,32,.1))}@media(max-width:1600px){.monitorItem .itemRight .dateCom[data-v-51f54629]{display:flex;flex-wrap:wrap;margin:8px 0}.monitorItem .itemRight .dateCom .dateLeft[data-v-51f54629],.monitorItem .itemRight .dateCom .dateRight[data-v-51f54629]{width:100%;display:flex;align-items:center}.monitorItem .itemRight .dateCom .name[data-v-51f54629]{flex-basis:110px}.monitorItem .itemRight .dateCom .text[data-v-51f54629]{flex:1;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}@media(max-width:1200px){.monitorItem[data-v-51f54629]{display:flex;flex-direction:column}.monitorItem .itemRight .header[data-v-51f54629]{margin-top:10px}}
|
||||||
1
css/equipment-repairReport.483aaed8.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.imgList[data-v-8d48291e]{display:flex;align-items:center;justify-content:flex-start}.imgList .img[data-v-8d48291e]{width:23px;height:23px;margin-right:5px}
|
||||||
1
css/equipment-status.a3d6cea7.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.deviceBack[data-v-dd58b35a]{background:#eee}
|
||||||
1
css/equipment-upkeep.2e5f0da6.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.serviceView[data-v-050fac2a]{display:flex;flex-direction:column;justify-content:flex-start;height:100%}.serviceView .headerView[data-v-050fac2a]{flex-basis:100px;padding:0 10px;display:flex;flex-wrap:wrap;justify-content:space-between}.serviceView .headerView .nameView[data-v-050fac2a]{width:50%;display:flex;align-items:center}.serviceView .headerView .nameView .name[data-v-050fac2a]{flex-basis:80px}.serviceView .headerView .nameView .text[data-v-050fac2a]{flex:1;color:#909399}.serviceView .middleView[data-v-050fac2a]{flex:1;overflow:hidden;display:flex;flex-direction:column}.serviceView .middleView .header[data-v-050fac2a]{border-bottom:1px solid var(--el-border-color-light);flex-basis:50px;display:flex;flex-direction:column;justify-content:space-around;padding:0 10px}.serviceView .middleView .header .title[data-v-050fac2a]{font-weight:700;font-size:14px;color:#72767b}.serviceView .middleView .tableView[data-v-050fac2a]{flex:1}.serviceView .middleView .tableView .el-table[data-v-050fac2a] .cell{white-space:nowrap}
|
||||||
1
css/home-table.65c05e6c.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.mainBox[data-v-03f6fb11]{display:flex;flex-direction:column}.mainBox .headerBox[data-v-03f6fb11]{flex-basis:100px;background:var(--el-color-primary-light-9);border-radius:10px;margin:10px 0;padding:10px}.mainBox .headerBox .companyBox[data-v-03f6fb11]{display:flex;flex-direction:row;align-items:center}.mainBox .headerBox .companyBox .avatar[data-v-03f6fb11]{background:var(--el-color-primary);border-radius:50%;width:30px;height:30px;display:flex;align-items:center;justify-content:center}.mainBox .headerBox .companyBox .name[data-v-03f6fb11]{margin:0 10px;font-size:16px;font-weight:600}.mainBox .headerBox .companyBox .icon[data-v-03f6fb11]{display:flex;align-items:center}.mainBox .headerBox .informationBox[data-v-03f6fb11]{display:flex;align-items:center;justify-content:space-around;margin-top:20px}.mainBox .headerBox .informationBox .itemBox[data-v-03f6fb11]{flex:1;display:flex;padding:0 10px}.mainBox .headerBox .informationBox .itemBox .name[data-v-03f6fb11]{margin-right:15px}.mainBox .headerBox .informationBox .itemBox .text[data-v-03f6fb11]{font-weight:600}.mainBox .contentBox[data-v-03f6fb11]{flex:1;padding-bottom:10px;overflow:hidden}
|
||||||
1
css/home-widgets.800981a9.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.widgets-home[data-v-4ce9f460]{display:flex;flex-direction:row;flex:1;height:100%;margin:0}.widgets-content[data-v-4ce9f460]{flex:1;overflow:hidden}.widgets-aside[data-v-4ce9f460]{width:360px;border-top:1px solid var(--el-border-color-light);background:#fff;box-shadow:0 0 10px rgba(0,0,0,.1);position:relative;overflow:auto}.widgets-aside-title[data-v-4ce9f460]{font-size:14px;display:flex;align-items:center;justify-content:center}.widgets-aside-title i[data-v-4ce9f460]{margin-right:10px;font-size:18px}.widgets-aside-close[data-v-4ce9f460]{font-size:18px;width:30px;height:30px;display:flex;align-items:center;justify-content:center;border-radius:3px;cursor:pointer}.widgets-aside-close[data-v-4ce9f460]:hover{background:hsla(0,0%,71%,.1)}.widgets-top[data-v-4ce9f460]{position:absolute;bottom:0;right:10px;z-index:100;margin-bottom:15px;display:flex;justify-content:space-between;align-items:center}.widgets-top-title[data-v-4ce9f460]{font-size:18px;font-weight:700}.widgets[data-v-4ce9f460]{transform-origin:top left;transition:transform .15s}.draggable-box[data-v-4ce9f460]{height:100%}.customizing .widgets-wrapper[data-v-4ce9f460]{margin-right:-360px}.customizing .widgets-wrapper .el-col[data-v-4ce9f460]{padding-bottom:15px}.customizing .widgets-wrapper .draggable-box[data-v-4ce9f460]{border:1px dashed var(--el-color-primary);padding:15px}.customizing .widgets-wrapper .no-widgets[data-v-4ce9f460]{display:none}.customizing .widgets-item[data-v-4ce9f460]{position:relative;margin-bottom:15px}.customize-overlay[data-v-4ce9f460]{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;display:flex;flex-direction:column;align-items:center;justify-content:center;background:hsla(0,0%,100%,.9);cursor:move}.customize-overlay label[data-v-4ce9f460]{background:var(--el-color-primary);color:#fff;height:40px;padding:0 30px;border-radius:40px;font-size:18px;display:flex;align-items:center;justify-content:center;cursor:move}.customize-overlay label i[data-v-4ce9f460]{margin-right:15px;font-size:24px}.customize-overlay .close[data-v-4ce9f460]{position:absolute;top:15px;right:15px}.customize-overlay .close[data-v-4ce9f460]:focus,.customize-overlay .close[data-v-4ce9f460]:hover{background:var(--el-button-hover-color)}.widgets-list-item[data-v-4ce9f460]{display:flex;flex-direction:row;padding:15px;align-items:center}.widgets-list-item .item-logo[data-v-4ce9f460]{width:40px;height:40px;border-radius:50%;background:hsla(0,0%,71%,.1);display:flex;align-items:center;justify-content:center;font-size:18px;margin-right:15px;color:#6a8bad}.widgets-list-item .item-info[data-v-4ce9f460]{flex:1}.widgets-list-item .item-info h2[data-v-4ce9f460]{font-size:16px;font-weight:400;cursor:default}.widgets-list-item .item-info p[data-v-4ce9f460]{font-size:12px;color:#999;cursor:default}.widgets-list-item[data-v-4ce9f460]:hover{background:hsla(0,0%,71%,.1)}.widgets-wrapper .sortable-ghost[data-v-4ce9f460]{opacity:.5}.selectLayout[data-v-4ce9f460]{width:100%;display:flex}.selectLayout-item[data-v-4ce9f460]{width:60px;height:60px;border:2px solid var(--el-border-color-light);padding:5px;cursor:pointer;margin-right:15px}.selectLayout-item span[data-v-4ce9f460]{display:block;background:var(--el-border-color-light);height:46px}.selectLayout-item.item02 span[data-v-4ce9f460]{height:30px}.selectLayout-item.item02 .el-col:first-child span[data-v-4ce9f460],.selectLayout-item.item03 span[data-v-4ce9f460]{height:14px;margin-bottom:2px}.selectLayout-item.item04 span[data-v-4ce9f460]{height:30px;margin-bottom:2px}.selectLayout-item.item04 .el-col:first-child span[data-v-4ce9f460],.selectLayout-item.item04 .el-col:nth-child(2) span[data-v-4ce9f460],.selectLayout-item.item04 .el-col:nth-child(3) span[data-v-4ce9f460],.selectLayout-item.item04 .el-col:nth-child(4) span[data-v-4ce9f460],.selectLayout-item.item04 .el-col:nth-child(5) span[data-v-4ce9f460],.selectLayout-item.item04 .el-col:nth-child(6) span[data-v-4ce9f460]{height:14px;margin-bottom:2px}.selectLayout-item.active[data-v-4ce9f460],.selectLayout-item[data-v-4ce9f460]:hover{border-color:var(--el-color-primary)}.selectLayout-item.active span[data-v-4ce9f460]{background:var(--el-color-primary)}.dark .widgets-aside[data-v-4ce9f460]{background:#2b2b2b}.dark .customize-overlay[data-v-4ce9f460]{background:rgba(43,43,43,.9)}@media(max-width:992px){.customizing .widgets[data-v-4ce9f460]{transform:scale(1)!important}.customizing .widgets-aside[data-v-4ce9f460]{width:100%;position:absolute;top:50%;right:0;bottom:0}.customizing .widgets-wrapper[data-v-4ce9f460]{margin-right:0}}
|
||||||
1
css/introduce.2303e021.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.videoMain[data-v-1f8d492e]{height:100%;display:flex;flex-direction:column}.videoDemonstrate[data-v-1f8d492e]{flex:1;overflow:hidden;padding-bottom:1px;background:#fff;display:flex;flex-direction:column}.videoDemonstrate .el-scrollbar[data-v-1f8d492e] .el-scrollbar__view{height:100%}.videoDemonstrate .scrollbarMain[data-v-1f8d492e]{flex:1;overflow:hidden}.videoDemonstrate .scrollbarMain .el-scrollbar[data-v-1f8d492e]::-webkit-scrollbar{width:0;height:0;display:none}.videoDemonstrate .scrollbarMain .el-scrollbar[data-v-1f8d492e]::-webkit-scrollbar-thumb,.videoDemonstrate .scrollbarMain .el-scrollbar[data-v-1f8d492e]::-webkit-scrollbar-track{background-color:transparent}.footerBtn[data-v-1f8d492e]{padding:12px 10px 30px 10px;background:#fff}.footerBtn .btnBox[data-v-1f8d492e]{display:flex;align-items:center}.footerBtn .btnBox .commentInput[data-v-1f8d492e]{flex:1;overflow:hidden}.footerBtn .btnBox .commentInput .input[data-v-1f8d492e]{overflow:hidden;min-height:40px}.footerBtn .btnBox .commentInput .input[data-v-1f8d492e] .el-textarea__inner{min-height:40px!important;border-radius:40px;padding:9px 20px;resize:none}.footerBtn .btnBox .commentSave[data-v-1f8d492e]{flex-basis:90px;display:flex;align-items:center;justify-content:flex-end}.footerBtn .btnBox .commentSave .btn[data-v-1f8d492e]{background:#f2f2f2;padding:10px 26px;border-radius:40px;color:#909399;font-size:14px}.footerBtn .btnBox .commentSave .btnSave[data-v-1f8d492e]{background:var(--el-color-primary);color:#fff}.dmVideo[data-v-1f8d492e]{width:100%;height:220px}.videoInfo[data-v-1f8d492e]{padding:10px;font-size:13px}.videoInfo .title[data-v-1f8d492e]{color:#303133;font-size:15px;font-weight:500;letter-spacing:1px;margin-bottom:10px}.videoInfo .description[data-v-1f8d492e]{line-height:22px}.videoInfo .description .msg[data-v-1f8d492e]{color:#303133;letter-spacing:1px;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;-webkit-box-orient:vertical}.videoInfo .description .msg .ysTitle[data-v-1f8d492e]{margin-top:10px}.videoInfo .description .msg ul[data-v-1f8d492e]{padding-left:30px;margin-bottom:10px}.videoInfo .description .msg li[data-v-1f8d492e]{list-style-type:disc}.videoInfo .description .msgOpen[data-v-1f8d492e]{display:initial}.videoInfo .description .text[data-v-1f8d492e]{color:#909399;cursor:pointer}.videoInfo .description .textOpen[data-v-1f8d492e]{margin-left:10px}.videoInfo .footerMain[data-v-1f8d492e]{margin-top:12px;display:flex;justify-content:space-between;align-items:center}.videoInfo .footerMain .leftBox[data-v-1f8d492e]{display:flex;align-items:center;color:#909399}.videoInfo .footerMain .leftBox .icon[data-v-1f8d492e]{width:20px;height:20px}.videoInfo .footerMain .leftBox .number[data-v-1f8d492e]{margin-left:6px}.videoInfo .footerMain .rightBox[data-v-1f8d492e]{display:flex;align-items:center}.videoInfo .footerMain .rightBox .itemText[data-v-1f8d492e]{display:flex;flex-direction:column;align-items:center;padding:0 10px;color:#909399}.videoInfo .footerMain .rightBox .itemText .icon[data-v-1f8d492e]{width:20px;height:20px}.videoInfo .footerMain .rightBox .itemText .num[data-v-1f8d492e]{font-size:12px}.comment[data-v-1f8d492e]{margin-top:2px;padding:10px;border-top:2px solid #f2f2f2}.comment .title[data-v-1f8d492e]{margin-bottom:10px;color:#303133;font-size:13px;font-weight:500}.comment .itemBox[data-v-1f8d492e]{padding:10px 0;border-bottom:1px solid #f2f2f2;display:flex;align-items:flex-start}.comment .itemBox .profile[data-v-1f8d492e]{margin-right:8px}.comment .itemBox .profile .img[data-v-1f8d492e]{width:40px;height:40px;border-radius:50%}.comment .itemBox .rightBox[data-v-1f8d492e]{flex:1}.comment .itemBox .headerNav[data-v-1f8d492e]{display:flex;align-items:center;justify-content:space-between;padding:5px 10px 5px 0}.comment .itemBox .headerNav .name[data-v-1f8d492e]{color:#606266;font-size:14px}.comment .itemBox .headerNav .rightCom[data-v-1f8d492e]{color:#9b9b9b}.comment .itemBox .text[data-v-1f8d492e]{padding:0 5px 5px 0;font-size:13px;color:#303133}.comment .itemBox .msg[data-v-1f8d492e]{display:flex;justify-content:space-between;align-items:center;color:#9b9b9b;padding:0 10px 0 0}.comment .itemBox .msg .delete[data-v-1f8d492e]{display:flex;align-items:center;font-size:14px}.comment .itemBox[data-v-1f8d492e]:last-child{border-bottom:0}
|
||||||
1
css/layout.b26a7d76.css
Normal file
1
css/login.e72e56f9.css
Normal file
19
css/modules.f0abbc17.css
Normal file
1
css/oauth-VideoPlayer.a034bf90.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.video-js .vjs-tech[data-v-32639351],.video-js[data-v-32639351]{width:100%;height:100%}
|
||||||
1
css/oauthAuthorize.034c0482.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.videoMain[data-v-0cc01d40]{height:100%;display:flex;flex-direction:column}.videoDemonstrate[data-v-0cc01d40]{flex:1;overflow:hidden;padding-bottom:1px;background:#fff;display:flex;flex-direction:column}
|
||||||
1
css/other-about.317a6ae4.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.aboutTop[data-v-278f5e7a]{border:0;background:linear-gradient(90deg,#8e54e9,#4776e6);color:#fff}.aboutTop-info[data-v-278f5e7a]{text-align:center}.aboutTop-info img[data-v-278f5e7a]{width:100px}.aboutTop-info h2[data-v-278f5e7a]{font-size:26px;margin-top:15px}.aboutTop-info p[data-v-278f5e7a]{font-size:16px;margin-top:10px}
|
||||||
1
css/plan-ordersPlanner-indexTest.5f4faf6b.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.left-container[data-v-d664f612]{overflow:hidden;position:relative;height:100%}
|
||||||
1
css/reports-productionReports.a6362dc3.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.mainBox[data-v-31d6e810]{position:relative}
|
||||||
1
css/scheduled.e8834fe3.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.mainBox[data-v-7b8bc9e0]{width:100%;height:100%;position:relative;overflow:hidden;background:#051f26;color:#fff}.mainBox .boxView[data-v-7b8bc9e0]{position:absolute;left:0;top:0;z-index:100;display:flex;flex-direction:column;justify-content:flex-start;width:100%;height:100%;box-sizing:border-box;padding:10px 20px}.mainBox .boxTitle[data-v-7b8bc9e0]{width:100%;flex-basis:56px;display:flex;align-items:center;justify-content:flex-start}.mainBox .boxTitle .icon[data-v-7b8bc9e0]{width:46px;height:42px}.mainBox .boxTitle .name[data-v-7b8bc9e0]{color:#fff;font-size:22px;font-weight:600;letter-spacing:2px}.mainBox .boxMain[data-v-7b8bc9e0]{background:rgba(3,60,63,.4);flex:1;width:100%;overflow:hidden;color:#f1c40f;margin-bottom:10px;border-radius:3px;display:flex;align-items:center;justify-content:center}.mainBox .boxFooter[data-v-7b8bc9e0]{margin-top:10px;width:100%;flex-basis:200px;border:0;background:rgba(3,60,63,.4);border-radius:3px;display:flex;flex-direction:column}.mainBox .boxFooter .headerTitle[data-v-7b8bc9e0]{flex-basis:45px;display:flex;align-items:center;padding:0 10px;border-bottom:1px solid #829396;position:relative}.mainBox .boxFooter .headerTitle .icon[data-v-7b8bc9e0]{width:22px;height:22px}.mainBox .boxFooter .headerTitle .name[data-v-7b8bc9e0]{margin-left:6px;font-size:14px}.mainBox .boxFooter .headerTitle[data-v-7b8bc9e0]:before{content:"";position:absolute;left:0;bottom:-.6px;height:3px;width:80px;background:#fff}.mainBox .boxFooter .comView[data-v-7b8bc9e0]{flex:1;overflow:hidden;padding:10px;box-sizing:border-box}.mainBox .boxFooter .comView .item[data-v-7b8bc9e0]{background:var(--el-color-primary);padding:10px;border-radius:4px}.gantt[data-v-7b8bc9e0]{overflow:hidden;position:relative;height:100%;width:100%}
|
||||||
1
css/screen.ae4a10c5.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.mainBox[data-v-3eaaed04]{background:#041a21;display:flex;flex-direction:column;position:relative;overflow:hidden}.mainBox .screenBox[data-v-3eaaed04]{position:absolute;left:0;top:0;z-index:10;height:calc(100vh - 5px);width:100vw;display:flex;padding:0 0 5px 0}.mainBox .screenBox .boxView[data-v-3eaaed04]{display:flex;flex-direction:column}.mainBox .screenBox .boxView .navTop[data-v-3eaaed04]{display:flex;align-items:center;width:100%;overflow:hidden}.mainBox .headerBox[data-v-3eaaed04]{flex-basis:60px;position:relative}.mainBox .headerBox .headerView[data-v-3eaaed04]{position:absolute;left:0;top:0;z-index:10;width:100%;height:100%;display:flex;align-items:center;justify-content:flex-start;color:var(--el-color-white);padding:0 6px;font-weight:500;font-size:16px}.mainBox .headerBox .headerView .sc-icon[data-v-3eaaed04]{width:56px;height:56px}.mainBox .contentView[data-v-3eaaed04]{position:absolute;left:0;top:0;z-index:10;width:100%;height:100%;color:var(--el-color-white);padding:0 15px}.mainBox .leftView[data-v-3eaaed04]{flex:1;display:flex;flex-direction:column;overflow:hidden}.mainBox .leftView .navTop[data-v-3eaaed04]{flex-basis:76px;padding:13px 5px;overflow:hidden}.mainBox .leftView .leftMain[data-v-3eaaed04]{display:flex;flex-direction:column;flex:1;overflow:hidden;width:100%;padding:0 0 0 13px}.mainBox .leftView .headerBox[data-v-3eaaed04]{flex-basis:68px;display:flex;overflow:hidden;padding:0 5px}.mainBox .leftView .leftBox[data-v-3eaaed04]{flex:1;padding:0 5px;overflow:hidden;position:relative}.mainBox .middleView[data-v-3eaaed04]{flex:2;display:flex;flex-direction:column;overflow:hidden}.mainBox .middleView .navTop[data-v-3eaaed04]{flex-basis:76px;padding:8px 5px;position:relative}.mainBox .middleView .navTop .title[data-v-3eaaed04]{position:absolute;left:0;top:0;z-index:10;width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--el-color-white);font-size:20px;font-weight:500}.mainBox .middleView .middleMain[data-v-3eaaed04]{width:100%;flex:1;overflow:hidden;display:flex;flex-direction:column}.mainBox .middleView .middleMain .headerBox[data-v-3eaaed04]{flex-basis:68px;padding:0 5px;display:flex;align-items:center;overflow:hidden}.mainBox .middleView .middleMain .middleBox[data-v-3eaaed04]{flex:1;overflow:hidden;display:flex;flex-direction:column;padding:0 5px;color:#fff}.mainBox .middleView .middleMain .middleBox .headerItemBox[data-v-3eaaed04]{flex:2}.mainBox .middleView .middleMain .middleBox .footerItemBox[data-v-3eaaed04]{flex:1;overflow:hidden;display:flex;flex-direction:row;flex-wrap:nowrap}.mainBox .middleView .middleMain .middleBox .footerItemBox .footerItem[data-v-3eaaed04]{flex:1;overflow:hidden;display:flex;flex-direction:column}.mainBox .middleView .middleMain .middleBox .footerItemBox .footerItem .headerBox[data-v-3eaaed04]{flex-basis:68px;display:flex;align-items:center;overflow:hidden}.mainBox .middleView .middleMain .middleBox .footerItemBox .footerItem .footerBox[data-v-3eaaed04]{flex:1;height:100%;overflow:hidden;position:relative}.mainBox .middleView .middleMain .middleBox .footerItemBox .footerItem:first-child .headerBox[data-v-3eaaed04]{padding:0 5px 0 0}.mainBox .middleView .middleMain .middleBox .footerItemBox .footerItem:nth-child(2) .headerBox[data-v-3eaaed04]{padding:0 0 0 5px}.mainBox .middleView .middleMain .middleBox .footerItemBox .footerItem:first-child .footerBox[data-v-3eaaed04]{padding:0 5px 0 0}.mainBox .middleView .middleMain .middleBox .footerItemBox .footerItem:nth-child(2) .footerBox[data-v-3eaaed04]{padding:0 0 0 5px}.mainBox .middleView .middleMain .middleBox .contentView[data-v-3eaaed04]{padding:0 10px}.mainBox .rightView[data-v-3eaaed04]{flex:1;overflow:hidden}.mainBox .rightView .navTop[data-v-3eaaed04]{flex-basis:76px;padding:13px 5px;overflow:hidden}.mainBox .rightView .rightMain[data-v-3eaaed04]{width:100%;padding:0 13px 0 0}.mainBox .rightView .rightMain .mainItem[data-v-3eaaed04],.mainBox .rightView .rightMain[data-v-3eaaed04]{display:flex;flex-direction:column;flex:1;overflow:hidden}.mainBox .rightView .rightMain .mainItem .rightBox[data-v-3eaaed04]{flex:1;overflow:hidden;padding:0 5px;position:relative}.mainBox .rightView .headerBox[data-v-3eaaed04]{flex-basis:68px;padding:0 5px;display:flex;align-items:self-end;overflow:hidden}.mainBox .rightView .rigBox[data-v-3eaaed04]{flex:1}
|
||||||
1
css/scuiChunks.3055a85d.css
Normal file
1
css/setting-company-add-permission.10b8d2c4.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.companyName[data-v-478afb12]{color:var(--el-color-primary);font-size:14px}.nopadding[data-v-478afb12]{padding:10px 0;overflow:hidden}.module[data-v-478afb12]{flex-basis:120px}.check[data-v-478afb12],.module[data-v-478afb12]{display:flex;align-items:center;justify-content:center}.check[data-v-478afb12]{flex-basis:60px}.menu[data-v-478afb12]{flex-basis:180px}.authority[data-v-478afb12]{flex:1;text-align:center}.treeTable[data-v-478afb12]{border:1px solid var(--el-border-color-light)}.thenTitle .tr[data-v-478afb12]{display:flex;align-items:stretch;border-bottom:1px solid var(--el-border-color-light);height:40px;background:var(--el-bg-color-overlay)}.thenTitle .tr .th[data-v-478afb12]{padding:0 10px;border-left:1px solid var(--el-border-color-light);height:100%;display:flex;align-items:center;justify-content:center}.thenTitle .tr .th[data-v-478afb12]:first-child{border-left:none}.thenTitle .tr .thFlex[data-v-478afb12]{display:flex;flex:1;padding:0}.thenTitle .tr .thFlex .name[data-v-478afb12]{flex-basis:180px;padding:10px}.thenTitleBottom .tr[data-v-478afb12]{border-bottom:0}.tableBody .tr[data-v-478afb12]{display:flex;align-items:stretch;justify-content:space-between;border-bottom:1px solid var(--el-border-color-light)}.tableBody .tr .td[data-v-478afb12]{padding:0 10px;border-left:1px solid var(--el-border-color-light)}.tableBody .tr .td .nextTd[data-v-478afb12]{display:flex;align-items:center;border-bottom:1px solid var(--el-border-color-light)}.tableBody .tr .td .nextTd[data-v-478afb12]:last-child{border-bottom:0}.tableBody .tr .td[data-v-478afb12]:first-child{border-left:0}.tableBody .tr .tdChild[data-v-478afb12]{flex:1;padding:0}.tableBody .tr .tdChild .tdName[data-v-478afb12]:last-child,.tableBody .tr .tdChild[data-v-478afb12]{border-left:1px solid var(--el-border-color-light)}.tableBody .tr .tdChild .tdName[data-v-478afb12]{padding:0 10px;min-height:33px}.tableBody .tr .tdChild .childTr[data-v-478afb12]{display:flex;flex-wrap:wrap;flex:1}.tableBody .tr .tdChild .childTr .preBox[data-v-478afb12]{display:flex;align-items:center;flex-wrap:wrap;margin-right:20px;width:110px}.tableBody .tr[data-v-478afb12]:last-child{border-bottom:0}
|
||||||
1
css/setting-dic.02b7a305.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.custom-tree-node[data-v-1cf8523c]{display:flex;flex:1;align-items:center;justify-content:space-between;font-size:14px;padding-right:24px;height:100%}.custom-tree-node .code[data-v-1cf8523c]{font-size:12px;color:#999}.custom-tree-node .do[data-v-1cf8523c],.custom-tree-node:hover .code[data-v-1cf8523c]{display:none}.custom-tree-node:hover .do[data-v-1cf8523c]{display:inline-block}
|
||||||
1
css/setting-face-data.2ce8b0a3.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.faceList[data-v-0814bf35]{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:stretch}.faceList .faceItem[data-v-0814bf35]{width:170px;background:#f8f8f8;border-radius:4px;margin:10px}.faceList .faceItem .head[data-v-0814bf35]{padding:20px 20px 10px 20px;height:160px;width:100%;margin:0 auto}.faceList .faceItem .head .img[data-v-0814bf35]{width:100%;height:100%;border-radius:2px}.faceList .faceItem .name[data-v-0814bf35]{text-align:center}.faceList .faceItem .time[data-v-0814bf35]{text-align:center;margin:5px 0 10px 0}.dark .faceList .faceItem[data-v-0814bf35]{background:#363636}
|
||||||
1
css/setting-log-company-logs.d8a7384f.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.companyName[data-v-18b37b31]{font-size:14px;color:var(--el-color-primary)}.logBox[data-v-18b37b31]{background:var(--el-bg-color-overlay)}
|
||||||
1
css/setting-log.9fb674f4.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.logBox[data-v-0cc3c51e]{background:var(--el-bg-color-overlay)}.nopadding[data-v-0cc3c51e]{border-radius:6px}
|
||||||
1
css/setting-menu.28bdc5c9.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.custom-tree-node[data-v-64614b21]{flex:1;justify-content:space-between;font-size:14px;padding-right:24px}.custom-tree-node .label[data-v-64614b21],.custom-tree-node[data-v-64614b21]{display:flex;align-items:center;height:100%}.custom-tree-node .label .el-tag[data-v-64614b21]{margin-left:5px}.custom-tree-node .do[data-v-64614b21]{display:none}.custom-tree-node .do i[data-v-64614b21]{margin-left:5px;color:#999}.custom-tree-node .do i[data-v-64614b21]:hover{color:#333}.custom-tree-node:hover .do[data-v-64614b21]{display:inline-block}
|
||||||
1
css/setting-process-add-process.bbdcbf54.css
Normal file
1
css/setting-role.322cc23f.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.mainBox[data-v-3e979132]{margin:0}.nopadding[data-v-3e979132]{position:relative}.btnPot[data-v-3e979132]{position:absolute;top:8px;right:0;z-index:10}.custom-tree-node[data-v-3e979132]{width:100%;display:flex;justify-content:space-between}.custom-tree-node .btnBox[data-v-3e979132]{display:none;margin-right:10px}.custom-tree-node .btnBox .btn[data-v-3e979132]{margin:0 5px}.custom-tree-node:hover .btnBox[data-v-3e979132],.is-current .custom-tree-node .btnBox[data-v-3e979132]{display:block}
|
||||||
1
css/setting-system-board.baac92be.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.sc-icon[data-v-d4186e40]{width:14px;height:14px;margin:0 auto;cursor:pointer}.btn[data-v-d4186e40]{color:var(--el-color-primary);cursor:pointer}.link[data-v-d4186e40]{color:#409eff}
|
||||||
@ -0,0 +1 @@
|
|||||||
|
.sc-dialog__headerbtn[data-v-14b921c4]{position:absolute;top:30px;right:var(--el-dialog-padding-primary);display:flex;justify-content:flex-end}.sc-dialog__headerbtn button[data-v-14b921c4]{padding:0;background:transparent;border:none;outline:none;cursor:pointer;font-size:var(--el-message-close-size,16px);margin-left:15px;color:var(--el-color-info);display:flex;align-items:center}.sc-dialog__headerbtn button:hover .el-dialog__close[data-v-14b921c4]{color:var(--el-color-primary)}
|
||||||
1
css/setting-system-electricLevel.da1b5a65.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.boxMain[data-v-e37ba112]{height:100%;display:flex;flex-direction:column}.boxHeader[data-v-e37ba112]{width:600px}.boxHeader .dateBox[data-v-e37ba112]{display:flex;align-items:center}.boxHeader .item[data-v-e37ba112]{display:flex;align-items:center;margin-bottom:15px;flex:1}.boxHeader .item .name[data-v-e37ba112]{flex-basis:70px;text-align:right;margin-right:10px}.boxHeader .item .com[data-v-e37ba112]{flex:1;overflow:hidden}.boxHeader .btn[data-v-e37ba112]{margin-top:30px}.boxContent[data-v-e37ba112]{flex:1;max-width:800px}.priceColor[data-v-e37ba112]{color:#409eff}
|
||||||
1
css/setting-system-flowPath.3fccc199.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.tableBtnView[data-v-3ef7f139]{display:flex;align-items:center;justify-content:flex-start}
|
||||||
1
css/setting-system-machin.b940468a.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.boxViewCenter .title[data-v-4136a15d]{font-size:var(--el-font-size-base);color:var(--el-text-color-regular)}.boxViewCenter .boxItme[data-v-4136a15d]{margin:20px 0 10px 0;display:flex;align-items:center}.boxViewCenter .boxItme .name[data-v-4136a15d]{width:80px;text-align:right;margin-right:20px;color:var(--el-text-color-regular)}
|
||||||
1
css/setting-system-speed.86ca9da1.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.headerBox[data-v-39e23426]{height:360px;box-shadow:1px 6px 6px rgba(0,0,0,.2);border-radius:9px;display:flex;flex-direction:column;padding:0 10px}.headerBox .imgBox[data-v-39e23426]{padding:0 20px;flex:1;overflow:hidden;display:flex;align-items:center;justify-content:center;position:relative}.headerBox .imgBox .elImage[data-v-39e23426]{width:100%;height:100%}.headerBox .imgBox .resetBox[data-v-39e23426]{position:absolute;right:20px;top:20px;height:140px;width:59%;z-index:10;display:flex;align-items:stretch;justify-content:center;border-left:1px dashed var(--el-color-danger);border-right:1px dashed var(--el-color-danger)}.headerBox .imgBox .resetBox .boxItem[data-v-39e23426]{position:absolute;top:-20px;left:60%}.headerBox .imgBox .resetBox[data-v-39e23426]:before{content:"";position:absolute;top:0;right:2%;width:96%;height:100%;border-top:1px dashed var(--el-color-primary)}.headerBox .imgBox .resetBox[data-v-39e23426]:after{content:"";position:absolute;top:.5px;left:1%;height:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:5px solid var(--el-color-primary);transform:translateY(-50%)}.headerBox .imgBox[data-v-39e23426]:before{content:"";position:absolute;left:20px;bottom:0;height:100px;width:0;border-left:1px dashed var(--el-color-primary)}.headerBox .imgBox[data-v-39e23426]:after{content:"";position:absolute;right:20px;bottom:0;height:100px;width:0;border-right:1px dashed var(--el-color-primary)}.headerBox .borderBox[data-v-39e23426]{flex-basis:90px;margin-top:15px;border-top:1px solid #909399;display:flex;padding:0 20px;position:relative}.headerBox .borderBox[data-v-39e23426]:before{content:"";position:relative;left:0;top:-12px;height:12px;width:1px;background:#909399}.headerBox .borderBox[data-v-39e23426]:after{content:"";position:relative;right:-20px;top:0;height:0;width:0;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:5px solid #909399;transform:translateY(-50%)}.headerBox .emptyBox[data-v-39e23426]{position:relative;left:0;top:0;z-index:10;width:47%;height:100%}.headerBox .enterBox[data-v-39e23426]{position:relative;left:0;top:0;z-index:10;width:3%;height:100%}.headerBox .processingBox[data-v-39e23426]{position:relative;left:0;top:0;z-index:10;width:21%;height:100%}.headerBox .processingBox .boxItem[data-v-39e23426]{position:absolute;left:40%}.headerBox .exitBox[data-v-39e23426]{position:relative;left:0;top:0;z-index:10;width:14.3%;height:100%}.headerBox .emptyBox[data-v-39e23426]:before,.headerBox .enterBox[data-v-39e23426]:before,.headerBox .exitBox[data-v-39e23426]:before,.headerBox .processingBox[data-v-39e23426]:before{content:"";position:absolute;right:0;top:-12px;height:12px;width:1px;background:#909399}.headerBox .emptyBox[data-v-39e23426]:after,.headerBox .enterBox[data-v-39e23426]:after,.headerBox .exitBox[data-v-39e23426]:after,.headerBox .processingBox[data-v-39e23426]:after{content:"";position:absolute;right:0;top:-100px;height:100px;width:0;border-right:1px dashed var(--el-color-primary)}.boxItem[data-v-39e23426]{height:100%;width:100px;margin:0 auto;display:flex;justify-content:center;flex-direction:column}.boxItem .name[data-v-39e23426]{color:var(--el-color-primary);margin-bottom:8px;width:80px;display:flex;align-items:center;justify-content:flex-start;padding:0 6px}.boxItem .com[data-v-39e23426],.fromView[data-v-39e23426]{display:flex;align-items:center}.fromView[data-v-39e23426]{flex-direction:row}.boxFromItem[data-v-39e23426]{padding:25px 20px 25px 0}.boxFromItem .title[data-v-39e23426]{font-weight:700;margin-bottom:10px}.boxFromItem .boxCom[data-v-39e23426]{display:flex;align-items:center;justify-content:flex-start}.boxFromItem .boxCom .name[data-v-39e23426]{flex-basis:60px;text-align:right;margin-right:10px}.boxFromItem .boxCom .to[data-v-39e23426]{padding:0 8px}.boxFromItem .boxCom .unit[data-v-39e23426]{margin-left:10px}.tableBox[data-v-39e23426]{margin-top:10px}.tableBox .sawBox[data-v-39e23426]{display:flex;flex-wrap:wrap}.tableBox .sawBox .num[data-v-39e23426]{margin:2px 6px;background:#f2f2f2;border-radius:12px;padding:0 8px}.elInput[data-v-39e23426]{width:80px;margin-right:5px}.elFormInput[data-v-39e23426]{width:150px}.save[data-v-39e23426]{margin-left:40px}.dark .boxFromItemBorder[data-v-39e23426]{border-top-color:#606164}.dark .tableBox .sawBox .num[data-v-39e23426]{background:#8f8f8f}
|
||||||
1
css/setting-system-time.8a495219.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.timeView[data-v-0f9ac31b]{padding-top:5px}.timeView .itemBox[data-v-0f9ac31b]{display:flex;margin-bottom:20px;width:600px}.timeView .itemBox .name[data-v-0f9ac31b]{flex-basis:110px;display:flex;justify-content:flex-end;align-items:center;padding-right:12px}.timeView .itemBox .boxCom[data-v-0f9ac31b]{display:flex;flex:1}.timeView .itemBox .boxCom .selectBox[data-v-0f9ac31b]{flex-basis:140px;margin-right:20px}.timeView .itemBox .boxCom .selectView[data-v-0f9ac31b]{flex:1}.timeView .itemBox .boxCom .to[data-v-0f9ac31b]{margin:0 12px;display:flex;align-items:center}.timeView .itemBox .countTime[data-v-0f9ac31b]{margin-left:12px;display:flex;align-items:center;width:90px}.timeView .itemBox .btnBox[data-v-0f9ac31b]{flex-basis:20px;margin-left:18px;display:flex;align-items:center;justify-content:flex-end}.timeView .itemBox .btnBox .add .sc-icon[data-v-0f9ac31b]{color:var(--el-color-white);border-color:var(--el-color-primary);background:var(--el-color-primary)}.timeView .itemBox .btnBox .del .sc-icon[data-v-0f9ac31b]{color:var(--el-color-white);border-color:var(--el-color-danger);background:var(--el-color-danger)}.timeView .itemBox .btnBox .sc-icon[data-v-0f9ac31b]{width:15px;height:15px;cursor:pointer;border:1px solid #ddd;border-radius:2px;display:flex;align-items:center;justify-content:center}.timeView .allCountTime[data-v-0f9ac31b]{margin-bottom:20px}
|
||||||
1
css/setting-system.3d717831.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.boxMain[data-v-ac7744e8]{background:var(--el-bg-color-overlay);height:100%}.nopadding[data-v-ac7744e8]{border-radius:6px}
|
||||||
1
css/setting-task.5aa00783.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.task[data-v-dbf89736]{height:210px}.task-item h2[data-v-dbf89736]{font-size:15px;color:#3c4a54;padding-bottom:15px}.task-item li[data-v-dbf89736]{list-style-type:none;margin-bottom:10px}.task-item li h4[data-v-dbf89736]{font-size:12px;font-weight:400;color:#999}.task-item li p[data-v-dbf89736]{margin-top:5px}.task-item .bottom[data-v-dbf89736]{border-top:1px solid #ebeef5;text-align:right;padding-top:10px;display:flex;justify-content:space-between;align-items:center}.task-add[data-v-dbf89736]{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;cursor:pointer;color:#999}.task-add[data-v-dbf89736]:hover{color:#409eff}.task-add i[data-v-dbf89736]{font-size:30px}.task-add p[data-v-dbf89736]{font-size:12px;margin-top:20px}.dark .task-item .bottom[data-v-dbf89736]{border-color:var(--el-border-color-light)}
|
||||||
1
css/setting-user-company-user-list.012b047b.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.companyName[data-v-558df0fa]{color:var(--el-color-primary);font-size:14px}
|
||||||
1
css/setting-user-view-permission.4ae1f920.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.nopadding[data-v-b8270b96]{padding:10px 0}.module[data-v-b8270b96]{flex-basis:120px}.check[data-v-b8270b96],.module[data-v-b8270b96]{display:flex;align-items:center;justify-content:center}.check[data-v-b8270b96]{flex-basis:60px}.menu[data-v-b8270b96]{flex-basis:180px}.authority[data-v-b8270b96]{flex:1;text-align:center}.treeTable[data-v-b8270b96]{border:1px solid var(--el-border-color-light)}.thenTitle .tr[data-v-b8270b96]{display:flex;align-items:stretch;border-bottom:1px solid var(--el-border-color-light);height:40px;background:var(--el-bg-color-overlay)}.thenTitle .tr .th[data-v-b8270b96]{padding:0 10px;border-left:1px solid var(--el-border-color-light);height:100%;display:flex;align-items:center;justify-content:center}.thenTitle .tr .th[data-v-b8270b96]:first-child{border-left:none}.thenTitle .tr .thFlex[data-v-b8270b96]{display:flex;flex:1;padding:0}.thenTitle .tr .thFlex .name[data-v-b8270b96]{flex-basis:180px;padding:10px}.thenTitleBottom .tr[data-v-b8270b96]{border-bottom:0}.tableBody .tr[data-v-b8270b96]{display:flex;align-items:stretch;justify-content:space-between;border-bottom:1px solid var(--el-border-color-light)}.tableBody .tr .td[data-v-b8270b96]{padding:0 10px;border-left:1px solid var(--el-border-color-light)}.tableBody .tr .td .nextTd[data-v-b8270b96]{display:flex;align-items:center;border-bottom:1px solid var(--el-border-color-light)}.tableBody .tr .td .nextTd[data-v-b8270b96]:last-child{border-bottom:0}.tableBody .tr .td[data-v-b8270b96]:first-child{border-left:0}.tableBody .tr .tdChild[data-v-b8270b96]{flex:1;padding:0}.tableBody .tr .tdChild .tdName[data-v-b8270b96]:last-child,.tableBody .tr .tdChild[data-v-b8270b96]{border-left:1px solid var(--el-border-color-light)}.tableBody .tr .tdChild .menuTd[data-v-b8270b96]{border-bottom:1px solid var(--el-border-color-light)}.tableBody .tr .tdChild .menuTd[data-v-b8270b96]:last-child{border-bottom:0}.tableBody .tr .tdChild .tdName[data-v-b8270b96]{padding:0 10px;min-height:33px}.tableBody .tr .tdChild .childTr[data-v-b8270b96]{display:flex;flex-wrap:wrap;flex:1}.tableBody .tr .tdChild .childTr .preBox[data-v-b8270b96]{display:flex;align-items:center;flex-wrap:wrap;margin-right:20px;width:110px}.tableBody .tr .tdChild .childTr .preBox .name[data-v-b8270b96]{width:100px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;text-align:left}.tableBody .tr[data-v-b8270b96]:last-child{border-bottom:0}.roleName[data-v-b8270b96]{color:var(--el-color-primary);margin-right:10px}.roleTag[data-v-b8270b96]{margin-right:10px}
|
||||||
1
css/setting-user-wincc-permission.c171f51a.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.nopadding[data-v-52c8c373]{padding:0;overflow:hidden}.check[data-v-52c8c373]{flex-basis:60px;display:flex;align-items:center;justify-content:center}.deviceLeft[data-v-52c8c373]{background:#f9f9f9}.authority[data-v-52c8c373]{flex:1;text-align:center}.trOne .line[data-v-52c8c373]{margin-bottom:4px;display:flex;justify-content:space-between;align-items:center;cursor:pointer}.trOne .line .openShow[data-v-52c8c373]{width:16px}.trOne .trLine[data-v-52c8c373]{background:#f5f7fa;padding:0 10px}.trOne .lineName[data-v-52c8c373]{display:flex;align-items:center}.trOne .lineName .deviceName[data-v-52c8c373]{padding:7px 0;color:#606266}.trOne .lineName .device[data-v-52c8c373]{flex-basis:200px}.trOne .lineName .devicePermissions[data-v-52c8c373]{flex:1;padding:0 10px}.tableBody .trBorder[data-v-52c8c373]{border-bottom:1px solid var(--el-border-color-light)}.tableBody .tr[data-v-52c8c373]{display:flex;align-items:stretch;justify-content:space-between;flex-direction:column;margin:10px 0}.tableBody .tr .td[data-v-52c8c373]{padding:0 10px;border-bottom:1px solid var(--el-border-color-light)}.tableBody .tr .td .nextTd[data-v-52c8c373]{display:flex;align-items:center}.tableBody .tr .td[data-v-52c8c373]:last-child{border-bottom:0}.tableBody .tr .deviceList[data-v-52c8c373]{margin-top:1px}.tableBody .tr .tdChild[data-v-52c8c373]{flex:1;padding:0}.tableBody .tr .tdChild .tdName[data-v-52c8c373]{padding:0 10px;min-height:33px;flex-basis:200px}.tableBody .tr .tdChild .authority[data-v-52c8c373]{flex:1;padding:0 20px}.tableBody .tr .tdChild .childTr[data-v-52c8c373]{display:flex;flex-wrap:wrap;flex:1}.tableBody .tr .tdChild .childTr .preBox[data-v-52c8c373]{display:flex;align-items:center;flex-wrap:wrap;margin-right:20px;width:110px}.roleName[data-v-52c8c373]{color:var(--el-color-primary);margin-right:10px}.roleTag[data-v-52c8c373]{margin-right:10px}.dark .deviceLeft[data-v-52c8c373]{background:#333}.dark .trOne .trLine[data-v-52c8c373]{background:none}.dark .trOne .line[data-v-52c8c373]{background:#333}
|
||||||
1
css/setting-user.abf7b9ce.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.userImg[data-v-7e616202]{height:100%;display:flex;align-items:center}.user-avatar .el-avatar[data-v-7e616202]{position:relative;overflow:inherit}.user-avatar .el-avatar[data-v-7e616202]:before{content:"";position:absolute;bottom:0;right:-3px;width:8px;height:8px;z-index:99;border-radius:50%;background:var(--el-bg-color-overlay)}.user-avatar .el-avatar[data-v-7e616202]:after{content:"";position:absolute;bottom:2px;right:-1px;width:4px;height:4px;z-index:100;border-radius:50%;background:#67c23a}
|
||||||
1
css/template-list-width.9269d10a.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.page-msg[data-v-877c30c0]{margin:15px 0}.page-buttons[data-v-877c30c0]{margin-bottom:20px}
|
||||||
1
css/template-other-stepform.b9e5764f.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.el-steps[data-v-3196d76a] .is-finish .el-step__line{background:var(--el-color-primary)}
|
||||||
1
css/test-autocode-list.b64b6164.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.code[data-v-11ad0de6]{height:400px;overflow:auto;background:#333;color:#999;padding:20px;font-size:14px;font-family:consolas;line-height:1.5}
|
||||||
1
css/test-autocode.66d274d3.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.el-card[data-v-63fd3909]{margin-bottom:15px}.code-item[data-v-63fd3909]{cursor:pointer}.code-item .img[data-v-63fd3909]{width:100%;height:150px;background:#09f;display:flex;align-items:center;justify-content:center}.code-item .img i[data-v-63fd3909]{font-size:100px;color:#fff;background-image:-webkit-linear-gradient(top left,#fff,#09f 100px);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.code-item .title[data-v-63fd3909]{padding:15px}.code-item .title h2[data-v-63fd3909]{font-size:16px}.code-item .title h4[data-v-63fd3909]{font-size:12px;color:#999;font-weight:400;margin-top:5px}.code-item .title p[data-v-63fd3909]{margin-top:15px}
|
||||||
1
css/userCenter-user-account.a74b5652.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.login-msg-yzm[data-v-0f3ba2c6]{width:100%;display:flex;align-items:center;justify-content:space-between}
|
||||||
1
css/userCenter-user-bind.da41db45.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.bindBxo[data-v-66b315de]{padding:0 10px}.bindBxo .title[data-v-66b315de]{font-size:14px;font-weight:500;margin-top:20px}.boxView[data-v-66b315de]{width:460px;display:flex;align-items:end;margin-top:20px;margin-left:5px}.boxView .leftImg[data-v-66b315de]{display:flex;align-items:center}.boxView .leftImg .leftIcon[data-v-66b315de]{width:40px;height:40px;display:flex;align-items:center;justify-items:center;margin-right:10px}.boxView .leftImg .leftIcon .el-icon[data-v-66b315de]{font-size:34px}.boxView .leftImg .titleName[data-v-66b315de]{margin-bottom:5px;font-size:var(--el-font-size-base)}.boxView .leftImg .nameRed[data-v-66b315de]{color:var(--el-color-danger)}.boxView .leftImg .msg[data-v-66b315de]{font-size:var(--el-font-size-extra-small);color:#837e7e}.boxViewCenter[data-v-66b315de]{align-items:center}.boxViewCenter .leftBox[data-v-66b315de]{font-size:var(--el-font-size-base)}.boxViewCenter .itemMain[data-v-66b315de]{width:100%}.boxViewCenter .itemMain .boxCom[data-v-66b315de]{display:flex;align-items:center;margin-bottom:15px}.boxViewCenter .itemMain .boxCom .icon[data-v-66b315de]{display:flex;align-items:center;justify-content:center}.boxViewCenter .itemMain .boxCom .name[data-v-66b315de]{margin-left:10px}.bandTime[data-v-66b315de]{align-items:baseline}.bandTime .tip[data-v-66b315de]{margin-top:6px;color:#999}.qrCodeLogin[data-v-66b315de]{text-align:center;position:relative;padding:0 0 20px 0}.code_container[data-v-66b315de]{width:430px;height:430px;margin:0 auto}.qrCodeLogin img.qrCode[data-v-66b315de]{background:#fff;padding:20px;border-radius:10px}.qrCodeLogin .error[data-v-66b315de]{color:var(--el-color-error)}.qrCodeLogin p.msg[data-v-66b315de]{margin-top:15px}.qrCodeLogin .qrCodeLogin-result[data-v-66b315de]{position:absolute;top:0;left:0;right:0;bottom:0;text-align:center;background:var(--el-mask-color);display:flex;flex-direction:column;justify-content:center}.passkeyView .msg[data-v-66b315de]{margin-top:10px;color:var(--el-color-warning)}
|
||||||
1
css/userCenter-user-pushSettings.807ff8fb.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.card-header-box[data-v-13142ef4]{display:flex;align-items:center;justify-content:space-between}.pushSetting[data-v-13142ef4]{padding:15px 0;display:flex;flex-direction:column;height:100%;overflow:hidden}.pushSetting .headerNav[data-v-13142ef4]{padding:10px 10px;display:flex;background:#f5f7fa}.pushSetting .headerNav .item[data-v-13142ef4]{flex:1}.pushSetting .headerNav .center[data-v-13142ef4]{display:flex;justify-content:center;cursor:pointer}.pushSetting .headerNav .center .el-tooltip__trigger[data-v-13142ef4]{display:flex;align-items:center}.pushSetting .headerNav .sc-icon[data-v-13142ef4]{display:inline-block;width:16px;height:16px;margin-left:6px;color:var(--el-color-warning)}.pushSetting .middleView[data-v-13142ef4]{display:flex;flex-direction:column;padding:10px 10px;flex:1;overflow:hidden}.pushSetting .middleView .listView[data-v-13142ef4]{display:flex}.pushSetting .middleView .item[data-v-13142ef4]{flex:1;padding:0 0;display:flex;align-items:center}.pushSetting .middleView .center[data-v-13142ef4]{display:flex;justify-content:center}.dark .pushSetting .headerNav[data-v-13142ef4]{background:#313131}
|
||||||
1
css/userCenter-user-upToEnterprise.2590fa5a.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.boxView[data-v-57406da8]{width:100%;height:100%;padding:20px 0;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.boxView .headerBox[data-v-57406da8]{width:100%;padding:0 12px;display:flex;justify-content:space-around}.boxView .headerBox .itemView[data-v-57406da8]{display:flex;flex-direction:column;align-items:center;flex-basis:170px}.boxView .headerBox .itemView .name[data-v-57406da8]{background:linear-gradient(90deg,#5b7bab,#83b5ff);color:var(--el-color-white);padding:5px 23px;border-radius:20px;font-size:12px}.boxView .headerBox .itemView .yellow[data-v-57406da8]{background:linear-gradient(90deg,#bd9f5f,#e1c485)}.boxView .headerBox .itemView .blue[data-v-57406da8]{background:linear-gradient(90deg,#464663,#9b9bc0)}.boxView .headerBox .itemView .text[data-v-57406da8]{margin-top:10px;color:#606266}.boxView .headerBox .itemName[data-v-57406da8]{flex:1;overflow:hidden}.boxView .titleBox[data-v-57406da8]{background:#f5f7fa;width:100%;height:40px;display:flex;align-items:center;padding:0 12px;margin:15px 0 5px 0}.boxView .titleBox .itemView[data-v-57406da8]{flex-basis:170px;display:flex;align-items:center;justify-content:center}.boxView .titleBox .itemView .btn[data-v-57406da8]{color:var(--el-color-primary);cursor:pointer}.boxView .titleBox .itemName[data-v-57406da8]{flex:1;overflow:hidden;display:flex;justify-content:flex-start}.boxView .mainBox[data-v-57406da8]{padding:0;margin:0;width:100%;display:flex;flex-direction:column}.boxView .mainBox .itemView[data-v-57406da8]{width:100%;display:flex;align-items:center;border-bottom:1px solid #f2f2f2;padding:7px 12px}.boxView .mainBox .itemView .itemBox[data-v-57406da8]{display:flex;align-items:center;justify-content:center}.boxView .mainBox .itemView .itemBox .sc-icon[data-v-57406da8]{width:12px;height:12px}.boxView .mainBox .itemView .itemBox .sc-icon-fork[data-v-57406da8]{width:10px;height:10px}.boxView .mainBox .itemView .itemName[data-v-57406da8]{flex-basis:150px;overflow:hidden;justify-content:flex-start;flex-direction:column;align-items:flex-start}.boxView .mainBox .itemView .itemName .name[data-v-57406da8]{color:#000;font-weight:500}.boxView .mainBox .itemView .itemName .text[data-v-57406da8]{margin-top:5px;color:#606266}.boxView .mainBox .itemView .lineColumn[data-v-57406da8]{flex:1;display:flex;flex-direction:column}.boxView .mainBox .itemView .lineColumn .columnItem[data-v-57406da8]{display:flex;border-bottom:1px solid #f2f2f2;padding:7px 0}.boxView .mainBox .itemView .lineColumn .columnItem .name[data-v-57406da8]{flex:1;padding:0 12px}.boxView .mainBox .itemView .lineColumn .columnItem .itemBox[data-v-57406da8]{flex-basis:170px;display:flex}.boxView .mainBox .itemView .lineColumn .columnItem[data-v-57406da8]:first-child{padding-top:0}.boxView .mainBox .itemView .lineColumn .columnItem[data-v-57406da8]:last-child{border-bottom:0;padding-bottom:0}.dark .boxView .titleBox[data-v-57406da8]{background:#2c2c2c}.dark .boxView .mainBox .itemView[data-v-57406da8]{border-bottom:1px solid #333}.dark .boxView .mainBox .itemView .itemName .name[data-v-57406da8]{color:var(--el-color-white)}
|
||||||
1
css/vab-contextmenu.24807ebb.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.sc-contextmenu{position:fixed;z-index:3000;font-size:12px}.sc-contextmenu__menu{display:inline-block;min-width:120px;border:1px solid #e4e7ed;background:#fff;box-shadow:0 2px 12px 0 rgba(0,0,0,.1);z-index:3000;list-style-type:none;padding:10px 0}.sc-contextmenu__menu>hr{margin:5px 0;border:none;height:1px;font-size:0;background-color:#ebeef5}.sc-contextmenu__menu>li{margin:0;cursor:pointer;line-height:30px;padding:0 17px 0 10px;color:#606266;display:flex;justify-content:space-between;white-space:nowrap;text-decoration:none;position:relative}.sc-contextmenu__menu>li:hover{background-color:#ecf5ff;color:#66b1ff}.sc-contextmenu__menu>li.disabled{cursor:not-allowed;color:#bbb;background:transparent}.sc-contextmenu__icon{display:inline-block;width:14px;font-size:14px;margin-right:10px}.sc-contextmenu__suffix{margin-left:40px;color:#999}.sc-contextmenu__menu li ul{position:absolute;top:0;left:100%;display:none;margin:-11px 0}
|
||||||
1
css/vab-drag.2a0c7a4b.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.dragList[data-v-a544debc]{overflow:auto}.item[data-v-a544debc]{cursor:move;float:left;background:#fff;width:100px;height:100px;line-height:100px;text-align:center;margin:0 15px 15px 0;border:1px solid #e6e6e6}.dragList .sortable-ghost[data-v-a544debc]{opacity:.5}
|
||||||
1
css/vab-fileselect.98c74785.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.sc-file-select[data-v-48ded1ad]{display:flex}.sc-file-select__files[data-v-48ded1ad]{flex:1}.sc-file-select__list[data-v-48ded1ad]{height:400px}.sc-file-select__item[data-v-48ded1ad]{display:inline-block;float:left;margin:0 15px 25px 0;width:110px;cursor:pointer}.sc-file-select__item__file[data-v-48ded1ad]{width:110px;height:110px;position:relative}.sc-file-select__item__file .el-image[data-v-48ded1ad]{width:110px;height:110px}.sc-file-select__item__box[data-v-48ded1ad]{position:absolute;top:0;right:0;bottom:0;left:0;border:2px solid var(--el-color-success);z-index:1;display:none}.sc-file-select__item__box[data-v-48ded1ad]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:var(--el-color-success);opacity:.2;display:none}.sc-file-select__item.active .sc-file-select__item__box[data-v-48ded1ad],.sc-file-select__item.active .sc-file-select__item__box[data-v-48ded1ad]:before,.sc-file-select__item:hover .sc-file-select__item__box[data-v-48ded1ad]{display:block}.sc-file-select__item p[data-v-48ded1ad]{margin-top:10px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;-webkit-text-overflow:ellipsis;text-align:center}.sc-file-select__item__checkbox[data-v-48ded1ad]{position:absolute;width:20px;height:20px;top:7px;right:7px;z-index:2;background:rgba(0,0,0,.2);border:1px solid #fff;display:flex;flex-direction:column;align-items:center;justify-content:center}.sc-file-select__item__checkbox i[data-v-48ded1ad]{font-size:14px;color:#fff;font-weight:700;display:none}.sc-file-select__item__select[data-v-48ded1ad]{position:absolute;width:20px;height:20px;top:0;right:0;z-index:2;background:var(--el-color-success);display:none;flex-direction:column;align-items:center;justify-content:center}.sc-file-select__item__select i[data-v-48ded1ad]{font-size:14px;color:#fff;font-weight:700}.sc-file-select__item.active .sc-file-select__item__checkbox[data-v-48ded1ad]{background:var(--el-color-success)}.sc-file-select__item.active .sc-file-select__item__checkbox i[data-v-48ded1ad]{display:block}.sc-file-select__item.active .sc-file-select__item__select[data-v-48ded1ad]{display:flex}.sc-file-select__item__file .item-file[data-v-48ded1ad]{width:110px;height:110px;display:flex;flex-direction:column;align-items:center;justify-content:center}.sc-file-select__item__file .item-file i[data-v-48ded1ad]{font-size:40px}.sc-file-select__item__file .item-file.item-file-doc[data-v-48ded1ad]{color:#409eff}.sc-file-select__item__upload[data-v-48ded1ad]{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;background:hsla(0,0%,100%,.7);display:flex;flex-direction:column;align-items:center;justify-content:center}.sc-file-select__side[data-v-48ded1ad]{width:200px;margin-right:15px;border-right:1px solid hsla(0,0%,50%,.2);display:flex;flex-flow:column}.sc-file-select__side-menu[data-v-48ded1ad]{flex:1}.sc-file-select__side-msg[data-v-48ded1ad]{height:32px;line-height:32px}.sc-file-select__top[data-v-48ded1ad]{margin-bottom:15px;display:flex;justify-content:space-between}.sc-file-select__upload[data-v-48ded1ad]{display:inline-block}.sc-file-select__top .tips[data-v-48ded1ad]{font-size:12px;margin-left:10px;color:#999}.sc-file-select__top .tips i[data-v-48ded1ad]{font-size:14px;margin-right:5px;position:relative;bottom:-.125em}.sc-file-select__pagination[data-v-48ded1ad]{margin:15px 0}.sc-file-select__do[data-v-48ded1ad]{text-align:right}
|
||||||
1
css/vab-iconfont.38bfe3e2.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.box[data-v-d147796a]{border-top:1px solid #eee;border-left:1px solid #eee}.icon-box[data-v-d147796a]{height:120px;text-align:center;background:#fff;border-bottom:1px solid #eee;border-right:1px solid #eee;color:#666;padding:30px 10px}.icon-box i[data-v-d147796a]{font-size:26px;transition:color .15s linear}.icon-box p[data-v-d147796a]{color:#999;margin-top:15px;transition:color .15s linear}.icon-box:hover i[data-v-d147796a],.icon-box:hover p[data-v-d147796a]{color:#5cb6ff}.dark .box[data-v-d147796a],.dark .icon-box[data-v-d147796a]{border-color:var(--el-border-color-light)}.dark .icon-box[data-v-d147796a]{background:var(--el-bg-color-overlay)}
|
||||||
1
css/vab-mini.7d8144d8.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.up[data-v-7a08b8f7]{text-align:center}.up h2[data-v-7a08b8f7]{margin-bottom:10px}.up p[data-v-7a08b8f7]{color:#999;line-height:1.5}.el-card[data-v-7a08b8f7]{height:150px}
|
||||||
1
css/vab-print.d4f62fb7.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.printMain .item[data-v-03a2c1a0]{padding:20px;border:1px solid #409eff;margin-bottom:20px;background:#ecf5ff;border-radius:4px}.printMain p[data-v-03a2c1a0]{margin-top:20px;color:#999}
|
||||||
1
css/vab-statistic.7efcf655.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.el-card[data-v-26b7129d]{margin-bottom:15px}.up[data-v-26b7129d]{color:#f56c6c;margin-left:5px}.down[data-v-26b7129d]{color:#67c23a;margin-left:5px}
|
||||||
1
css/vab-upload.c553da21.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.el-card+.el-card[data-v-0beaf675]{margin-top:15px}.imglist .el-col+.el-col[data-v-0beaf675]{margin-left:8px}.custom-empty[data-v-0beaf675]{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#8c939d;border-radius:5px}.custom-empty i[data-v-0beaf675]{font-size:30px;color:#fff}.custom-empty p[data-v-0beaf675]{font-size:12px;font-weight:400;color:#fff;margin-top:10px}
|
||||||
1
css/vab-video.dd00cc0f.css
Normal file
@ -0,0 +1 @@
|
|||||||
|
.sc-video[data-v-38fc476c] .danmu>*{color:#fff;font-size:20px;font-weight:700;text-shadow:1px 1px 0 #000,-1px -1px 0 #000,-1px 1px 0 #000,1px -1px 0 #000}.sc-video[data-v-38fc476c] .xgplayer-controls{background-image:linear-gradient(180deg,transparent,rgba(0,0,0,.3))}.sc-video[data-v-38fc476c] .xgplayer-progress-tip{border:0;color:#fff;background:rgba(0,0,0,.5);line-height:25px;padding:0 10px;border-radius:25px}.sc-video[data-v-38fc476c] .xgplayer-enter-spinner{width:50px;height:50px}
|
||||||
444
customer.js
Normal file
BIN
favicon.ico
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
img/404.png
Normal file
|
After Width: | Height: | Size: 97 KiB |
BIN
img/auth_banner.jpg
Normal file
|
After Width: | Height: | Size: 286 KiB |
BIN
img/avatar.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
img/avatar2.gif
Normal file
|
After Width: | Height: | Size: 132 KiB |
BIN
img/avatar3.gif
Normal file
|
After Width: | Height: | Size: 133 KiB |
1
img/loginbg.svg
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
img/logo-r.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
img/logo.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
img/mutou.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
57
img/no-widgets.svg
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 750 750" style="enable-background:new 0 0 750 750;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.35;fill:#B3B3B3;}
|
||||||
|
.st1{opacity:0.1;fill:#B3B3B3;}
|
||||||
|
.st2{opacity:0.3;fill:#B3B3B3;}
|
||||||
|
.st3{opacity:0.1;}
|
||||||
|
.st4{fill:#B3B3B3;}
|
||||||
|
</style>
|
||||||
|
<g>
|
||||||
|
<path class="st0" d="M465.1,261.4H264c-1.3,0-2.4,1.1-2.4,2.4v255.6c0,1.3,1.1,2.4,2.4,2.4h201.1c1.3,0,2.4-1.1,2.4-2.4V263.8
|
||||||
|
C467.5,262.4,466.4,261.4,465.1,261.4z M417.9,443c0,1.3-1.1,2.4-2.4,2.4h-102c-1.3,0-2.4-1.1-2.4-2.4v-11.3c0-1.3,1.1-2.4,2.4-2.4
|
||||||
|
h102c1.3,0,2.4,1.1,2.4,2.4V443z M417.9,397.2c0,1.3-1.1,2.4-2.4,2.4h-102c-1.3,0-2.4-1.1-2.4-2.4v-11.3c0-1.3,1.1-2.4,2.4-2.4h102
|
||||||
|
c1.3,0,2.4,1.1,2.4,2.4V397.2z M417.9,351.5c0,1.3-1.1,2.4-2.4,2.4h-102c-1.3,0-2.4-1.1-2.4-2.4v-11.3c0-1.3,1.1-2.4,2.4-2.4h102
|
||||||
|
c1.3,0,2.4,1.1,2.4,2.4V351.5z"/>
|
||||||
|
<g>
|
||||||
|
<path class="st1" d="M462.1,236.8L462.1,236.8C384.8,236.2,321,295.1,314,370.7c-18.5-19.1-44.4-31.1-73.1-31.3h0
|
||||||
|
c-56.8-0.4-103.2,45.3-103.6,102.1l-0.8,101.4l175.6,1.3l30.1,0.2l265.1,2l1.2-160.9C609.2,304,543.6,237.4,462.1,236.8z"/>
|
||||||
|
<path class="st2" d="M216.9,227.4c-3.4,0-6.5,1.1-9,2.9c0.2-1,0.3-2,0.3-3c0.1-8.3-6.6-15.1-15-15.2s-15.1,6.6-15.2,15
|
||||||
|
c0,0.3,0,0.6,0,0.9c-1.6-0.6-3.4-1-5.2-1c-8.3-0.1-15.1,6.6-15.2,15c-0.1,8.2,6.4,14.9,14.5,15.2l0,0l44.6,0.3
|
||||||
|
c8.3,0.1,15.1-6.6,15.2-15S225.2,227.5,216.9,227.4z"/>
|
||||||
|
<path class="st2" d="M596.4,194.2c-3.4,0-6.5,1.1-9,2.9c0.2-1,0.3-2,0.3-3c0.1-8.3-6.6-15.1-15-15.2s-15.1,6.6-15.2,15
|
||||||
|
c0,0.3,0,0.6,0,0.9c-1.6-0.6-3.4-1-5.2-1c-8.3-0.1-15.1,6.6-15.2,15c-0.1,8.2,6.4,14.9,14.5,15.2l0,0l44.6,0.3
|
||||||
|
c8.3,0.1,15.1-6.6,15.2-15S604.7,194.3,596.4,194.2z"/>
|
||||||
|
<g>
|
||||||
|
<g class="st3">
|
||||||
|
<path class="st4" d="M496.9,497.5c-2.1,0-3.7,1.6-3.7,3.7c0,1.5,0.8,2.7,2,3.3l-0.5,65.1l3.5,0l0.5-65.3
|
||||||
|
c1.1-0.6,1.8-1.8,1.8-3.1C500.6,499.1,499,497.6,496.9,497.5z"/>
|
||||||
|
<path class="st4" d="M572.3,501.7c0-1.9-1.6-3.6-3.7-3.7c-2.1,0-3.7,1.6-3.7,3.7c0,1.4,0.8,2.6,1.9,3.2l-0.5,65.2l3.5,0
|
||||||
|
l0.5-65.2C571.5,504.3,572.2,503.1,572.3,501.7z"/>
|
||||||
|
</g>
|
||||||
|
|
||||||
|
<rect x="522.7" y="472.2" transform="matrix(7.448311e-03 -1 1 7.448311e-03 8.6828 1045.4733)" class="st1" width="16.5" height="92.3"/>
|
||||||
|
<polygon class="st1" points="495.4,509.8 495.2,510.1 485.5,526.3 484.8,526.3 484.9,509.8 "/>
|
||||||
|
<polygon class="st1" points="518.7,510 508.8,526.5 496.3,526.4 500.2,519.8 506,509.9 "/>
|
||||||
|
<polygon class="st1" points="542,510.2 532.1,526.6 519.6,526.5 529.3,510.1 "/>
|
||||||
|
<polygon class="st1" points="565.3,510.4 555.5,526.8 542.9,526.7 552.7,510.3 "/>
|
||||||
|
<polygon class="st1" points="577.2,510.4 577.1,527 566.2,526.9 576,510.4 "/>
|
||||||
|
|
||||||
|
<rect x="522.5" y="497.7" transform="matrix(7.448311e-03 -1 1 7.448311e-03 -17.0149 1070.603)" class="st1" width="16.5" height="92.3"/>
|
||||||
|
<polygon class="st1" points="495.2,535.3 495,535.6 485.3,551.8 484.6,551.8 484.7,535.3 "/>
|
||||||
|
<polygon class="st1" points="518.5,535.5 508.6,552 496.1,551.9 500,545.3 505.8,535.4 "/>
|
||||||
|
<polygon class="st1" points="541.8,535.7 531.9,552.1 519.4,552 529.1,535.6 "/>
|
||||||
|
<polygon class="st1" points="565.1,535.9 555.4,552.3 542.7,552.2 552.5,535.8 "/>
|
||||||
|
<polygon class="st1" points="577,536 576.9,552.5 566,552.4 575.8,536 "/>
|
||||||
|
<path class="st1" d="M577.1,527c0,0,0-0.1,0-0.3l0-0.9c0-0.7,0-1.8,0-3.2c0-2.8,0.1-6.9,0.1-12.2l0.1,0.1l-92.3-0.5l0,0l0.1-0.1
|
||||||
|
c0,5.6-0.1,11.2-0.1,16.5l-0.1-0.1l65.8,0.6l19.5,0.1l5.3,0l0,0l-5.3,0l-19.5-0.1l-65.8-0.3l-0.3,0l0.1-16.8l0.1,0l92.3,0.8
|
||||||
|
l0.1,0l0,0.1c0,5.3-0.1,9.4-0.1,12.2c0,1.5,0,2.5,0,3.2l0,0.7C577.1,526.8,577.1,527,577.1,527z"/>
|
||||||
|
<path class="st1" d="M576.9,552.5c0,0,0-0.1,0-0.3l0-0.9c0-0.7,0-1.8,0-3.2c0-2.8,0.1-6.9,0.1-12.2l0.1,0.1l-92.3-0.5l0,0
|
||||||
|
l0.1-0.1c0,5.6-0.1,11.2-0.1,16.5l-0.1-0.1l65.8,0.6l19.5,0.1l5.3,0l0,0l-5.3,0l-19.5-0.1l-65.8-0.3l-0.3,0l0.1-16.7l0.1,0
|
||||||
|
l92.3,0.8l0.1,0l0,0.1c0,5.3-0.1,9.4-0.1,12.2c0,1.5,0,2.5,0,3.2l0,0.7C576.9,552.3,576.9,552.5,576.9,552.5z"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.1 KiB |
BIN
img/tasks-example.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
236
img/ver.svg
Normal file
@ -0,0 +1,236 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 24.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
viewBox="0 0 456 262.1" style="enable-background:new 0 0 456 262.1;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.4;fill:url(#SVGID_1_);enable-background:new ;}
|
||||||
|
.st1{opacity:0.7;}
|
||||||
|
.st2{opacity:0.4;fill:url(#SVGID_2_);enable-background:new ;}
|
||||||
|
.st3{opacity:0.4;fill:url(#SVGID_3_);enable-background:new ;}
|
||||||
|
.st4{opacity:0.4;fill:url(#SVGID_4_);enable-background:new ;}
|
||||||
|
.st5{opacity:0.4;fill:url(#SVGID_5_);enable-background:new ;}
|
||||||
|
.st6{opacity:0.6;}
|
||||||
|
.st7{fill:#0073CD;}
|
||||||
|
.st8{fill:#40A8F5;}
|
||||||
|
.st9{fill:#53B9F5;}
|
||||||
|
.st10{fill:#85D3FF;}
|
||||||
|
.st11{fill:#8CD7FF;}
|
||||||
|
.st12{fill:#EBFCFF;}
|
||||||
|
.st13{fill:none;stroke:url(#SVGID_6_);stroke-width:2;stroke-miterlimit:10;}
|
||||||
|
.st14{fill:none;stroke:url(#SVGID_7_);stroke-width:2;stroke-miterlimit:10;}
|
||||||
|
.st15{fill:none;stroke:url(#SVGID_8_);stroke-width:2;stroke-miterlimit:10;}
|
||||||
|
.st16{fill:none;stroke:url(#SVGID_9_);stroke-width:2;stroke-miterlimit:10;}
|
||||||
|
.st17{fill:none;stroke:url(#SVGID_10_);stroke-width:2;stroke-miterlimit:10;}
|
||||||
|
.st18{fill:none;stroke:url(#SVGID_11_);stroke-width:2;stroke-miterlimit:10;}
|
||||||
|
</style>
|
||||||
|
<title>升级中</title>
|
||||||
|
<g id="图层_2_1_">
|
||||||
|
<g id="图层_1-2">
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="232.745" y1="39.57" x2="232.745" y2="1.88" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<path class="st0" d="M412.3,262.1c-23-23-61-37.7-179.5-37.7S76.2,239.1,53.2,262.1H412.3z"/>
|
||||||
|
<g class="st1">
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="349.365" y1="237.3224" x2="349.365" y2="59.9676" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<path class="st2" d="M380.7,26.7h-62.6c-1.5-0.1-2.8,1.1-2.8,2.6v172.2c0.1,1.5,1.3,2.7,2.8,2.6h62.6c1.5,0.1,2.7-1.1,2.8-2.6
|
||||||
|
V29.3C383.4,27.8,382.2,26.6,380.7,26.7z M328.3,147c0,0.5-0.4,0.9-0.9,0.9c0,0,0,0,0,0h-3.6c-0.5,0-0.9-0.4-0.9-0.8c0,0,0,0,0,0
|
||||||
|
v-19.7c0-0.5,0.4-0.9,0.9-0.9c0,0,0,0,0,0h3.6c0.5,0,0.9,0.4,0.9,0.9c0,0,0,0,0,0V147z M328.3,116.8c0,0.5-0.4,0.9-0.9,0.9
|
||||||
|
c0,0,0,0,0,0h-3.6c-0.5,0-0.9-0.4-0.9-0.9c0,0,0,0,0,0V97c0-0.5,0.4-0.9,0.9-0.9c0,0,0,0,0,0h3.6c0.5,0,0.9,0.4,0.9,0.9
|
||||||
|
c0,0,0,0,0,0V116.8z M328.3,86.5c0,0.5-0.4,0.9-0.9,0.9c0,0,0,0,0,0h-3.6c-0.5,0-0.9-0.4-0.9-0.9c0,0,0,0,0,0V66.8
|
||||||
|
c0-0.5,0.4-0.9,0.9-0.9c0,0,0,0,0,0h3.6c0.5,0,0.9,0.4,0.9,0.9c0,0,0,0,0,0V86.5z M328.3,56.3c0,0.5-0.4,0.9-0.9,0.9c0,0,0,0,0,0
|
||||||
|
h-3.6c-0.5,0-0.9-0.4-0.9-0.9c0,0,0,0,0,0V36.6c0-0.5,0.4-0.9,0.9-0.9c0,0,0,0,0,0h3.6c0.5,0,0.9,0.4,0.9,0.9c0,0,0,0,0,0V56.3z
|
||||||
|
M340,147c0,0.5-0.4,0.9-0.9,0.9c0,0,0,0,0,0h-3.6c-0.5,0-0.9-0.4-0.9-0.9c0,0,0,0,0,0v-19.7c0-0.5,0.4-0.9,1-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,0.9,0.9V147z M340,116.8c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-1-0.9V97c0-0.5,0.4-0.9,1-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,0.9,0.9V116.8z M340,86.5c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-1-0.9V66.8c0-0.5,0.4-0.9,1-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,0.9,0.9V86.5z M340,56.3c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-1-0.9V36.6c0-0.5,0.4-0.9,1-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,0.9,0.9V56.3z M351.7,147c0,0.5-0.4,0.9-0.9,0.9c0,0,0,0,0,0h-3.6c-0.5,0-0.9-0.4-0.9-0.9c0,0,0,0,0,0v-19.7
|
||||||
|
c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V147z M351.7,116.8c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V97
|
||||||
|
c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V116.8z M351.7,86.5c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V66.8
|
||||||
|
c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V86.5z M351.7,56.3c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V36.6
|
||||||
|
c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V56.3z M363.4,147c0,0.5-0.4,0.9-0.9,0.9c0,0,0,0,0,0h-3.6
|
||||||
|
c-0.5,0-0.9-0.4-0.9-0.9c0,0,0,0,0,0v-19.7c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V147z M363.4,116.8
|
||||||
|
c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V97c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V116.8z M363.4,86.5
|
||||||
|
c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V66.8c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V86.5z M363.4,56.3
|
||||||
|
c0,0.5-0.4,0.9-0.9,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V36.6c0-0.5,0.4-0.9,0.9-0.9h3.6c0.5,0,0.9,0.4,0.9,0.9V56.3z M375.1,147
|
||||||
|
c0,0.5-0.4,0.9-0.9,0.9c0,0,0,0,0,0h-3.6c-0.5,0-0.9-0.4-0.9-0.9c0,0,0,0,0,0v-19.7c0-0.5,0.4-0.9,0.9-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,1,0.9V147z M375.1,116.8c0,0.5-0.4,0.9-1,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V97c0-0.5,0.4-0.9,0.9-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,1,0.9V116.8z M375.1,86.5c0,0.5-0.4,0.9-1,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V66.8c0-0.5,0.4-0.9,0.9-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,1,0.9V86.5z M375.1,56.3c0,0.5-0.4,0.9-1,0.9h-3.6c-0.5,0-0.9-0.4-0.9-0.9V36.6c0-0.5,0.4-0.9,0.9-0.9h3.6
|
||||||
|
c0.5,0,0.9,0.4,1,0.9V56.3z"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="201.46" y1="208.3924" x2="201.46" y2="59.9976" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<path class="st3" d="M231.1,55.6h-59.3c-1.5-0.1-2.7,1.1-2.8,2.6v143.2c0.1,1.5,1.3,2.6,2.8,2.6h59.3c1.5,0.1,2.8-1.1,2.8-2.6
|
||||||
|
V58.2C233.9,56.7,232.6,55.5,231.1,55.6z M182.5,159.4c0,0.6-0.6,1.1-1.2,1.1h-5.4c-0.6,0-1.2-0.5-1.2-1.1v-5.2
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V159.4z M182.5,146.5c0,0.6-0.6,1.1-1.2,1.1
|
||||||
|
c0,0,0,0,0,0h-5.4c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1V146.5z
|
||||||
|
M182.5,133.6c0,0.6-0.6,1.1-1.2,1.1h-5.4c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V133.6z M182.5,120.7c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0h-5.4c-0.6,0-1.2-0.5-1.2-1.1
|
||||||
|
c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1V120.7z M182.5,107.8c0,0.6-0.6,1.1-1.2,1.1h-5.4
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V107.8z M182.5,94.9
|
||||||
|
c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0h-5.4c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1V94.9z M182.5,82.1c0,0.6-0.6,1.1-1.2,1.1h-5.4c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1
|
||||||
|
c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V82.1z M182.5,69.2c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0h-5.4
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0V64c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1V69.2z M192.6,159.4
|
||||||
|
c0,0.6-0.6,1.1-1.2,1.1H186c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1
|
||||||
|
c0,0,0,0,0,0L192.6,159.4z M192.6,146.5c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H186c-0.6,0-1.2-0.5-1.2-1.1v-5.2
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1L192.6,146.5z M192.6,133.6c0,0.6-0.6,1.1-1.2,1.1H186
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L192.6,133.6z
|
||||||
|
M192.6,120.7c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H186c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1L192.6,120.7z M192.6,107.8c0,0.6-0.6,1.1-1.2,1.1H186c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L192.6,107.8z M192.6,94.9c0,0.6-0.6,1.1-1.2,1.1
|
||||||
|
c0,0,0,0,0,0H186c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1L192.6,94.9z
|
||||||
|
M192.6,82.1c0,0.6-0.6,1.1-1.2,1.1H186c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L192.6,82.1z M192.6,69.2c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H186c-0.6,0-1.2-0.5-1.2-1.1V64
|
||||||
|
c0-0.6,0.5-1.2,1.2-1.2c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1L192.6,69.2z M202.6,159.4c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H196
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1L202.6,159.4z M202.6,146.5
|
||||||
|
c0,0.6-0.6,1.1-1.2,1.1H196c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1
|
||||||
|
c0,0,0,0,0,0L202.6,146.5z M202.6,133.6c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H196c-0.6,0-1.2-0.5-1.2-1.1v-5.2
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1L202.6,133.6z M202.6,120.7c0,0.6-0.6,1.1-1.2,1.1H196
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L202.6,120.7z
|
||||||
|
M202.6,107.8c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H196c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L202.6,107.8z M202.6,94.9c0,0.6-0.6,1.1-1.2,1.1H196c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0
|
||||||
|
v-5.2c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L202.6,94.9z M202.6,82.1c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0
|
||||||
|
H196c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h5.4c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L202.6,82.1z
|
||||||
|
M202.6,69.2c0,0.6-0.6,1.1-1.2,1.1H196c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0V64c0-0.6,0.6-1.1,1.2-1.1h5.4c0.6,0,1.2,0.4,1.2,1.1
|
||||||
|
c0,0,0,0,0,0V69.2z M227.8,159.4c0,0.6-0.6,1.1-1.2,1.1h-20.5c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0
|
||||||
|
h20.5c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L227.8,159.4z M227.8,146.5c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0h-20.5
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h20.5c0.6,0,1.2,0.5,1.2,1.1L227.8,146.5z M227.8,133.6
|
||||||
|
c0,0.6-0.6,1.1-1.2,1.1h-20.5c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h20.5c0.6,0,1.2,0.5,1.2,1.1
|
||||||
|
c0,0,0,0,0,0L227.8,133.6z M227.8,120.7c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0h-20.5c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1h20.5c0.6,0,1.2,0.5,1.2,1.1L227.8,120.7z M227.8,107.8c0,0.6-0.6,1.1-1.2,1.1h-20.5
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h20.5c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L227.8,107.8z
|
||||||
|
M227.8,94.9c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0h-20.5c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1h20.5
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1L227.8,94.9z M227.8,82.1c0,0.6-0.6,1.1-1.2,1.1h-20.5c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1
|
||||||
|
c0,0,0,0,0,0h20.5c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0L227.8,82.1z M227.8,69.2c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0h-20.5
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0V64c0-0.6,0.6-1.1,1.2-1.1h20.5c0.6,0,1.2,0.5,1.2,1.1L227.8,69.2z"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="122.975" y1="237.3228" x2="122.975" y2="59.9971" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<path class="st4" d="M161.1,26.7H84.8c-1.5-0.1-2.8,1.1-2.8,2.6c0,0,0,0,0,0v172.2c0.1,1.5,1.3,2.6,2.8,2.6h76.3
|
||||||
|
c1.5,0.1,2.8-1.1,2.8-2.6V29.3C163.9,27.8,162.6,26.6,161.1,26.7z M154.3,161c0,0.6-0.6,1.1-1.2,1.1H92.8c-0.6,0-1.2-0.5-1.2-1.1
|
||||||
|
c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h60.3c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V161z M154.3,146.3
|
||||||
|
c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H92.8c-0.6,0-1.2-0.5-1.2-1.1v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h60.3
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1V146.3z M154.3,131.6c0,0.6-0.6,1.1-1.2,1.1H92.8c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1h60.3c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V131.6z M154.3,117c0,0.6-0.6,1.1-1.2,1.1H92.8
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.2c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h60.3c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V117z
|
||||||
|
M154.3,102.3c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H92.8c-0.6,0-1.2-0.5-1.2-1.1V97c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h60.3
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1V102.3z M154.3,87.6c0,0.6-0.6,1.1-1.2,1.1H92.8c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.3
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1h60.3c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V87.6z M154.3,72.9c0,0.6-0.6,1.1-1.2,1.1H92.8
|
||||||
|
c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.3c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h60.3c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V72.9z
|
||||||
|
M154.3,58.3c0,0.6-0.6,1.1-1.2,1.1c0,0,0,0,0,0H92.8c-0.6,0-1.2-0.5-1.2-1.1V53c0-0.6,0.6-1.1,1.2-1.1c0,0,0,0,0,0h60.3
|
||||||
|
c0.6,0,1.2,0.5,1.2,1.1V58.3z M154.3,43.6c0,0.6-0.6,1.1-1.2,1.1H92.8c-0.6,0-1.2-0.5-1.2-1.1c0,0,0,0,0,0v-5.3
|
||||||
|
c0-0.6,0.6-1.1,1.2-1.1h60.3c0.6,0,1.2,0.5,1.2,1.1c0,0,0,0,0,0V43.6z"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="273.51" y1="264" x2="273.51" y2="54.46" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<path class="st5" d="M306.2,0h-65.4c-1.4,0-2.5,1.2-2.4,2.6v204.4c-0.1,1.4,1,2.5,2.4,2.6c0,0,0,0,0,0h65.4
|
||||||
|
c1.4-0.1,2.5-1.2,2.4-2.6V2.6C308.7,1.2,307.6,0.1,306.2,0z M300.4,119.6c0,0.6-0.4,1.1-1,1.1h-51.7c-0.6,0-1-0.5-1-1.1v-5.2
|
||||||
|
c0-0.6,0.4-1.1,1-1.1h51.7c0.6,0,1,0.5,1,1.1L300.4,119.6z M300.4,90.3c0,0.6-0.4,1.1-1,1.1h-51.7c-0.6,0-1-0.5-1-1.1V85
|
||||||
|
c0-0.6,0.4-1.1,1-1.1h51.7c0.6,0,1,0.5,1,1.1L300.4,90.3z M300.4,60.9c0,0.6-0.4,1.1-1,1.1h-51.7c-0.6,0-1-0.5-1-1.1v-5.2
|
||||||
|
c0-0.6,0.4-1.1,1-1.1h51.7c0.6,0,1,0.5,1,1.1L300.4,60.9z M300.4,31.5c0,0.6-0.4,1.1-1,1.1h-51.7c-0.6,0-1-0.5-1-1.1v-5.2
|
||||||
|
c0-0.6,0.4-1.1,1-1.1h51.7c0.6,0,1,0.5,1,1.1L300.4,31.5z M300.4,16.9c0,0.6-0.4,1.1-1,1.1h-51.7c-0.6,0-1-0.5-1-1.1v-5.2
|
||||||
|
c0-0.6,0.4-1.1,1-1.1h51.7c0.6,0,1,0.5,1,1.1L300.4,16.9z"/>
|
||||||
|
</g>
|
||||||
|
<g class="st6">
|
||||||
|
<path class="st7" d="M244.2,130.7c3.3,1.9,5.7,13.6,1,20.7c-5.3,6.8-7,9-6.1,14c-4.3-7.3-0.6-7.4-5.8-14.2
|
||||||
|
c-4.6-6.2-2.5-17.4,0.7-20.5C237.4,131.3,240.8,131.3,244.2,130.7L244.2,130.7z"/>
|
||||||
|
<path class="st8" d="M280.4,211.9c-0.1,0.6-0.1,1.2-0.1,1.7c0,0.7,0.1,1.3,0.2,2c-2.1-0.8-4.3-1.2-6.5-1.2
|
||||||
|
c-2.6,0-5.2,0.6-7.5,1.7c-0.8-4.2-4.8-7-9-6.2c-2.8,0.5-5,2.5-5.9,5.2c-3.4-2.1-7.7-2-11.1,0.1c-0.4-5.7-4.1-0.8-9.8-0.8
|
||||||
|
c-6,0-11.8-4.4-11.8,1.7c0,1.1,0.2,2.2,0.4,3.2c-1.1,0.1-2.1,0.5-3,1c-0.9-7-6.8-12.4-13.9-12.7c22.6-10.3,22.4-44.6,24.8-74.6
|
||||||
|
c0.1-1.7,1.2-4.1,1.8-4.4l0,0c1.5,1.1,3.2,1.8,5.1,2.1c-3.2,3.1-5.4,14.3-0.7,20.5c5.3,6.8,1.6,6.9,5.8,14.2
|
||||||
|
c-0.9-5,0.8-7.2,6.1-14c4.8-7.2,2.3-18.8-1-20.7c1.8-0.3,3.6-1,5.1-2.1l0,0c0.6,0.3,1.7,2.7,1.8,4.4
|
||||||
|
C253.6,164.6,250.4,198.5,280.4,211.9z"/>
|
||||||
|
<path class="st9" d="M303.3,203.2c-5.4,0-9.8,4.4-9.8,9.8c0,0.3,0,0.6,0,0.9c-1.5-1.7-3.7-2.6-6-2.5c-0.7,0-1.4,0.1-2.1,0.3
|
||||||
|
c0.7-1.3,1.1-2.8,1.1-4.3c-0.1-4.6-3.9-8.3-8.5-8.2c-4,0.1-7.4,3-8.1,6.9c-0.1,0.4-0.1,0.9-0.1,1.3c0,0.5,0,1,0.1,1.6
|
||||||
|
c-3.5-1.4-7.4-1.3-10.8,0.4c-0.7-3.2-3.9-5.3-7.2-4.6c-2,0.4-3.6,1.9-4.3,3.8c-1.3-0.8-2.7-1.2-4.2-1.2c-1.5,0-3.1,0.4-4.4,1.3
|
||||||
|
c-0.2-4.6-4.1-8.2-8.7-8s-8.2,4.1-8,8.7l0,0c0,0.8,0.1,1.7,0.3,2.5c-0.8,0.1-1.6,0.4-2.3,0.8c-0.7-5.4-5.2-9.6-10.7-9.8h-0.4
|
||||||
|
c-3.4,0-6.7,1.6-8.8,4.3c-3-6.2-10.4-8.9-16.7-5.9c-2.9,1.4-5.2,3.9-6.3,7c4.1,3,6.6,7.8,6.6,12.9c0,2.3-0.5,4.6-1.5,6.6
|
||||||
|
c2-2.2,4.8-3.4,7.8-3.4c0.9,0,1.8,0.1,2.7,0.3c-2.9-5-1.2-11.5,3.8-14.4c1.2-0.7,2.6-1.2,3.9-1.3c0.5-0.1,0.9-0.1,1.4-0.1
|
||||||
|
c5.8,0,10.6,4.7,10.6,10.6l0,0c0,0.6-0.1,1.3-0.2,1.9c4.4-1.7,9.3-1.6,13.6,0.4c0.9-4.1,4.9-6.7,9-5.8c2.6,0.6,4.7,2.4,5.5,4.9
|
||||||
|
c1.6-0.9,3.5-1.4,5.3-1.4c1.9,0,3.8,0.5,5.4,1.5l0.1,0.1c0.3-4.5,3.6-8.4,8-9.4c0.8-0.2,1.7-0.3,2.5-0.3
|
||||||
|
c5.8,0,10.6,4.7,10.6,10.6c0,1-0.2,2-0.4,3c1.1,0.1,2.1,0.5,3,1c1-7,7-12.1,14-12.1c1.5,0,3,0.2,4.4,0.7c2.6,0.8,5,2.5,6.7,4.6
|
||||||
|
c2.4-4.8,7-8.2,12.4-8.8C311.4,205.9,307.6,203.2,303.3,203.2z"/>
|
||||||
|
<path class="st10" d="M314.4,209.9c-0.6,0-1.2,0-1.8,0.1c-5.4,0.6-10.1,3.9-12.5,8.7c-1.7-2.2-4-3.8-6.7-4.6
|
||||||
|
c-1.4-0.5-2.9-0.7-4.4-0.7c-7,0-13,5.2-14,12.1c-0.9-0.5-1.9-0.9-3-1c0.3-1,0.4-2,0.4-3c0-5.8-4.7-10.5-10.5-10.5
|
||||||
|
c-0.8,0-1.7,0.1-2.5,0.3c-4.4,1.1-7.7,4.9-8,9.4l-0.1-0.1c-1.6-1-3.5-1.5-5.4-1.5c-1.9,0-3.7,0.5-5.3,1.4c-1.4-3.9-5.7-6-9.6-4.6
|
||||||
|
c-2.5,0.9-4.3,3-4.9,5.5c-4.3-2-9.2-2.1-13.6-0.4c0.1-0.6,0.2-1.3,0.2-1.9c0-5.8-4.7-10.6-10.6-10.6l0,0c-0.5,0-0.9,0-1.4,0.1
|
||||||
|
c-5.8,0.8-9.9,6.1-9.1,11.8c0.2,1.4,0.6,2.7,1.3,3.9c-0.9-0.2-1.8-0.3-2.7-0.3c-2.9,0-5.8,1.2-7.8,3.4c1-2.1,1.5-4.3,1.5-6.6
|
||||||
|
c0-5.1-2.4-9.9-6.6-12.9l0,0c-7.1-5.2-17-3.6-22.2,3.5c-5.2,7.1-3.6,17,3.5,22.2c6.8,5,16.4,3.7,21.7-2.8
|
||||||
|
c-2.1,5.5,0.7,11.6,6.1,13.6c5.5,2.1,11.6-0.7,13.6-6.1c0.5-1.2,0.7-2.5,0.7-3.7c0-1.9,0.4-0.1,0.4,2.7c0,9.7,7.8,17.6,17.5,17.6
|
||||||
|
c9.7,0,17.6-7.8,17.6-17.5c0-2.4-0.5-4.8-1.4-7l0.5-0.1c0.5,5.8,5.7,10.1,11.5,9.5c5-0.5,9-4.4,9.5-9.4c1.7,1,3.6,1.6,5.5,1.6
|
||||||
|
c0.6,0,1.2,0,1.7-0.1v0.1c0,4.2,3.4,7.6,7.6,7.5c2.6,0,5-1.4,6.4-3.6c4.7,6.3,13.5,7.5,19.8,2.9c1.5-1.1,2.8-2.5,3.7-4.2
|
||||||
|
c4.9,7.3,14.8,9.1,22.1,4.2s9.1-14.8,4.2-22.1C324.5,212.5,319.6,209.9,314.4,209.9L314.4,209.9z"/>
|
||||||
|
</g>
|
||||||
|
<path class="st11" d="M239.1,70c6.4,0,11.6,5.2,11.6,11.6c0,6.4-5.2,11.6-11.6,11.6c-6.4,0-11.6-5.2-11.6-11.6c0,0,0,0,0,0
|
||||||
|
C227.5,75.2,232.7,70,239.1,70z"/>
|
||||||
|
<path class="st8" d="M239.1,137.2c8.3,0,13.5-1.7,16.6-7.9c0,3.2-1.5,6.2-4.1,8.1c-1.9,1.3-4,2.2-6.2,2.6c-4.1,0.8-8.4,0.8-12.5,0
|
||||||
|
c-2.2-0.4-4.3-1.3-6.2-2.6c-2.6-1.9-4.2-4.9-4.2-8.1C225.6,135.5,230.7,137.2,239.1,137.2z"/>
|
||||||
|
<path class="st8" d="M288.4,151.7c0,0.5-0.3,0.8-0.8,0.8c-0.3,0-0.5-0.1-0.7-0.3c-7.6-10.3-25.5-25-30.4-24.7
|
||||||
|
c2.4-6.1,3.4-15.9,3.6-31.2C271.5,100.3,288.3,122.4,288.4,151.7z"/>
|
||||||
|
<path class="st8" d="M218.1,96.3c0.3,15.2,1.2,25,3.6,31.1l-0.2,0.1c-4.9-0.3-22.8,14.5-30.4,24.7c-0.3,0.4-0.8,0.5-1.1,0.2
|
||||||
|
c-0.2-0.2-0.4-0.4-0.3-0.7C189.7,122.3,206.6,100.2,218.1,96.3L218.1,96.3z"/>
|
||||||
|
<path class="st8" d="M250.7,81.6c0-6.4-5.2-11.6-11.6-11.6c-6.4,0-11.6,5.2-11.6,11.6s5.2,11.6,11.6,11.6l0,0
|
||||||
|
C245.5,93.2,250.7,88,250.7,81.6z M252.9,81.6c0,7.6-6.2,13.8-13.8,13.8c-7.6,0-13.8-6.2-13.8-13.8c0-7.6,6.2-13.8,13.8-13.8
|
||||||
|
c0,0,0,0,0,0C246.7,67.8,252.9,74,252.9,81.6z"/>
|
||||||
|
<path class="st8" d="M239.1,48.7c5.7,0,10.7-2,13.8-4.9c0.5,1.3,1,2.6,1.4,4c-3.3,3.3-8.9,5.4-15.3,5.4s-11.9-2.1-15.3-5.4
|
||||||
|
c0.5-1.3,1-2.7,1.4-4C228.4,46.8,233.4,48.7,239.1,48.7z"/>
|
||||||
|
<path class="st9" d="M252.9,43.8c-3.1,3-8.1,4.9-13.8,4.9s-10.7-2-13.8-4.9c2-5.1,4.5-10,7.6-14.5c0.5-0.7,0.9-1.3,1.4-1.9
|
||||||
|
c2-2.7,5.8-3.2,8.5-1.2c0.4,0.3,0.8,0.7,1.2,1.2c0.5,0.6,0.9,1.2,1.4,1.9C248.4,33.8,250.9,38.7,252.9,43.8z"/>
|
||||||
|
<path class="st10" d="M260.1,96.4c-0.3,15.3-1.2,25-3.6,31.2c-0.2,0.6-0.5,1.2-0.8,1.7c-3.1,6.2-8.3,7.9-16.6,7.9
|
||||||
|
s-13.5-1.7-16.6-7.9c-0.3-0.6-0.5-1.1-0.8-1.8c-2.4-6.2-3.4-15.9-3.6-31.1c-0.1-3.4-0.1-7.1-0.1-11.1c-0.1-12.7,1.8-25.4,5.8-37.5
|
||||||
|
c3.3,3.3,8.9,5.4,15.3,5.4s11.9-2.1,15.3-5.4c4,12.1,6,24.8,5.8,37.5C260.2,89.2,260.1,92.9,260.1,96.4z M252.9,81.6
|
||||||
|
c0-7.6-6.2-13.8-13.8-13.8c-7.6,0-13.8,6.2-13.8,13.8c0,7.6,6.2,13.8,13.8,13.8c0,0,0,0,0,0C246.7,95.4,252.9,89.2,252.9,81.6
|
||||||
|
L252.9,81.6z"/>
|
||||||
|
<path class="st12" d="M139.2,246.1l18.4,0.4v0.7l-19.4-0.4v-0.7V246C138.4,246.1,138.6,246.1,139.2,246.1z"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="112.2357" y1="190.775" x2="112.2357" y2="101.005" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<line class="st13" x1="112.2" y1="73.2" x2="112.2" y2="163"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="348.955" y1="195.605" x2="348.955" y2="105.835" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<line class="st14" x1="349" y1="68.4" x2="349" y2="158.2"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="40.9" y1="120.12" x2="40.9" y2="64.49" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<line class="st15" x1="40.9" y1="143.9" x2="40.9" y2="199.5"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="64.97" y1="168.64" x2="64.97" y2="140.83" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<line class="st16" x1="65" y1="95.4" x2="65" y2="123.2"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="397.23" y1="159.8" x2="397.23" y2="131.98" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<line class="st17" x1="397.2" y1="104.2" x2="397.2" y2="132"/>
|
||||||
|
|
||||||
|
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="424.75" y1="130.51" x2="424.75" y2="74.87" gradientTransform="matrix(1 0 0 -1 0 264)">
|
||||||
|
<stop offset="0" style="stop-color:#81CFFF"/>
|
||||||
|
<stop offset="1" style="stop-color:#5ECFFF;stop-opacity:0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<line class="st18" x1="424.8" y1="133.5" x2="424.8" y2="189.1"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 20 KiB |
BIN
img/yuan1.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
img/yuan2.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
img/yuan3.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
143
index.html
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="favicon.ico"><title>得木自动化</title><script>document.write("<script src='config.js?" + new Date().getTime() + "'><\/script>");
|
||||||
|
document.write("<script src='customer.js?" + new Date().getTime() + "'><\/script>");</script><script defer="defer" src="js/elicons.82884853.js"></script><script defer="defer" src="js/modules.822592db.js"></script><script defer="defer" src="js/app.753d6260.js"></script><link href="css/modules.f0abbc17.css" rel="stylesheet"><link href="css/app.5a042227.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but 得木自动化 doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><script>const dark = window.localStorage.getItem('APP_DARK');
|
||||||
|
if (dark) {
|
||||||
|
document.documentElement.classList.add("dark")
|
||||||
|
}</script><div id="app" class="aminui"><div class="app-loading"><div class="app-loading-box"><div class="app-loading__loader"></div><div class="app-loading__logo"><img src="img/logo.png"/></div></div><div class="app-loading__title">得木自动化</div></div><style>.app-loading {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
.app-loading-box{
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-loading__logo {
|
||||||
|
border-radius: 50%;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
z-index: 10;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-loading__logo img {
|
||||||
|
width: 40px;
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-loading__loader {
|
||||||
|
box-sizing: border-box;
|
||||||
|
width: 65px;
|
||||||
|
height: 65px;
|
||||||
|
border: 5px solid transparent;
|
||||||
|
border-top-color: #009688;
|
||||||
|
border-radius: 50%;
|
||||||
|
animation: .5s loader linear infinite;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-loading__loader:before {
|
||||||
|
box-sizing: border-box;
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
width: inherit;
|
||||||
|
height: inherit;
|
||||||
|
position: absolute;
|
||||||
|
top: -5px;
|
||||||
|
left: -5px;
|
||||||
|
border: 5px solid #ccc;
|
||||||
|
border-radius: 50%;
|
||||||
|
opacity: .5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-loading__title {
|
||||||
|
font-size: 24px;
|
||||||
|
color: #333;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark .app-loading {
|
||||||
|
background: #222225;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark .app-loading__loader {
|
||||||
|
border-top-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dark .app-loading__title {
|
||||||
|
color: #d0d0d0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes loader {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}</style></div></body><div id="versionCheck" style="display: none;position: absolute;z-index: 99;top:0;left:0;right:0;bottom:0;padding:40px;background:rgba(255,255,255,0.9);color: #333;"><h2 style="line-height: 1;margin: 0;font-size: 24px;">当前使用的浏览器内核版本过低 :(</h2><p style="line-height: 1;margin: 0;font-size: 14px;margin-top: 20px;opacity: 0.8;">当前版本:<span id="versionCheck-type">--</span> <span id="versionCheck-version">--</span></p><p style="line-height: 1;margin: 0;font-size: 14px;margin-top: 10px;opacity: 0.8;">最低版本要求:Chrome 71+、Firefox 65+、Safari 12+、Edge 97+。</p><p style="line-height: 1;margin: 0;font-size: 14px;margin-top: 10px;opacity: 0.8;">请升级浏览器版本,或更换现代浏览器,如果你使用的是双核浏览器,请切换到极速/高速模式。</p></div><script>function getBrowerInfo() {
|
||||||
|
var userAgent = window.navigator.userAgent;
|
||||||
|
var browerInfo = {
|
||||||
|
type: 'unknown',
|
||||||
|
version: 'unknown',
|
||||||
|
userAgent: userAgent
|
||||||
|
};
|
||||||
|
if (document.documentMode) {
|
||||||
|
browerInfo.type = "IE"
|
||||||
|
browerInfo.version = document.documentMode + ''
|
||||||
|
} else if (indexOf(userAgent, "Firefox")) {
|
||||||
|
browerInfo.type = "Firefox"
|
||||||
|
browerInfo.version = userAgent.match(/Firefox\/([\d.]+)/)[1]
|
||||||
|
} else if (indexOf(userAgent, "Opera")) {
|
||||||
|
browerInfo.type = "Opera"
|
||||||
|
browerInfo.version = userAgent.match(/Opera\/([\d.]+)/)[1]
|
||||||
|
} else if (indexOf(userAgent, "Edg")) {
|
||||||
|
browerInfo.type = "Edg"
|
||||||
|
browerInfo.version = userAgent.match(/Edg\/([\d.]+)/)[1]
|
||||||
|
} else if (indexOf(userAgent, "Chrome")) {
|
||||||
|
browerInfo.type = "Chrome"
|
||||||
|
browerInfo.version = userAgent.match(/Chrome\/([\d.]+)/)[1]
|
||||||
|
} else if (indexOf(userAgent, "Safari")) {
|
||||||
|
browerInfo.type = "Safari"
|
||||||
|
browerInfo.version = userAgent.match(/Safari\/([\d.]+)/)[1]
|
||||||
|
}
|
||||||
|
return browerInfo
|
||||||
|
}
|
||||||
|
|
||||||
|
function indexOf(userAgent, brower) {
|
||||||
|
return userAgent.indexOf(brower) > -1
|
||||||
|
}
|
||||||
|
|
||||||
|
function isSatisfyBrower() {
|
||||||
|
const minVer = {
|
||||||
|
"Chrome": 71,
|
||||||
|
"Firefox": 65,
|
||||||
|
"Safari": 12,
|
||||||
|
"Edg": 97,
|
||||||
|
"IE": 999
|
||||||
|
};
|
||||||
|
const browerInfo = getBrowerInfo();
|
||||||
|
const materVer = browerInfo.version.split('.')[0];
|
||||||
|
return materVer >= minVer[browerInfo.type]
|
||||||
|
}
|
||||||
|
|
||||||
|
// if (!isSatisfyBrower()) {
|
||||||
|
// document.getElementById('versionCheck').style.display = 'block';
|
||||||
|
// document.getElementById('versionCheck-type').innerHTML = getBrowerInfo().type;
|
||||||
|
// document.getElementById('versionCheck-version').innerHTML = getBrowerInfo().version;
|
||||||
|
// }</script></html>
|
||||||
1
js/383.34646eb1.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[383],{73278:function(__unused_webpack_module,__webpack_exports__){__webpack_exports__["Z"]={name:"uploadRender",props:{modelValue:[String,Number,Boolean,Date,Object,Array],item:{type:Object,default:()=>{}}},data(){return{value:this.modelValue,apiObj:this.getApiObj()}},watch:{value(e){this.$emit("update:modelValue",e)}},mounted(){},methods:{getApiObj(){return eval("this."+this.item.options.apiObj)}}}},20383:function(e,t,l){l.r(t),l.d(t,{default:function(){return n}});var a=l(66252);function u(e,t,l,u,p,i){const o=(0,a.up)("el-table-column"),n=(0,a.up)("sc-table-select");return(0,a.wg)(),(0,a.j4)(n,{modelValue:p.value,"onUpdate:modelValue":t[0]||(t[0]=e=>p.value=e),apiObj:p.apiObj,"table-width":600,multiple:l.item.options.multiple,props:l.item.options.props,style:{width:"100%"}},{default:(0,a.w5)((()=>[((0,a.wg)(!0),(0,a.iD)(a.HY,null,(0,a.Ko)(l.item.options.column,((e,t)=>((0,a.wg)(),(0,a.j4)(o,{key:t,prop:e.prop,label:e.label,width:e.width},null,8,["prop","label","width"])))),128))])),_:1},8,["modelValue","apiObj","multiple","props"])}var p=l(73278),i=l(83744);const o=(0,i.Z)(p.Z,[["render",u]]);var n=o}}]);
|
||||||
1
js/404.a6d8369f.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[6596],{12769:function(o,r,n){n.r(r),n.d(r,{default:function(){return m}});var t=n(66252);const e=o=>((0,t.dD)("data-v-10b4695c"),o=o(),(0,t.Cn)(),o),i={class:"router-err"},c=e((()=>(0,t._)("div",{class:"router-err__icon"},[(0,t._)("img",{src:"img/404.png"})],-1))),u={class:"router-err__content"},l=e((()=>(0,t._)("h2",null,"无权限或找不到页面",-1))),a=e((()=>(0,t._)("p",null,"当前页面无权限访问或者打开了一个不存在的链接,请检查当前账户权限和链接的可访问性。",-1))),s=(0,t.Uk)("返回首页"),d=(0,t.Uk)("重新登录"),p=(0,t.Uk)("返回上一页");function k(o,r,n,e,k,g){const _=(0,t.up)("el-button");return(0,t.wg)(),(0,t.iD)("div",i,[c,(0,t._)("div",u,[l,a,(0,t.Wm)(_,{type:"primary",plain:"",round:"",onClick:g.gohome},{default:(0,t.w5)((()=>[s])),_:1},8,["onClick"]),(0,t.Wm)(_,{type:"primary",plain:"",round:"",onClick:g.gologin},{default:(0,t.w5)((()=>[d])),_:1},8,["onClick"]),(0,t.Wm)(_,{type:"primary",round:"",onClick:g.goback},{default:(0,t.w5)((()=>[p])),_:1},8,["onClick"])])])}n(57658);var g={methods:{gohome(){location.href="#/"},goback(){this.$router.go(-1)},gologin(){this.$router.push("/login")}}},_=n(83744);const h=(0,_.Z)(g,[["render",k],["__scopeId","data-v-10b4695c"]]);var m=h}}]);
|
||||||
1
js/5003.fb974fdc.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[5003],{5003:function(e,t,n){n.r(t),n.d(t,{default:function(){return m}});var i=n(66252);const l={class:"sceditor"};function a(e,t,n,a,o,r){const s=(0,i.up)("Editor");return(0,i.wg)(),(0,i.iD)("div",l,[(0,i.Wm)(s,{modelValue:o.contentValue,"onUpdate:modelValue":t[0]||(t[0]=e=>o.contentValue=e),init:o.init,disabled:n.disabled,placeholder:n.placeholder,onOnClick:r.onClick},null,8,["modelValue","init","disabled","placeholder","onOnClick"])])}var o=n(7877),r=n(50396),s=n(47575),c=n.n(s),u=(n(38860),n(6890),n(7490),n(88190),n(72170),n(42540),n(72682),n(44446),n(21449),n(38619),n(78843),n(1236),n(14400),n(98672),{components:{Editor:r.Z},props:{modelValue:{type:String,default:""},placeholder:{type:String,default:""},height:{type:Number,default:300},disabled:{type:Boolean,default:!1},plugins:{type:[String,Array],default:"code image media link preview table quickbars template pagebreak lists advlist"},toolbar:{type:[String,Array],default:"undo redo | forecolor backcolor bold italic underline strikethrough link | blocks fontfamily fontsize | \t\t\t\t\talignleft aligncenter alignright alignjustify | outdent indent | numlist bullist | pagebreak | \t\t\t\t\timage media table template preview | code selectall"},templates:{type:Array,default:()=>[]}},data(){return{init:{language_url:"tinymce/langs/zh_CN.js",language:"zh_CN",skin_url:"tinymce/skins/ui/oxide",content_css:"tinymce/skins/content/default/content.css",menubar:!1,statusbar:!0,plugins:this.plugins,toolbar:this.toolbar,toolbar_mode:"sliding",font_size_formats:"12px 14px 16px 18px 22px 24px 36px 72px",height:this.height,placeholder:this.placeholder,branding:!1,resize:!0,elementpath:!0,content_style:"",templates:this.templates,quickbars_selection_toolbar:"forecolor backcolor bold italic underline strikethrough link",quickbars_image_toolbar:"alignleft aligncenter alignright",quickbars_insert_toolbar:!1,image_caption:!0,image_advtab:!0,images_upload_handler:function(e){return new Promise(((t,n)=>{const i=new FormData;i.append("file",e.blob(),e.filename()),o.Z.common.upload.post(i).then((e=>{t(e.data.src)})).catch((()=>{n("Image upload failed")}))}))},setup:function(e){e.on("init",(function(){this.getBody().style.fontSize="14px"})),e.on("OpenWindow",(function(e){var t=document.querySelector(".el-drawer.open"),n=e.target.editorContainer;if(t&&t.contains(n)){var i=document.activeElement;setTimeout((()=>{document.activeElement.blur(),i.focus()}),0)}}))}},contentValue:this.modelValue}},watch:{modelValue(e){this.contentValue=e},contentValue(e){this.$emit("update:modelValue",e)}},mounted(){c().init({})},methods:{onClick(e){this.$emit("onClick",e,c())}}}),d=n(83744);const p=(0,d.Z)(u,[["render",a]]);var m=p}}]);
|
||||||
1
js/6126.a2f3b490.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[6126],{29978:function(u,n,r){r.r(n),r.d(n,{default:function(){return a}});var e=r(66252);function t(u,n){const r=(0,e.up)("router-view");return(0,e.wg)(),(0,e.j4)(r)}var c=r(83744);const s={},i=(0,c.Z)(s,[["render",t]]);var a=i}}]);
|
||||||
1
js/9163.0e226840.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[9163],{39163:function(e,t,i){i.r(t),i.d(t,{default:function(){return p}});var n=i(66252),a=i(3577),r=i(49963);function l(e,t,i,l,s,u){return(0,n.wg)(),(0,n.iD)("div",{class:"sc-code-editor",style:(0,a.normalizeStyle)({height:u._height})},[(0,n.wy)((0,n._)("textarea",{ref:"textarea","onUpdate:modelValue":t[0]||(t[0]=e=>s.contentValue=e)},null,512),[[r.nr,s.contentValue]])],4)}var s=i(2262),u=i(4631),o=i.n(u),h=(i(20017),i(96876),i(54086),{props:{modelValue:{type:String,default:""},mode:{type:String,default:"javascript"},height:{type:[String,Number],default:300},options:{type:Object,default:()=>{}},theme:{type:String,default:"idea"},readOnly:{type:Boolean,default:!1}},data(){return{contentValue:this.modelValue,coder:null,opt:{theme:this.theme,styleActiveLine:!0,lineNumbers:!0,lineWrapping:!1,tabSize:4,indentUnit:4,indentWithTabs:!0,mode:this.mode,readOnly:this.readOnly,...this.options}}},computed:{_height(){return Number(this.height)?Number(this.height)+"px":this.height}},watch:{modelValue(e){this.contentValue=e,e!==this.coder.getValue()&&this.coder.setValue(e)}},mounted(){this.init()},methods:{init(){this.coder=(0,s.Xl)(o().fromTextArea(this.$refs.textarea,this.opt)),this.coder.on("change",(e=>{this.contentValue=e.getValue(),this.$emit("update:modelValue",this.contentValue)}))},formatStrInJson(e){return JSON.stringify(JSON.parse(e),null,4)}}}),d=i(83744);const c=(0,d.Z)(h,[["render",l],["__scopeId","data-v-dda70bdc"]]);var p=c}}]);
|
||||||
32
js/app.753d6260.js
Normal file
1
js/bindDingTalk.030ef2b0.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[4529],{82202:function(e,t,n){n.r(t),n.d(t,{default:function(){return s}});var a=n(66252);function r(e,t,n,r,i,o){return(0,a.wg)(),(0,a.iD)("div")}var i={name:"bindDingTalk",data(){return{}},created(){let e=this.$TOOL.getParameterByName("code",window.location.href),t=this.$TOOL.getParameterByName("state",window.location.href);this.$TOOL.addStorageEvent(1,"DINGTALK_LOGIN_MESSAGE",JSON.stringify({code:e,state:t})),window.close()},mounted(){},methods:{}},o=n(83744);const d=(0,o.Z)(i,[["render",r]]);var s=d}}]);
|
||||||
1
js/bindWechat.aa798832.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[5708],{3273:function(e,t,a){a.r(t),a.d(t,{default:function(){return d}});var n=a(66252);function r(e,t,a,r,i,o){return(0,n.wg)(),(0,n.iD)("div")}var i={name:"bindWechat",data(){return{}},created(){let e=this.$TOOL.getParameterByName("code",window.location.href),t=this.$TOOL.getParameterByName("state",window.location.href);this.$TOOL.addStorageEvent(1,"WECHAT_LOGIN_MESSAGE",JSON.stringify({code:e,state:t})),window.close()},mounted(){},methods:{}},o=a(83744);const c=(0,o.Z)(i,[["render",r]]);var d=c}}]);
|
||||||
1
js/calendar.feb563c5.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[5548],{5862:function(n,a,e){e.r(a),e.d(a,{default:function(){return d}});var u=e(66252);function t(n,a,e,t,l,i){const r=(0,u.up)("FullCalendar"),s=(0,u.up)("el-main");return(0,u.wg)(),(0,u.j4)(s,null,{default:(0,u.w5)((()=>[(0,u.Wm)(r,{options:l.calendarOptions},null,8,["options"])])),_:1})}var l=e(4813),i=e(91132),r=e(39897),s={name:"index",components:{FullCalendar:l.Z},data(){return{calendarOptions:{plugins:[i.Z,r.ZP],initialView:"dayGridMonth"}}}},o=e(83744);const c=(0,o.Z)(s,[["render",t]]);var d=c}}]);
|
||||||
1
js/codemirror.5b205467.js
Normal file
1
js/cus-components-guestMsgWindow.239a0cbd.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[82],{97123:function(n,u,e){e.r(u),e.d(u,{default:function(){return i}});var r=e(66252);function s(n,u,e,s,t,c){const a=(0,r.up)("el-main");return(0,r.wg)(),(0,r.j4)(a)}var t={name:"guestMsgWindow"},c=e(83744);const a=(0,c.Z)(t,[["render",s]]);var i=a}}]);
|
||||||
1
js/cus-cusMsg.00f3bf62.js
Normal file
1
js/cus-cusSeats.9b009215.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[2108],{20378:function(e,l,a){a.r(l),a.d(l,{default:function(){return h}});var t=a(66252);const u={class:"left-panel"},n={class:"right-panel"},i={class:"right-panel-search"},r=(0,t.Uk)("查看"),s=(0,t.Uk)("编辑"),p=(0,t.Uk)("删除");function o(e,l,a,o,d,m){const c=(0,t.up)("el-tab-pane"),b=(0,t.up)("el-tabs"),h=(0,t.up)("el-header"),f=(0,t.up)("sc-select-filter"),w=(0,t.up)("el-button"),W=(0,t.up)("el-input"),g=(0,t.up)("el-table-column"),y=(0,t.up)("el-button-group"),v=(0,t.up)("scTable"),k=(0,t.up)("el-main"),_=(0,t.up)("el-container");return(0,t.wg)(),(0,t.j4)(_,null,{default:(0,t.w5)((()=>[(0,t.Wm)(h,{class:"header-tabs"},{default:(0,t.w5)((()=>[(0,t.Wm)(b,{type:"card",modelValue:d.groupId,"onUpdate:modelValue":l[0]||(l[0]=e=>d.groupId=e),onTabChange:m.tabChange},{default:(0,t.w5)((()=>[(0,t.Wm)(c,{label:"所有",name:"0"}),(0,t.Wm)(c,{label:"未完成",name:"1"}),(0,t.Wm)(c,{label:"已退回",name:"2"}),(0,t.Wm)(c,{label:"已关闭",name:"3"}),(0,t.Wm)(c,{label:"已完成",name:"4"})])),_:1},8,["modelValue","onTabChange"])])),_:1}),(0,t.Wm)(h,{style:{height:"auto"}},{default:(0,t.w5)((()=>[(0,t.Wm)(f,{data:d.filterData,"label-width":80,onOnChange:m.filterChange},null,8,["data","onOnChange"])])),_:1}),(0,t.Wm)(h,null,{default:(0,t.w5)((()=>[(0,t._)("div",u,[(0,t.Wm)(w,{type:"primary",icon:"el-icon-plus"}),(0,t.Wm)(w,{type:"danger",plain:"",icon:"el-icon-delete"})]),(0,t._)("div",n,[(0,t._)("div",i,[(0,t.Wm)(W,{modelValue:d.search.keyword,"onUpdate:modelValue":l[1]||(l[1]=e=>d.search.keyword=e),placeholder:"关键词",clearable:""},null,8,["modelValue"]),(0,t.Wm)(w,{type:"primary",icon:"el-icon-search",onClick:m.upsearch},null,8,["onClick"])])])])),_:1}),(0,t.Wm)(k,{class:"nopadding"},{default:(0,t.w5)((()=>[(0,t.Wm)(v,{ref:"table",apiObj:d.list.apiObj,"row-key":"id",stripe:""},{default:(0,t.w5)((()=>[(0,t.Wm)(g,{type:"selection",width:"50"}),(0,t.Wm)(g,{label:"姓名",prop:"name",width:"150"}),(0,t.Wm)(g,{label:"性别",prop:"sex",width:"150"}),(0,t.Wm)(g,{label:"邮箱",prop:"email",width:"250"}),(0,t.Wm)(g,{label:"评分",prop:"num",width:"150"}),(0,t.Wm)(g,{label:"注册时间",prop:"datetime",width:"150",sortable:""}),(0,t.Wm)(g,{label:"操作",fixed:"right",align:"right",width:"160"},{default:(0,t.w5)((()=>[(0,t.Wm)(y,null,{default:(0,t.w5)((()=>[(0,t.Wm)(w,{text:"",type:"primary",size:"small"},{default:(0,t.w5)((()=>[r])),_:1}),(0,t.Wm)(w,{text:"",type:"primary",size:"small"},{default:(0,t.w5)((()=>[s])),_:1}),(0,t.Wm)(w,{text:"",type:"primary",size:"small"},{default:(0,t.w5)((()=>[p])),_:1})])),_:1})])),_:1})])),_:1},8,["apiObj"])])),_:1})])),_:1})}var d=a(75526),m={name:"cusSeats",components:{scSelectFilter:d.Z},data(){return{groupId:"0",filterData:[{title:"所属行业",key:"type",multiple:!0,options:[{label:"全部",value:""},{label:"汽车",value:"1"},{label:"智能信息",value:"4"},{label:"新材料",value:"6"},{label:"高端装备",value:"7"},{label:"其他行业",value:"99"}]},{title:"所属区域",key:"area",options:[{label:"全部",value:""},{label:"华东",value:"HD"},{label:"华北",value:"HB"},{label:"华南",value:"HN"},{label:"华中",value:"HZ"},{label:"华西南",value:"HXN"},{label:"东北",value:"DB"}]}],list:{apiObj:this.$API.msgservice.cusMag.cusSeats},search:{keyword:""}}},methods:{upsearch(){this.$refs.table.upData(this.search)},tabChange(e){const l={groupId:e};this.$refs.table.reload(l)},filterChange(e){this.$refs.table.upData(e)}}},c=a(83744);const b=(0,c.Z)(m,[["render",o]]);var h=b}}]);
|
||||||
1
js/cus-cusSetting.d5b99102.js
Normal file
1
js/echarts.1208986b.js
Normal file
5
js/elicons.82884853.js
Normal file
1
js/equipment-capacity.fb0d90bf.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
"use strict";(self["webpackChunkscui"]=self["webpackChunkscui"]||[]).push([[1924],{86474:function(n,e,r){r.r(e),r.d(e,{default:function(){return i}});var t=r(66252);function u(n,e,r,u,c,a){const s=(0,t.up)("el-container");return(0,t.wg)(),(0,t.j4)(s,{class:"mainBox"})}var c={name:"index",components:{},data(){return{}}},a=r(83744);const s=(0,a.Z)(c,[["render",u]]);var i=s}}]);
|
||||||