Commit f033497f authored by 黄奎's avatar 黄奎

页面修改

parent 5ccc06cc
...@@ -190,9 +190,9 @@ ...@@ -190,9 +190,9 @@
<template v-if="activeName==4"> <template v-if="activeName==4">
<button class="save-Btn" style="float:right;" @click="addTraffic()">新增交通</button> <button class="save-Btn" style="float:right;" @click="addTraffic()">新增交通</button>
<div v-for="(item,index) in addMsg.TrafficInfo" :key="index"> <div v-for="(item,index) in addMsg.TrafficInfo" :key="index">
<el-input type="text" v-model="item.TTitle" class="w400" style="margin-bottom:10px;" placeholder="大标题"> <el-input type="text" v-model="item.TTitle" class="w400" style="margin-bottom:10px;" placeholder="地点名称">
</el-input> </el-input>
<el-input type="text" v-model="item.TSubTitle" class="w400" placeholder="小标题"></el-input> <el-input type="text" v-model="item.TSubTitle" class="w400" placeholder="地点介绍"></el-input>
</div> </div>
</template> </template>
</div> </div>
...@@ -511,6 +511,12 @@ ...@@ -511,6 +511,12 @@
if (tempMsg.ServiceItemList && tempMsg.ServiceItemList.length > 0) { if (tempMsg.ServiceItemList && tempMsg.ServiceItemList.length > 0) {
this.chooseObj.ServiceItems = tempMsg.ServiceItemList; this.chooseObj.ServiceItems = tempMsg.ServiceItemList;
} }
if (tempMsg.TrafficList && tempMsg.TrafficList.length > 0) {
this.addMsg.TrafficInfo = tempMsg.TrafficList;
}
if (tempMsg.TagsList && tempMsg.TagsList.length > 0) {
this.TagsList = tempMsg.TagsList;
}
if (tempMsg.HotelInfo) { if (tempMsg.HotelInfo) {
if (tempMsg.HotelInfo.DecorationTime) { if (tempMsg.HotelInfo.DecorationTime) {
_self.addMsg.HotelInfo.DecorationTime = tempMsg.HotelInfo.DecorationTime; _self.addMsg.HotelInfo.DecorationTime = tempMsg.HotelInfo.DecorationTime;
......
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