Commit f6587aa3 authored by zhengke's avatar zhengke

曾加

parent 9be18ee6
......@@ -126,7 +126,7 @@
<div class="head-title">
<el-tabs v-model="activeName">
<el-tab-pane label="基础设置" name="1"></el-tab-pane>
<el-tab-pane label="司导设置" name="2"></el-tab-pane>
<!-- <el-tab-pane label="司导设置" name="2"></el-tab-pane> -->
</el-tabs>
</div>
<div class="content">
......
This diff is collapsed.
......@@ -282,6 +282,9 @@
:index="index" :dataLeng="dataList.length"></topic>
<shopinfo v-if="item.Id=='shop-info'" :shopinfoData="item" @getSord="getSord" @comDelPlugin="comDelPlugin"
:index="index" :dataLeng="dataList.length"></shopinfo>
<sidao v-if="item.Id=='drive-guide'" :sidaoData="item" @getSord="getSord" @comDelPlugin="comDelPlugin"
:index="index" :dataLeng="dataList.length"></sidao>
</div>
</div>
</div>
......@@ -389,6 +392,7 @@
import imageText from "../sallCenter/plugin/image-text.vue"
import topic from "../sallCenter/plugin/topic.vue"
import shopinfo from "../sallCenter/plugin/shopinfo.vue"
import sidao from "../sallCenter/plugin/sidao.vue"
import ChooseImg from "@/components/global/ChooseImg.vue";
export default {
......@@ -457,7 +461,8 @@
imageText,
topic,
shopinfo,
ChooseImg
ChooseImg,
sidao
},
methods: {
//选择图片
......@@ -1259,6 +1264,35 @@
};
this.dataList.push(shopInfoObj);
break;
//司导组件
case 'drive-guide':
let driveObj = {
Id: 'drive-guide',
isCked: false,
data:{
SearchBackground: '', //搜索背景
SearchTips: '', //搜索框文字
Tips: '每辆车都会配备一名专业导游,方便游客出行', // 按钮上面的文字提示
TipsIco: this.domainManager().ImageUrl + '/Static/dir_icon.png', // 按钮上面的文字图标提示
ButtonTextColor: '#fff', //按钮文本颜色
ButtonText: '去订车', // 按钮文本
ButtonColor: '#FF4048', //按钮颜色
IsShowDate: 1, // 是否显示时间筛选0-否,1-是
IsShowCity: 1, // 是否显示城市筛选0-否,1-是
IsShowAddress: 1, //是否显示地址筛选0-否,1-是
IsShowCarpooling: 1, //是否显示拼车筛选0-否,1-是
IsShowGuideCarGoodsType: 1, // 是否显示出行类型筛选0-否,1-是
IsShowCarClass: 1, //是否显示车辆类型筛选0-否,1-是
IsShowTravelGuestNum: 1, //是否显示出行人数筛选0-否,1-是
ButtonFilletPX: 0, // 按钮圆角像素
PaddingTop:0, //上边距
PaddingBottom:0, //下边距
PaddingLeft:0, //左边距
PaddingRight:0 //右边距
}
}
this.dataList.push(driveObj);
break;
}
},
//给子组件调用 重新排序上移下移
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment