瀏覽代碼

feat(商品管理): 添加一键复制

商品添加一键复制
tags/小炒逻辑变更前
txb 2 年之前
父節點
當前提交
c466d17e46
共有 2 個檔案被更改,包括 19 行新增0 行删除
  1. +1
    -0
      src/pages/goods/goodsInfo/index.jsx
  2. +18
    -0
      src/pages/goods/newgoods/index.jsx

+ 1
- 0
src/pages/goods/goodsInfo/index.jsx 查看文件

@@ -25,6 +25,7 @@ const Advanced = (props) => {
const onFinish = async (values) => {
const hide = message.loading('正在添加');
try {
if(props.location.query.isAdd)values.id=null;
values.imgUrl = url ? url : values.imgUrl;
await addGoods(JSON.stringify(values)).then((r) => {
if (r.data) {


+ 18
- 0
src/pages/goods/newgoods/index.jsx 查看文件

@@ -262,6 +262,24 @@ const GoodsManage = () => {
>
更新
</a>,
<a
key="primary"
type="primary"
onClick={() => {
history.push({
pathname: '/goods/goodsInfo',
query: {
isAdd: true,
values: record,
tabStatus: 'basis'
},
});
// handleModalVisible(true);
// setCurrentRow(record);
}}
>
复制
</a>,
<a
key="primary"
type="primary"


Loading…
取消
儲存