clean code

This commit is contained in:
HAM!DREZA
2024-07-05 19:39:39 +03:30
parent ad7a4b839d
commit 852b6962c6
58 changed files with 911 additions and 2847 deletions
-73
View File
@@ -22,20 +22,6 @@ export const useDiscountStore = defineStore('discounts', {
this.fetching = false
return data
},
async index() {
this.items = [];
this.fetching = true
@@ -63,65 +49,6 @@ export const useDiscountStore = defineStore('discounts', {
this.fetching = false
return data
}
// async create(newCourse) {
// const { status, data } = await axios.post('/course', newCourse)
// return data
// },
// async delete(id) {
// const { status, data } = await axios.delete(`/course/${id}`, id)
// return data
// },
// async edit(id) {
// const { status, data } = await axios.get(`/course/${id}`)
// return data
// },
// async store(form) {
// const result = await axios.post('/admin/products/add', form)
// if (result.status === 201)
// this.items.unshift(result.data)
// return result;
// },
// async update(id, form) {
// const result = await axios.put(`/admin/products/${id}`, form)
// if (result.status === 200) {
// const index = this.items.findIndex(({ _id }) => _id == id)
// this.items[index] = result.data
// }
// return result;
// },
// async confirm(id, form) {
// const result = await axios.post(`/admin/products/confirm/${id}`, form)
// if (result.status === 200) {
// const index = this.items.findIndex(({ _id }) => _id == id)
// this.items[index] = result.data
// }
// return result;
// },
// async remove(id) {
// const result = await axios.delete(`/admin/products/${id}`)
// if (result.status === 200) {
// const index = this.items.findIndex(({ _id }) => _id == id)
// this.items.splice(index, 1)
// }
// return result;
// },
}
})