浏览代码

:bug: recommend poster related product id

zhanghe 6 年之前
父节点
当前提交
007cf4c127
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/routes/Frontend/Recommend/RecommendPoster.js

+ 2 - 2
src/routes/Frontend/Recommend/RecommendPoster.js

@@ -162,8 +162,8 @@ export default class RecommendPosterEditPage extends Component {
     const originalData = [...this.props.merchant.posterList];
     const newData = originalData.map((data) => {
       if (flag === 'product' && data.id === currentEditPosterId) {
-        const { id, name, code, type } = rows[0];
-        return { ...data, type, name, code, pid: id };
+        const { pid, name, code, type } = rows[0];
+        return { ...data, type, name, code, pid };
       }
       if (flag === 'resource' && data.id === currentEditPosterId) {
         const { path } = rows[0];