Archived
Private
Public Access
1
0

Update 19.11.2022

This commit is contained in:
2022-11-19 14:12:22 +01:00
parent 08ddca2211
commit 771f58073f
322 changed files with 50685 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
import PhoneAPI from './../../PhoneAPI'
const state = {
bankAmont: '0'
}
const getters = {
bankAmont: ({ bankAmont }) => bankAmont
}
const actions = {
sendpara ({ state }, { id, amount }) {
PhoneAPI.callEvent('gcphone:bankTransfer', {id, amount})
}
}
const mutations = {
SET_BANK_AMONT (state, bankAmont) {
state.bankAmont = bankAmont
}
}
export default {
state,
getters,
actions,
mutations
}