pull/213/head
xiaojunnuo 2024-10-10 14:07:11 +08:00
parent 0a9ec06fe7
commit cbd6abb29d
3 changed files with 12 additions and 5 deletions

View File

@ -59,7 +59,10 @@ export function getCommonColumnDefine(crudExpose: any, typeRef: any) {
show: false
},
column: {
width: 120
width: 200,
component: {
color: "auto"
}
},
form: {
component: {

View File

@ -51,7 +51,7 @@ export default function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOpti
key: "id",
type: "number",
column: {
width: 50
width: 100
},
form: {
show: false
@ -65,6 +65,9 @@ export default function ({ crudExpose }: CreateCrudOptionsProps): CreateCrudOpti
},
form: {
rules: [{ required: true, message: "必填项" }]
},
column: {
width: 300
}
},
...commonColumnsDefine

View File

@ -118,10 +118,11 @@ export class PipelineService extends BaseService<PipelineEntity> {
const isUpdate = bean.id > 0 && old != null;
if (!isPlus()) {
let count = await this.repository.count();
if (isUpdate) {
count -= 1;
if (!isUpdate) {
//如果是添加要加1
count += 1;
}
if (count >= freeCount) {
if (count > freeCount) {
throw new NeedVIPException('免费版最多只能创建10个pipeline');
}
}