权限模板

feature-JimuReport-1106-yjl
sunzehua 1 month ago
parent 8aeaa7d9a1
commit e73be31cf4

@ -46,7 +46,7 @@ export const searchFormSchema: FormSchema[] = [
colProps: { span: 4 },
},
{
field: 'STATUS',
field: 'status',
label: '舱位状态',
component: 'Select',
componentProps: {
@ -70,19 +70,19 @@ export const searchFormSchema: FormSchema[] = [
colProps: { span: 4 },
},
{
field: 'VESSEL',
field: 'vessel',
label: '船名',
component: 'Input',
colProps: { span: 4 },
},
{
field: 'VOYNO',
field: 'voyno',
label: '航次',
component: 'Input',
colProps: { span: 4 },
},
{
field: 'PORTLOAD',
field: 'portLoadId',
label: '装货港',
component: 'ApiSelect',
required: false,
@ -93,15 +93,15 @@ export const searchFormSchema: FormSchema[] = [
api: GetClientPortSelectList,
resultField: 'data',
labelField: 'pinYinCode',
valueField: 'ediCode',
showName: 'ediCode',
valueField: 'id',
showName: 'portName',
immediate: false,
onChange: (e, obj) => {},
}
},
},
{
field: 'PORTDISCHARGE',
field: 'portDischargeId',
label: '卸货港',
component: 'ApiSelect',
required: false,
@ -112,8 +112,8 @@ export const searchFormSchema: FormSchema[] = [
api: GetClientPortSelectList,
resultField: 'data',
labelField: 'pinYinCode',
valueField: 'ediCode',
showName: 'ediCode',
valueField: 'id',
showName: 'portName',
immediate: false,
onChange: (e, obj) => {},
}
@ -258,7 +258,7 @@ export const searchFormSchema: FormSchema[] = [
},
},
{
field: 'LANENAME',
field: 'laneName',
label: '航线名称',
component: 'Input',
colProps: { span: 4 },

@ -95,9 +95,9 @@
</a-button>
</div>
</div>
<a-button type="link" @click="addDetailGroup(index, key)">
<!-- <a-button type="link" @click="addDetailGroup(index, key)">
<span class="iconfont icon-new_document"></span> 添加条件组
</a-button>
</a-button> -->
</div>
<div class="item-btns">
<a-button type="link" @click="addRow(index)">
@ -314,11 +314,11 @@ const operatorOptions = [
},
{
label: '包含',
value: 1,
value: 6,
},
{
label: '不包含',
value: 13,
value: 7,
},
]
//
@ -463,7 +463,7 @@ defineExpose({
// .ds-advanced-search-modal {
.ant-form-small {
margin-top: 15px;
min-height: 400px;
// min-height: 400px;
}
.ds-advanced-search-item {
@ -498,8 +498,8 @@ defineExpose({
}
.add-group {
position: absolute;
bottom: 16px;
// position: absolute;
// bottom: 16px;
margin-left: 65px;
}

Loading…
Cancel
Save