diff --git a/apps/web-antd/src/views/erp/sale/order/data.ts b/apps/web-antd/src/views/erp/sale/order/data.ts index 5b70302b5..177410ec4 100644 --- a/apps/web-antd/src/views/erp/sale/order/data.ts +++ b/apps/web-antd/src/views/erp/sale/order/data.ts @@ -203,6 +203,12 @@ export function useFormItemColumns(): VxeTableGridOptions['columns'] { title: '单位', minWidth: 80, }, + { + field: 'remark', + title: '备注', + minWidth: 150, + slots: { default: 'remark' }, + }, { field: 'count', title: '数量', @@ -239,12 +245,6 @@ export function useFormItemColumns(): VxeTableGridOptions['columns'] { minWidth: 120, formatter: 'formatAmount2', }, - { - field: 'remark', - title: '备注', - minWidth: 150, - slots: { default: 'remark' }, - }, { title: '操作', width: 50, diff --git a/apps/web-antd/src/views/erp/sale/out/modules/item-form.vue b/apps/web-antd/src/views/erp/sale/out/modules/item-form.vue index 567ec1617..e5aa180d0 100644 --- a/apps/web-antd/src/views/erp/sale/out/modules/item-form.vue +++ b/apps/web-antd/src/views/erp/sale/out/modules/item-form.vue @@ -213,7 +213,7 @@ onMounted(async () => { v-model:value="row.productId" :options="productOptions" :field-names="{ label: 'name', value: 'id' }" - style="width: 100%" + class="w-full" placeholder="请选择产品" show-search />