Compare commits

..

No commits in common. "380ede5ca8b32ac5fa3727aaaa0ecaeaa14b3acc" and "f5d0441cd7456927421cf7575db0c1b3ed57a5a8" have entirely different histories.

2 changed files with 10 additions and 14 deletions

View File

@ -97,8 +97,7 @@
class="w-full h-full object-cover"
/>
<button
@click.prevent="removeImage(image.id)"
type="button"
@click="removeImage(image.id)"
:disabled="uploadLoading"
class="absolute -top-2 -right-2 bg-red-500 text-white rounded-full w-6 h-6 flex items-center justify-center text-sm font-bold shadow-lg hover:bg-red-600 transition-colors disabled:bg-gray-400"
>
@ -346,7 +345,7 @@ const uploadFiles = async (files) => {
const removeImage = async (id) => {
try {
await axios.delete(`http://127.0.0.1:8000/api/foto/hapus/${id}`, {
await axios.delete(`/api/foto/hapus/${id}`, {
headers: {
Authorization: `Bearer ${localStorage.getItem("token")}`,
},

View File

@ -326,15 +326,12 @@ const submitForm = async (addItem) => {
try {
const response = await axios.post('/api/produk', {
...form.value,
id_user: userId.value,
},
{
headers: {
Authorization: `Bearer ${localStorage.getItem("token")}`,
},
}
);
...form.value,
id_user: userId.value,
headers: {
Authorization: `Bearer ${localStorage.getItem("token")}`,
},
});
const createdProductData = response.data.data;