Browse Source

change: 增加页脚信息.

peter 4 months ago
parent
commit
a9b9c5aebb
2 changed files with 14 additions and 1 deletions
  1. 1 0
      src/views/shop/shop-manage/site/au.vue
  2. 13 1
      src/views/shop/shop-manage/site/edit.vue

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

@@ -244,6 +244,7 @@ export default {
         theme_color: '',
         font_color: '',
         hide_prices: 0,
+        footer: ''
       }
       // }
     },

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

@@ -100,6 +100,15 @@
           <template slot="append">%</template>
         </el-input>
       </el-form-item>
+      <el-form-item
+        label="页脚信息"
+        prop="footer">
+        <el-input
+          name="footer"
+          v-model="formData.footer"
+          style="width: 100%">
+        </el-input>
+      </el-form-item>
       <el-form-item
         label="Contact Us"
         prop="">
@@ -246,7 +255,7 @@ export default {
   methods: {
     transData() {
       this.loading = true
-      const temp = this.form
+      const temp = JSON.parse(JSON.stringify(this.form))
       if (temp.logo && temp.logo.length) {
         // this.$set(this, 'imagesList', [
         //   {
@@ -286,6 +295,9 @@ export default {
       if (typeof temp.hide_prices !== 'number') {
         temp.hide_prices = 0
       }
+      if (!temp.footer) {
+        temp.footer = ''
+      }
       this.formData = temp
       this.loading = false
     },