摘要:
render: (h, params) => { return h('Select', { on: { 'on-change': (value) => { consle.log('change value', value); } } }) } render: (h, params) => { ret 阅读全文
摘要:
// 格式化金额 formatAmount(amount) { amount = amount.toString(10).split('.'); const int = amount[0].split(''); const decimals = amount[1]; let num = ''; fo 阅读全文