소스 검색

feat(商品添加会员价): 商品添加会员价

商品添加会员价
tags/小炒逻辑变更前
txb 2 년 전
부모
커밋
32ca91be51
2개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      src/pages/goods/goodsInfo/index.jsx
  2. +9
    -0
      src/pages/goods/newgoods/index.jsx

+ 3
- 0
src/pages/goods/goodsInfo/index.jsx 파일 보기

@@ -211,6 +211,9 @@ const Advanced = (props) => {
<Form.Item name="price" label="商品价格" rules={[{ required: true }]}>
<InputNumber placeholder="价格" min={0} />
</Form.Item>
<Form.Item name="vipprice" label="会员价格">
<InputNumber placeholder="会员价" min={0} />
</Form.Item>
<Form.Item name="imgUrl" hidden={true} >
<Input />
</Form.Item>


+ 9
- 0
src/pages/goods/newgoods/index.jsx 파일 보기

@@ -175,6 +175,14 @@ const GoodsManage = () => {
dataIndex: 'price',
hideInForm: true,
renderText: (val) => `${val}¥`,
hideInSearch: true,
},
{
title: '会员价',
dataIndex: 'price',
hideInForm: true,
renderText: (val) => `${val}¥`,
hideInSearch: true,
},
{
title: '商品小类',
@@ -209,6 +217,7 @@ const GoodsManage = () => {
status: 'Error',
},
},

},
{
title: '创建时间',


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