Browse Source

feat: 增加网站tab icon上传设置.

peter 1 month ago
parent
commit
06b7bab370
2 changed files with 28 additions and 10 deletions
  1. 2 1
      src/views/shop/shop-manage/site/au.vue
  2. 26 9
      src/views/shop/shop-manage/site/edit.vue

+ 2 - 1
src/views/shop/shop-manage/site/au.vue

@@ -245,7 +245,8 @@ export default {
         font_color: '',
         hide_prices: 0,
         footer: '',
-        alias_url: ''
+        alias_url: '',
+        logo_icon: '',
       }
       // }
     },

+ 26 - 9
src/views/shop/shop-manage/site/edit.vue

@@ -27,6 +27,16 @@
           :max="1"
           :list.sync="imagesList"></image-upload>
       </el-form-item>
+      <el-form-item label="icon">
+        <input
+          style="display: none"
+          type="text"
+          name="logo_icon"
+          :value="formData.logo_icon" />
+        <image-upload
+          :max="1"
+          :list.sync="imagesList2"></image-upload>
+      </el-form-item>
       <el-form-item label="主题色">
         <el-color-picker v-model="formData.theme_color"></el-color-picker>
       </el-form-item>
@@ -243,6 +253,7 @@ export default {
         ],
       },
       imagesList: [],
+      imagesList2: [],
     }
   },
   watch: {
@@ -255,21 +266,12 @@ export default {
       },
       deep: true,
     },
-    // imagesList() {
-    //   this.formData.logo = this.imagesList.length ? this.imagesList[0].url : ''
-    //   this.$refs.form.validateField('logo')
-    // },
   },
   methods: {
     transData() {
       this.loading = true
       const temp = JSON.parse(JSON.stringify(this.form))
       if (temp.logo && temp.logo.length) {
-        // this.$set(this, 'imagesList', [
-        //   {
-        //     url: temp.logo,
-        //   },
-        // ])
         this.imagesList = [
           {
             uid: '',
@@ -277,6 +279,14 @@ export default {
           },
         ]
       }
+      if (temp.logo_icon && temp.logo_icon.length) {
+        this.imagesList2 = [
+          {
+            uid: '',
+            url: 'https:' + temp.logo_icon,
+          },
+        ]
+      }
 
       if (temp.url) {
         const regexp = /\.promocatalogue\.com\.au/
@@ -315,6 +325,7 @@ export default {
     close() {
       this.formData = {}
       this.imagesList = []
+      this.imagesList2 = []
       this.$refs.form.clearValidate()
       this.$emit('close', 1)
     },
@@ -331,9 +342,15 @@ export default {
           this.$message.error('请上传logo')
           return
         }
+        // logo_icon 目前非必填
         const f = cloneDeep(this.formData)
         this.loading = true
         f.logo = this.imagesList[0].url.replace(this.$mediaRegExp, '/')
+        if (this.imagesList2.length) {
+          f.logo_icon = this.imagesList2[0].url.replace(this.$mediaRegExp, '/')
+        } else {
+          f.logo_icon = ''
+        }
         if (f.id) {
           common
             .editSite(f)