@@ -9,7 +9,7 @@ | |||||
export default { | export default { | ||||
dev: { | dev: { | ||||
'/kitchen/': { | '/kitchen/': { | ||||
target: 'https://192.168.1.63:5001', | |||||
target: 'https://localhost:5001', | |||||
changeOrigin: true, | changeOrigin: true, | ||||
secure: false, //关闭证书验证 | secure: false, //关闭证书验证 | ||||
pathRewrite: { | pathRewrite: { | ||||
@@ -377,6 +377,9 @@ const MemberManage = () => { | |||||
dataIndex: 'nickName', | dataIndex: 'nickName', | ||||
valueType: 'textarea', | valueType: 'textarea', | ||||
hideInForm: true, | hideInForm: true, | ||||
render: (_, record) => ( | |||||
<a>{isBase64(record.nickName) ? decodeBPABase64(record.nickName) : record.nickName}</a> | |||||
) | |||||
}, | }, | ||||
{ | { | ||||
title: '性别', | title: '性别', | ||||
@@ -102,7 +102,7 @@ const App = () => { | |||||
items={new Array(2).fill(null).map((_, i) => { | items={new Array(2).fill(null).map((_, i) => { | ||||
const id = String(i + 1); | const id = String(i + 1); | ||||
return { | return { | ||||
label: id == 1 ? `银收总览` : `支付渠道`, | |||||
label: id == 1 ? `营收总览` : `支付渠道`, | |||||
key: id, | key: id, | ||||
children: <Table | children: <Table | ||||
columns={columns} | columns={columns} | ||||
@@ -190,7 +190,7 @@ const Manage = () => { | |||||
width: 120, | width: 120, | ||||
}, | }, | ||||
{ | { | ||||
title: '应付款金额', | |||||
title: '应收款金额', | |||||
dataIndex: 'orderOriginalMoney', | dataIndex: 'orderOriginalMoney', | ||||
renderText: (val) => `${val}¥`, | renderText: (val) => `${val}¥`, | ||||
hideInSearch: true, | hideInSearch: true, | ||||
@@ -203,7 +203,7 @@ const Manage = () => { | |||||
width: 120, | width: 120, | ||||
}, | }, | ||||
{ | { | ||||
title: '实际付款金额', | |||||
title: '实收付款金额', | |||||
dataIndex: 'orderRealMoney', | dataIndex: 'orderRealMoney', | ||||
hideInSearch: true, | hideInSearch: true, | ||||
renderText: (val) => `${val}¥`, | renderText: (val) => `${val}¥`, | ||||