|
@@ -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
|
|
|
},
|