An open API service indexing awesome lists of open source software.

https://github.com/phuc-create/mini-shop-intern-pratice


https://github.com/phuc-create/mini-shop-intern-pratice

context-api miniprogram react

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

## hello world
- list product in store
- add product
- add to cart
- check out

# Product include
- id (format: date-time now + (math.random() + "").slice(5,9))
- name
- price
- quantity

# Cart include
- idCart (format: date-time now + (math.random() + "").slice(5,9))
- details {
product {
- id (format: date-time now + (math.random() + "").slice(5,9))
- name
- price
- quantity
}
}

# Checkout -> Order include
- idOrder (format: date-time now + (math.random() + "").slice(5,9))
- product {
- id (format: date-time now + (math.random() + "").slice(5,9))
- name
- price
- quantity
}
- totalPrice
- createdAt