0.0.39 • Published 1 month ago

@centit/ui-workspace v0.0.39

Weekly downloads
-
License
-
Repository
-
Last release
1 month ago

ui-workspace

一个开箱即用、统一样式的工作台框架

安装

npm install @centit/ui-workspace --save

main.js

import Workspace, { Tools } from '@centit/ui-workspace'
import '@centit/ui-workspace/ui-workspace.css'

...

app.use(Workspace)
app.use(Tools)

使用说明

使用说明

工作台

<c-workspace :layout="layout" >
  <template #header-left>
    <c-logo-tool />
  </template>
  
  ...
  
  <template #left="{ tab, tabs }">
      <ElementsPanel v-if="tabs[0].resolved" v-show="tab.value === 'C'" />
      <LayersPanel v-if="tabs[1].resolved" v-show="tab.value === 'S'" />
      <PagesPanel v-if="tabs[2].resolved" v-show="tab.value === 'P'" />
  </template>
  
  ...
</c-workspace>

<script>
const layout = {
    header: {
        size: 52,
    },
    tools: {
        size: 48,
    },
    left: {
        size: 300,
        tabs: [
            { value: 'C', label: '组件', icon: BuildOutlined },
            { value: 'S', label: '结构', icon: ApartmentOutlined },
            { value: 'P', label: '页面', icon: FolderOpenOutlined },
            { value: 'A', label: '工程', icon: RocketOutlined },
        ],
        tab: 'C',
    },
    right: {
        size: 300,
    },
    bottom: {
        size: 256,
        isClosed: false,
        isFullscreen: false,
        tabs: [
            { value: 'C', label: '代码', icon: ApiOutlined },
            { value: 'E', label: '效果', icon: AlertOutlined },
        ],
        tab: 'C',
    },
    main: {
        tabs: false,
    },
}
</script>

组件选择Panel

<c-items-panel
  :items="plugins"
  @startDrag="onStartDragItem"
  @endDrag="onEndDragItem"
/>

<script>
const plugins = [
  {
    key: 'Layout',
    label: '布局',
    children: [
      {
        icon: '图标地址或者base64',
        label: '容器'
        ... // 其他自己需要的属性
      },
      ...
    ],
  },
  ... // 其他栏目
]

// 从侧边栏开始拖动元素
function onStartDragItem(e, item) {
  
}

// 结束拖动
function onEndDragItem(e, item) {

}
</script>

Change Logs

0.0.15

1、添加c-history-panel组件

<c-history-panel
    v-if="tab.value === 'H' && application && modelId"
    :height="layout.bottom.size"
    :osId="application.osId"
    :relationId="modelId"
    :pushUser="user.userInfo.userCode"
    :content="model.forTemplate"
    type="2"
/>

0.0.14

1、c-item-panels内各组件可以折叠

2、c-item-panels添加col属性,可以控制每行显示组件数量(默认=4,对于工作流或其他组件比较少的情况可以改成3)

3、添加c-title-tool组件,用来显示应用名称和当前菜单名称

0.0.39

1 month ago

0.0.38

3 months ago

0.0.37

4 months ago

0.0.35

8 months ago

0.0.36

6 months ago

0.0.34

1 year ago

0.0.30

1 year ago

0.0.31

1 year ago

0.0.32

1 year ago

0.0.33

1 year ago

0.0.27

2 years ago

0.0.28

1 year ago

0.0.29

1 year ago

0.0.24

2 years ago

0.0.25

2 years ago

0.0.26

2 years ago

0.0.20

2 years ago

0.0.21

2 years ago

0.0.22

2 years ago

0.0.23

2 years ago

0.0.19

2 years ago

0.0.13

2 years ago

0.0.14

2 years ago

0.0.15

2 years ago

0.0.16

2 years ago

0.0.17

2 years ago

0.0.18

2 years ago

0.0.12

3 years ago

0.0.10

3 years ago

0.0.11

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago