Commit 4e23304f authored by TTS Kieu Tuan Anh's avatar TTS Kieu Tuan Anh

fix string image

parent b7aa4a55
......@@ -48,8 +48,7 @@ export default {
// https://go.nuxtjs.dev/axios
'@nuxtjs/axios',
'@nuxtjs/auth-next',
'@nuxtjs/toast',
'@pinia/nuxt'
'@nuxtjs/toast'
],
// Axios module configuration: https://go.nuxtjs.dev/config-axios
......
......@@ -612,7 +612,7 @@ export default {
}
})
.then((response) => {
self.$toast.success('User updated successfully!', {
self.$toast.success('Category updated successfully!', {
duration: 3000
})
this.editedItem = response.data.data
......
......@@ -106,12 +106,11 @@
</v-col>
<v-col cols="12" text-align=" left">
<v-img
v-for="(imageEdit, index) in eImages"
:key="index"
v-if="typeof eImages === 'string'"
contain
height="100px"
width="150px"
:src="imageEdit"
:src="eImages"
/>
</v-col>
</v-row>
......@@ -630,7 +629,7 @@ export default {
})
.catch((error) => {
console.log(error)
self.$toast.error('something went wrong while trying create!', {
self.$toast.error('something went wrong while trying update!', {
duration: 3000
})
})
......
......@@ -761,6 +761,7 @@ export default {
this.eImages = item.images
this.editedIndex = this.products.indexOf(item)
console.log(item.variants)
console.log(typeof this.eImages)
this.dialog3 = true
},
updateProduct (ID) {
......@@ -784,26 +785,28 @@ export default {
}
}
const currentPostIndex = this.editedIndex
try {
this.$axios
.post(`/products/update/${this?.eId}`,
fd, {
headers: {
Authorization: `Bearer ${this.$auth.$storage.getUniversal('token')}`
}
this.$axios
.post(`/products/update/${this?.eId}`,
fd, {
headers: {
Authorization: `Bearer ${this.$auth.$storage.getUniversal('token')}`
}
)
.then((response) => {
self.$toast.success('Product updated successfully!', {
duration: 3000
})
console.log(response)
this.editedItem = response.data.data
Object.assign(this.products[currentPostIndex], this.editedItem)
}
)
.then((response) => {
self.$toast.success('Product updated successfully!', {
duration: 3000
})
} catch (error) {
console.log(error)
}
console.log(response)
this.editedItem = response.data.data
Object.assign(this.products[currentPostIndex], this.editedItem)
})
.catch((error) => {
console.log(error)
self.$toast.error('something went wrong while trying update!', {
duration: 3000
})
})
},
addMore () {
this.variants.push({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment