sula icon indicating copy to clipboard operation
sula copied to clipboard

🚀 Pluggable enterprise-level configurable framework based on antd.

Results 66 sula issues
Sort by recently updated
recently updated
newest added

大佬,sula-build不是说8月20号上线吗?

step form 允许单步保存 https://github.com/umijs/sula/issues/25

### Description ````javascript itemLayout: { span: { xxl: 6, xl: 8, lg: 8, md: 8, sm: 8, xs: 12 } } ```` ### Solution

### Versions - sula: 1.0.0-beta.5 - umi-plugin-sula: 1.0.0-beta.1 - OS: MacOS 10.15 - Browser: Chrome ### Steps to reproduce ``` eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src ``` ### What is...

### Description Currently, Sula + AntD + dependencies (lodash, moment, axios etc.) are coming up to 1.4MB bundle size in production mode. This is large and preferable to reduce it...

### Description Currently `antd` components are being loaded statically. This increases the bundle size and initial load time. Since not all components are needed at the start, please load all...

```ts const validator = (ctx) => { return new Promise((resolve, reject) => { if(ctx.value) { resolve(); } else { reject(new Error(`请输入${ctx.label}`)) } }) } ```

### Question 1. `dependency`配置相互关联表单栈溢出 ### Description fields配置如下,CNY与USD的值相互影响关联 ```js fields: [ { name: 'CNY', label: 'CNY', field: 'inputnumber', dependency: { value: { relates: ['USD'], type: (ctx) => { const { form,...

### Versions - sula: ^1.0.0-beta.0 - umi-plugin-sula: - OS: Windows10 - Browser: chrome 83.0.4103.116 ### Steps to reproduce 1、table里columns每一项都超长 2、columns的内容总长度超出屏幕长度,如图 ![image](https://user-images.githubusercontent.com/20574704/87270201-02743c80-c502-11ea-898f-2c1788907030.png) ### What is Expected? columns的内容总长度超出屏幕长度s时,自动加上滚动条 ### What is actually...