为了账号安全,请及时绑定邮箱和手机立即绑定

如何在材料表单元格中添加图像?

如何在材料表单元格中添加图像?

蛊毒传说 2023-04-27 10:15:39
我在详细表中添加了图像(可能不正确)。现在我不会编辑数据并且图像字段有问题(没有图像一切正常)。 在此处输入图像描述           columns={[{ title: 'ID', field: 'id' },                     { title: '', field: 'img'},                     { title: 'Title', field: 'title' },                     { title: 'Price', field: 'price' },                     { title: 'Quantity', field: 'quantity' },                     { title: 'Subtotal', field: 'subtotal' },                     { title: 'Description', field: 'description', hidden: true}, ]}          data={rowData.items.map((item)=>                  ({id: item.id, title:item.title,                     price:item.price,                    quantity:item.quantity,                    subtotal:item.price*item.quantity,                     description:item.description,                    img:<img src={item.img} alt="" border="3" height="100" width="100" />                                                 }))}        editable={{                  onRowDelete: oldData =>                       new Promise((resolve, reject) => {                           console.log(oldData);                              setTimeout(() => {                               const index = oldData.tableData.id;                               rowData.items.splice(index, 1);                                                                                         removeItemFromOrder(rowData.orderNumber,oldData);                               resolve()                                                         }, 1000)                                                     }),                                             }}
查看完整描述

1 回答

?
Smart猫小萌

TA贡献1911条经验 获得超7个赞

尝试这个:


 columns={[{ title: 'ID', field: 'id' },

                     { title: '', field: 'img', render: item => <img src={item.img} alt="" border="3" height="100" width="100" />},

                     { title: 'Title', field: 'title' },

                     { title: 'Price', field: 'price' },

                     { title: 'Quantity', field: 'quantity' },

                     { title: 'Subtotal', field: 'subtotal', render: (item) => item.price*item.quantity},

                     { title: 'Description', field: 'description', hidden: true}, ]}

          data={rowData.items}


查看完整回答
反对 回复 2023-04-27
  • 1 回答
  • 0 关注
  • 97 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信