Browse Source

feat: 站点设置新增. 主题色配置.

peter 7 months ago
parent
commit
46ba357596

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

@@ -241,6 +241,7 @@ export default {
         contactus: '',
         aboutus: '',
         terms: '',
+        theme_color: '',
       }
       // }
     },

+ 6 - 0
src/views/shop/shop-manage/site/edit.vue

@@ -27,6 +27,9 @@
           :max="1"
           :list.sync="imagesList"></image-upload>
       </el-form-item>
+      <el-form-item label="主题色">
+        <el-color-picker v-model="formData.theme_color"></el-color-picker>
+      </el-form-item>
       <el-form-item>
         <template #label>
           <span style="color: #f56c6c">*</span>&nbsp;网址
@@ -265,6 +268,9 @@ export default {
       } else {
         this.domainType = 1
       }
+      if (!temp.theme_color) {
+        temp.theme_color = '#fff'
+      }
       this.formData = temp
       this.loading = false
     },