|
@ -112,7 +112,7 @@ export const Q2 = useCrudSchemas( |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '供应商编码', |
|
|
label: '供应商代码', |
|
|
field: 'supplierCode', |
|
|
field: 'supplierCode', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: true, |
|
|
isSearch: true, |
|
@ -192,6 +192,23 @@ export const Q2 = useCrudSchemas( |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
{ |
|
|
|
|
|
label: '数量', |
|
|
|
|
|
field: 'qty', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
isTable: true, |
|
|
|
|
|
isSearch: false, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 150 |
|
|
|
|
|
}, |
|
|
|
|
|
form: { |
|
|
|
|
|
component: 'InputNumber', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
min: 0, |
|
|
|
|
|
precision: 2 |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
{ |
|
|
{ |
|
|
label: '单位', |
|
|
label: '单位', |
|
|
field: 'uom', |
|
|
field: 'uom', |
|
@ -214,6 +231,7 @@ export const Q2 = useCrudSchemas( |
|
|
label: '采购收货单号', |
|
|
label: '采购收货单号', |
|
|
field: 'purchaseReceiptNumber', |
|
|
field: 'purchaseReceiptNumber', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
|
|
|
isTable: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 180 |
|
|
width: 180 |
|
|
}, |
|
|
}, |
|
@ -263,23 +281,7 @@ export const Q2 = useCrudSchemas( |
|
|
isTable: false, |
|
|
isTable: false, |
|
|
isDetail: false |
|
|
isDetail: false |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
|
|
|
label: '数量', |
|
|
|
|
|
field: 'qty', |
|
|
|
|
|
sort: 'custom', |
|
|
|
|
|
isTable: false, |
|
|
|
|
|
isSearch: false, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 150 |
|
|
|
|
|
}, |
|
|
|
|
|
form: { |
|
|
|
|
|
component: 'InputNumber', |
|
|
|
|
|
componentProps: { |
|
|
|
|
|
min: 0, |
|
|
|
|
|
precision: 2 |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
{ |
|
|
{ |
|
|
label: '编码', |
|
|
label: '编码', |
|
|
field: 'code', |
|
|
field: 'code', |
|
@ -288,6 +290,9 @@ export const Q2 = useCrudSchemas( |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
isTable: true, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 180 |
|
|
|
|
|
}, |
|
|
tableForm: { |
|
|
tableForm: { |
|
|
type: 'Select' |
|
|
type: 'Select' |
|
|
} |
|
|
} |
|
@ -300,7 +305,7 @@ export const Q2 = useCrudSchemas( |
|
|
dictType: DICT_TYPE.QUALITY_NOTIFICATION_PRIORITY, |
|
|
dictType: DICT_TYPE.QUALITY_NOTIFICATION_PRIORITY, |
|
|
dictClass: 'string', |
|
|
dictClass: 'string', |
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
isTable: false, |
|
|
tableForm: { |
|
|
tableForm: { |
|
|
type: 'Select' |
|
|
type: 'Select' |
|
|
} |
|
|
} |
|
@ -311,6 +316,9 @@ export const Q2 = useCrudSchemas( |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isForm: true, |
|
|
isForm: true, |
|
|
|
|
|
table: { |
|
|
|
|
|
width: 120 |
|
|
|
|
|
}, |
|
|
form: { |
|
|
form: { |
|
|
componentProps: { |
|
|
componentProps: { |
|
|
value: userStore.getUser.nickname, |
|
|
value: userStore.getUser.nickname, |
|
@ -340,7 +348,7 @@ export const Q2 = useCrudSchemas( |
|
|
field: 'costCode', |
|
|
field: 'costCode', |
|
|
sort: 'custom', |
|
|
sort: 'custom', |
|
|
isSearch: false, |
|
|
isSearch: false, |
|
|
isTable: true, |
|
|
isTable: false, |
|
|
isForm: true, |
|
|
isForm: true, |
|
|
form: { |
|
|
form: { |
|
|
// labelMessage: '信息提示说明!!!',
|
|
|
// labelMessage: '信息提示说明!!!',
|
|
@ -375,7 +383,7 @@ export const Q2 = useCrudSchemas( |
|
|
{ |
|
|
{ |
|
|
label: '索赔日期', |
|
|
label: '索赔日期', |
|
|
field: 'claimTime', |
|
|
field: 'claimTime', |
|
|
isForm: false, |
|
|
isTable: true, |
|
|
table: { |
|
|
table: { |
|
|
width: 180 |
|
|
width: 180 |
|
|
}, |
|
|
}, |
|
@ -396,7 +404,7 @@ export const Q2 = useCrudSchemas( |
|
|
{ |
|
|
{ |
|
|
label: '处理时间', |
|
|
label: '处理时间', |
|
|
field: 'handleTime', |
|
|
field: 'handleTime', |
|
|
isForm: false, |
|
|
isTable: false, |
|
|
table: { |
|
|
table: { |
|
|
width: 180 |
|
|
width: 180 |
|
|
}, |
|
|
}, |
|
|