mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 16:07:33 +08:00
add account list page and account add page
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
const allAccountCategories = [
|
||||
{
|
||||
id: 1,
|
||||
name: 'Cash'
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: 'Debit Card'
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: 'Credit Card'
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
name: 'Virtual Account'
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: 'Debt Account'
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
name: 'Receivables'
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
name: 'Investment Account'
|
||||
}
|
||||
];
|
||||
|
||||
export default {
|
||||
allCategories: allAccountCategories
|
||||
};
|
||||
Reference in New Issue
Block a user