更新记录
1.0.7(2023-03-29)
fm 二次开发;增加时间组件的时间戳。树组件的展开全部节点 通用表单组件,增加内部转化和其他方法
1.0.6(2022-11-04)
插件路由
1.0.5(2022-11-03)
bug修复
查看更多平台兼容性
云端兼容性
阿里云 | 腾讯云 | 支付宝云 |
---|---|---|
√ | √ | × |
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
√ | √ | - | - | - | - | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
- | - | - | - | - | - | - | - | - | - | - |
其他
多语言 | 暗黑模式 | 宽屏模式 |
---|---|---|
× | × | √ |
uni-admin插件通用教程:
uni-admin
是一套基于uniCloud的开源应用管理端系统。详见:uni-admin 基础框架
本插件是uni-admin
系统的扩展插件,为开发者的admin系统添加功能。
需先确保本机有uni-admin
项目,然后将此插件导入到uni-admin
项目下。
如本机没有uni-admin
项目,需要先在HBuilderX中新建项目 -> uni-app项目 -> 选择uni-admin
模板。
如本机的uni-admin
项目版本过老,可能无法使用新插件,需及时升级本机的uni-admin
项目。详见uni-admin
项目更新日志
su-low-code
main.js 引入
// formMakingV3 表单设计器依赖
import FormMakingV3 from '/uni_modules/su-low-code/js_sdk/form-making-v3/dist/form-making-v3.es.js'
import '/uni_modules/su-low-code/js_sdk/form-making-v3/dist/index.css'
// 自定义组件;按需引入
// 动作自定义组件
import ForeignModel from '/uni_modules/su-low-code/components/su-formmaking-foreign-model/su-formmaking-foreign-model.vue'
import RuleEditor from '/uni_modules/su-low-code/components/su-formmaking-rule-editor/su-formmaking-rule-editor.vue'
import PropertyEditor from '/uni_modules/su-low-code/components/su-formmaking-property-editor/su-formmaking-property-editor.vue'
import PropertySelect from '/uni_modules/su-low-code/components/su-formmaking-property-select/su-formmaking-property-select.vue'
import CornEditor from '/uni_modules/su-low-code/components/su-formmaking-corn-editor/su-formmaking-corn-editor.vue'
import ColorEditor from '/uni_modules/su-low-code/components/su-formmaking-color-editor/su-formmaking-color-editor.vue'
// 表单编辑组件
import suGenerateForm from '/uni_modules/su-low-code/components/su-generate-form/su-generate-form.vue'
// 配置formMaking
app.use(FormMakingV3, {
locale: 'zh-Hans',
i18n
});
// 自定义组件;按需引入
app.component('foreign-model', ForeignModel)
app.component('rule', RuleEditor)
app.component('property-editor', PropertyEditor)
app.component('property-select', PropertySelect)
app.component('corn-editor', CornEditor)
app.component('color-editor', ColorEditor)
app.component('su-generate-form', suGenerateForm)