权限模板

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

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

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

Loading…
Cancel
Save