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