|
@@ -257,9 +257,6 @@ export default {
|
|
|
this.$emit('close', 1)
|
|
|
},
|
|
|
checkForm() {
|
|
|
- this.formData.logo = this.imagesList.length
|
|
|
- ? this.imagesList[0].url.replace(this.$mediaRegExp, '/')
|
|
|
- : ''
|
|
|
this.formData.url =
|
|
|
this.domainType === 1
|
|
|
? this.formData.pre + '.promocatalogue.com.au'
|
|
@@ -270,7 +267,7 @@ export default {
|
|
|
}
|
|
|
const f = cloneDeep(this.formData)
|
|
|
this.loading = true
|
|
|
- f.logo = f.logo.replace(this.$mediaRegExp, '/')
|
|
|
+ f.logo = this.imagesList[0].url.replace(this.$mediaRegExp, '/')
|
|
|
if (f.id) {
|
|
|
common
|
|
|
.editSite(f)
|