Browse Source

船舶档案/项目档案-查询条件样式修改

jingbb 5 months ago
parent
commit
a9e1c81376

+ 2 - 0
src/views/baseCode/ProjectArchive/BaseProjectArchive.data.ts

@@ -66,6 +66,7 @@ export const searchFormSchema: FormSchema[] = [
       label: "创建时间(create time)",
       field: "createTime",
       component: 'RangePicker',
+      labelWidth: 150,
       componentProps: {
           valueType: 'Date',
           showTime:true
@@ -76,6 +77,7 @@ export const searchFormSchema: FormSchema[] = [
     label: "创建人(create by)",
     field: 'createBy',
     component: 'Input',
+    labelWidth: 120,
     //colProps: {span: 6},
    },
 	

+ 7 - 0
src/views/baseCode/ShipArchive/BaseShipArchive.data.ts

@@ -47,11 +47,13 @@ export const searchFormSchema: FormSchema[] = [
       label: "唯一编号(IMO)",
       field: 'imo',
       component: 'Input',
+      // labelWidth: 150,
       //colProps: {span: 6},
  	},
 	{
       label: "船名称(ship name)",
       field: 'shipName',
+      labelWidth: 150,
       component: 'Input',
       //colProps: {span: 6},
  	},
@@ -59,6 +61,8 @@ export const searchFormSchema: FormSchema[] = [
     label: '关联客户(relate customer)',
     field: 'relateCustomer',
     component: 'Input',
+    labelWidth: 180,
+
    },
 	{
       label: "hull number",
@@ -70,6 +74,7 @@ export const searchFormSchema: FormSchema[] = [
     label: "船厂(ship factory)",
     field: 'shipFactory',
     component: 'JSelectMultiple',
+    labelWidth: 120,
     componentProps:{
       dictCode:"ship_factory"
    },
@@ -79,6 +84,7 @@ export const searchFormSchema: FormSchema[] = [
   label: "造船日期(ship date)",
   field: "shipDate",
   component: 'RangePicker',
+  labelWidth: 150,
   componentProps: {
       valueType: 'Date',
       showTime:true
@@ -89,6 +95,7 @@ export const searchFormSchema: FormSchema[] = [
   label: "船类型(ship type)",
   field: 'shipType',
   component: 'JSelectMultiple',
+  labelWidth: 180,
   componentProps:{
     dictCode:"ship_type"
  },