Commit 610dbe83 authored by guang.wu's avatar guang.wu

feat: 处理收货人手机显示逻辑

parent ffdda113
......@@ -33,7 +33,7 @@ const ChangeLog = props => {
props.visible && (
<Modal
open={props.visible}
width={800}
width={840}
onCancel={() => closeModal(false)}
footer={[
<Button key="close" onClick={() => closeModal(false)}>
......
......@@ -82,11 +82,7 @@ export const logColumn = [
title: '操作人',
dataIndex: 'orderNo',
key: 'orderNo',
width: 200,
render: (text, record) => (
<div>
{record?.operator} {record?.operateTypeDesc}
</div>
),
width: 240,
render: (text, record) => <div>{record?.operator}</div>,
},
];
......@@ -467,7 +467,8 @@ const TableList = props => {
{props.type === 2 ? '更新物流信息' : '填写物流信息'}
</Button>
)}
{canEditable && ShowUpdateBtn.includes(record?.skuSource?.value) ? null : (
{(canEditable && ShowUpdateBtn.includes(record?.skuSource?.value)) ||
props.type !== 2 ? null : (
<Button
type="primary"
style={{
......
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