mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-05-27 11:03:38 +00:00
138 lines
3.2 KiB
Vue
138 lines
3.2 KiB
Vue
<template>
|
|
<div class="mobile-config">
|
|
<el-form ref="formInline">
|
|
<div v-for="(item, key) in rCom" :key="key">
|
|
<component
|
|
:is="item.components.name"
|
|
:configObj="configObj"
|
|
ref="childData"
|
|
:configNme="item.configNme"
|
|
:key="key"
|
|
:index="activeIndex"
|
|
:num="item.num"
|
|
></component>
|
|
</div>
|
|
<rightBtn :activeIndex="activeIndex" :configObj="configObj"></rightBtn>
|
|
</el-form>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import toolCom from '@/components/mobileConfigRightDiy/index.js';
|
|
import rightBtn from '@/components/rightBtn/index.vue';
|
|
import { mapMutations } from 'vuex';
|
|
export default {
|
|
name: 'c_search_box',
|
|
componentsName: 'search_box',
|
|
cname: '搜索',
|
|
props: {
|
|
activeIndex: {
|
|
type: null,
|
|
},
|
|
num: {
|
|
type: null,
|
|
},
|
|
index: {
|
|
type: null,
|
|
},
|
|
},
|
|
components: {
|
|
...toolCom,
|
|
rightBtn,
|
|
},
|
|
data() {
|
|
return {
|
|
hotIndex: 1,
|
|
configObj: {}, // 配置对象
|
|
rCom: [
|
|
{
|
|
components: toolCom.c_set_up,
|
|
configNme: 'setUp',
|
|
},
|
|
], // 当前页面组件
|
|
};
|
|
},
|
|
watch: {
|
|
num(nVal) {
|
|
// debugger;
|
|
let value = JSON.parse(JSON.stringify(this.$store.state.mobildConfig.defaultArray[nVal]));
|
|
this.configObj = value;
|
|
},
|
|
configObj: {
|
|
handler(nVal, oVal) {
|
|
this.$store.commit('mobildConfig/UPDATEARR', { num: this.num, val: nVal });
|
|
},
|
|
deep: true,
|
|
},
|
|
'configObj.setUp.tabVal': {
|
|
handler(nVal, oVal) {
|
|
var arr = [this.rCom[0]];
|
|
if (nVal == 0) {
|
|
let tempArr = [
|
|
{
|
|
components: toolCom.c_upload_img,
|
|
configNme: 'logoConfig',
|
|
},
|
|
{
|
|
components: toolCom.c_hot_word,
|
|
configNme: 'hotWords',
|
|
},
|
|
];
|
|
this.rCom = arr.concat(tempArr);
|
|
} else {
|
|
let tempArr = [
|
|
// {
|
|
// components: toolCom.c_tab,
|
|
// configNme: 'tabConfig'
|
|
// },
|
|
{
|
|
components: toolCom.c_bg_color,
|
|
configNme: 'bgColor',
|
|
},
|
|
{
|
|
components: toolCom.c_txt_tab,
|
|
configNme: 'boxStyle',
|
|
},
|
|
{
|
|
components: toolCom.c_txt_tab,
|
|
configNme: 'txtStyle',
|
|
},
|
|
{
|
|
components: toolCom.c_txt_tab,
|
|
configNme: 'styleList',
|
|
},
|
|
{
|
|
components: toolCom.c_slider,
|
|
configNme: 'prConfig',
|
|
},
|
|
{
|
|
components: toolCom.c_slider,
|
|
configNme: 'mbConfig',
|
|
},
|
|
];
|
|
this.rCom = arr.concat(tempArr);
|
|
}
|
|
},
|
|
deep: true,
|
|
},
|
|
},
|
|
mounted() {
|
|
this.$nextTick(() => {
|
|
let value = JSON.parse(JSON.stringify(this.$store.state.mobildConfig.defaultArray[this.num]));
|
|
this.configObj = value;
|
|
});
|
|
},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="stylus">
|
|
.title-tips
|
|
padding-bottom 10px
|
|
font-size 14px
|
|
color #333
|
|
span
|
|
margin-right 14px
|
|
color #999
|
|
</style>
|