add account list page and account add page

This commit is contained in:
MaysWind
2020-11-09 01:10:41 +08:00
parent 70d4a84349
commit b2b8dcb098
15 changed files with 753 additions and 6 deletions
+34
View File
@@ -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
};