chore: check phone register & insert guest phone and change loading

This commit is contained in:
2022-11-14 14:18:32 +07:00
parent f4654fb7ca
commit a7571e78e4
4 changed files with 48 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
import {http} from "../utils/http";
import {botsRepository} from "../repository/bots";
import { orderRepository } from "../repository/order";
export class LockeyStore {
constructor(context) {
@@ -9,4 +10,8 @@ export class LockeyStore {
createOrder(body) {
return http.post(botsRepository.url.createOrder(), body);
}
createPayment(body) {
return http.post(orderRepository.url.payment(), body);
}
}