开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 906

越挫越萌/MetaLowCode 企业级全栈低代码平台

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (13)
master
feature/20240108_审批流程签名
feature/20231222_复制实体功能开发
feature/231218_审批添加左侧实体选择
feature/20231214_触发器发送通知新增
feature/20231214_数据库备份开发
feature/20231127_单点登录
feature/20231205_筛选条件重置
feature/231204_迭代任务开发
feature/20231130修复数据延迟问题
feature/20231127_移动端开发
feature/231123_实体列表修改
feature/2023-11-16开发
master
分支 (13)
master
feature/20240108_审批流程签名
feature/20231222_复制实体功能开发
feature/231218_审批添加左侧实体选择
feature/20231214_触发器发送通知新增
feature/20231214_数据库备份开发
feature/20231127_单点登录
feature/20231205_筛选条件重置
feature/231204_迭代任务开发
feature/20231130修复数据延迟问题
feature/20231127_移动端开发
feature/231123_实体列表修改
feature/2023-11-16开发
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (13)
master
feature/20240108_审批流程签名
feature/20231222_复制实体功能开发
feature/231218_审批添加左侧实体选择
feature/20231214_触发器发送通知新增
feature/20231214_数据库备份开发
feature/20231127_单点登录
feature/20231205_筛选条件重置
feature/231204_迭代任务开发
feature/20231130修复数据延迟问题
feature/20231127_移动端开发
feature/231123_实体列表修改
feature/2023-11-16开发
MetaLowCode
/
src
/
ml.js
MetaLowCode
/
src
/
ml.js
ml.js 3.89 KB
一键复制 编辑 原始数据 按行查看 历史
formdesigner 提交于 2023年11月24日 11:59 +08:00 . 更新README。
import config from "./config"
import api from './api'
import tool from './utils/tool'
import http from "./utils/request"
import { permission, rolePermission } from './utils/permission'
import COMMON_CONFIG from './config/common';
import scTable from './components/scTable/index.vue'
import scTableColumn from './components/scTable/column.js'
import scQrCode from './components/scQrCode/index.vue'
import SimpleTable from './components/simpleTable/index.vue'
import auth from './directives/auth'
import auths from './directives/auths'
import authsAll from './directives/authsAll'
import role from './directives/role'
import time from './directives/time'
import copy from './directives/copy'
import errorHandler from './utils/errorHandler'
import SvgIcon from "./components/svgIcon/index.vue";
import * as elIcons from '@element-plus/icons-vue'
import * as scIcons from './assets/icons'
import mlSelectUser from './components/mlSelectUser/index.vue';
import mlSetConditions from './components/mlSetConditions/index.vue';
import mlDialog from './components/mlDialog/index.vue';
import mlPagination from './components/mlPagination/index.vue';
import mlSearchInput from './components/mlSearchInput/index.vue';
import mlSingleList from './components/mlSingleList/index.vue';
import mlListDetails from './components/mlListDetails/index.vue';
import mlActiveDialog from "./components/mlActiveDialog/index.vue";
import mlEntityMenuAndList from "./components/mlEntityMenuAndList/index.vue";
import mlLogo from './components/mlLogo/index.vue';
import mlAvatar from './components/mlAvatar/index.vue';
import mlUpload from "./components/mlUpload/index.vue";
import mlWaterMark from './components/mlWaterMark/index.vue';
import { ElMessage } from 'element-plus'
export default {
install(app) {
//挂载全局对象
app.config.globalProperties.$CloneDeep = data => JSON.parse(JSON.stringify(data));
app.config.globalProperties.$CONFIG = config;
app.config.globalProperties.$TOOL = tool;
app.config.globalProperties.$HTTP = http;
app.config.globalProperties.$API = api;
app.config.globalProperties.$AUTH = permission;
app.config.globalProperties.$ROLE = rolePermission;
app.provide('$CONFIG',config)
app.provide('$TOOL', tool);
app.provide('$CloneDeep', (data) => JSON.parse(JSON.stringify(data)));
app.provide('$API', api);
app.provide('$ElMessage', ElMessage);
app.provide('COMMON_CONFIG',COMMON_CONFIG);
// 注册全局组件
app.component('mlSelectUser', mlSelectUser);
app.component('mlSetConditions', mlSetConditions);
app.component('mlDialog', mlDialog);
app.component('mlPagination', mlPagination);
app.component('mlSearchInput', mlSearchInput);
app.component('mlSingleList', mlSingleList);
app.component('mlListDetails', mlListDetails);
app.component('mlActiveDialog', mlActiveDialog);
app.component('mlEntityMenuAndList', mlEntityMenuAndList);
app.component('mlUpload', mlUpload);
app.component('mlWaterMark', mlWaterMark);
app.component('mlLogo', mlLogo);
app.component('mlAvatar', mlAvatar);
app.component('scTable', scTable);
app.component('scTableColumn', scTableColumn);
app.component('scQrCode', scQrCode);
app.component('SimpleTable', SimpleTable)
app.component('SvgIcon', SvgIcon)
//注册全局指令
app.directive('auth', auth)
app.directive('auths', auths)
app.directive('auths-all', authsAll)
app.directive('role', role)
app.directive('time', time)
app.directive('copy', copy)
//统一注册el-icon图标
for(let icon in elIcons){
app.component(`ElIcon${icon}`, elIcons[icon])
}
//统一注册sc-icon图标
for(let icon in scIcons){
app.component(`ScIcon${icon}`, scIcons[icon])
}
//关闭async-validator全局控制台警告
window.ASYNC_VALIDATOR_NO_WARNING = 1
//全局代码错误捕捉
app.config.errorHandler = errorHandler
}
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

MetaLowCode——美乐低代码,企业级全栈低代码开发平台! 潜心打造强大核心技术底座: 内置元数据引擎、业务流程引擎、业务触发器、可视化表单、仪表盘设计、智能报表引擎、数据挖掘和插件扩展框架。
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/Pattern/MetaLowCode.git
git@gitee.com:Pattern/MetaLowCode.git
Pattern
MetaLowCode
MetaLowCode 企业级全栈低代码平台
master
点此查找更多帮助

搜索帮助

仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /