Commit 72dd9849 by crushh

update: dist

parent 2e3d1c77
......@@ -255,6 +255,7 @@ export default {
{
label: '销售额',
value: '',
unit: '元',
key: 'actualSale',
type: 'moneyNum'
}
......@@ -264,7 +265,8 @@ export default {
label: '客单价',
value: '',
key: 'perCustomerTransaction',
type: 'moneyNum'
type: 'moneyNum',
unit: '元'
},
{
label: '连带率',
......@@ -308,7 +310,7 @@ export default {
}
break;
case 'moneyNum':
item.value = numFormat(value) + '元';
item.value = numFormat(value);
break;
case 'rate':
item.value = !isNaN(value) ? value + '%' : '- -';
......
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