feat: 财务单据完善

This commit is contained in:
砂糖
2025-08-16 14:14:57 +08:00
parent 2e1d4f7a6f
commit e5137b4c0f
6 changed files with 219 additions and 83 deletions

View File

@@ -13,7 +13,8 @@ const mutations = {
const actions = {
getFinancialAccounts({ commit }) {
listAccount({ pageSize: 1000 }).then(response => {
commit('SET_FINANCIAL_ACCOUNTS', response.rows);
console.log(response.data, 'finance.response.rows');
commit('SET_FINANCIAL_ACCOUNTS', response.data);
});
}
}