소스 검색

feat(配方排序): 配方自定义排序

配方自定义排序
tags/小炒逻辑变更前
txb 2 년 전
부모
커밋
192ec80d81
2개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      src/pages/bom/manage/components/CreateForm.jsx
  2. +6
    -0
      src/pages/bom/manage/index.jsx

+ 4
- 1
src/pages/bom/manage/components/CreateForm.jsx 파일 보기

@@ -31,7 +31,7 @@ const CreateForm = (props) => {
<Input placeholder="配方名称" />
</Form.Item>
<Form.Item name="bomTypeList" label="配方类型" >
<Select
<Select
mode="multiple"
allowClear >
{props?.bomtype?.map((item, index) => {
@@ -46,6 +46,9 @@ const CreateForm = (props) => {
<Form.Item name="isMain" label="配方类型" >
<Switch checkedChildren="主料" unCheckedChildren="辅料" />
</Form.Item>
<Form.Item name="sort" label="排序" >
<InputNumber placeholder="排序" min={1} />
</Form.Item>
<Form.Item>
<Button type="primary" htmlType="submit">
保存


+ 6
- 0
src/pages/bom/manage/index.jsx 파일 보기

@@ -161,6 +161,12 @@ const GoodsBomsManage = (props) => {
hideInForm: true,
hideInSearch: true,
},
{
title: '排序',
dataIndex: 'sort',
hideInForm: true,
hideInSearch: true,
},
{
title: '配方分类',
dataIndex: 'bomTypeList',


불러오는 중...
취소
저장