Browse Source

fix: 店铺logo保存.

peter 7 months ago
parent
commit
f190d55061
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/views/shop/shop-manage/site/edit.vue

+ 1 - 4
src/views/shop/shop-manage/site/edit.vue

@@ -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)