Commit a02c476b authored by 武广's avatar 武广

Merge branch 'feature/202207111510' into 'master'

fix: 优化图片展示功能

See merge request !42
parents 4ee3e994 8c394e05
...@@ -51,7 +51,8 @@ export default () => { ...@@ -51,7 +51,8 @@ export default () => {
notification.warning({ message: '该订单没有凭证' }); notification.warning({ message: '该订单没有凭证' });
return; return;
} }
setProofsData(proofs.split(',')); const list = proofs.replace(/(\uff1b|\uff0c|\u003b)/g, ',').split(',');
setProofsData(list);
setProofsVisible(true); setProofsVisible(true);
}; };
const refund = async ({ serviceNo }) => { const refund = async ({ serviceNo }) => {
......
...@@ -55,7 +55,8 @@ export default () => { ...@@ -55,7 +55,8 @@ export default () => {
notification.warning({ message: '该订单没有凭证' }); notification.warning({ message: '该订单没有凭证' });
return; return;
} }
setProofsData(proofs.split(',')); const list = proofs.replace(/(\uff1b|\uff0c|\u003b)/g, ',').split(',');
setProofsData(list);
setProofsVisible(true); setProofsVisible(true);
}; };
const viewAppeal = async r => { const viewAppeal = async r => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment