Commit f7138127 authored by zhengke's avatar zhengke

增加行程预览

parent 09791ce0
......@@ -433,7 +433,8 @@
<tr>
<td colspan="22" style="text-align: left!important;padding:0 20px;">
<div class="link">
<p @click="goUrlT('productQuery',item.TCNUMS,'产品查询')" style="padding-top:4px;">{{item.Titles}}</p>
<!-- <p @click="goUrlT('productQuery',item.TCNUMS,'产品查询')" style="padding-top:4px;">{{item.Titles}}</p> -->
<p @click="getJourney(item.TCID,item.Titles)" style="padding-top:4px;">{{item.Titles}}</p>
<div v-if="outItem.StaticsReportList[index].DMCNum && outItem.StaticsReportList[index].DMCNum!=''"
class="colorE95252" style="padding-top:5px;">地接备注团号:{{outItem.StaticsReportList[index].DMCNum}}
</div>
......@@ -468,11 +469,16 @@
</tripDownLoadCommon>
</el-dialog>
<el-dialog custom-class='ComTeamPlan_info_box' :title="tripTitle" :visible.sync="teamVisible" center>
<commonTeamInfo ref="comTeam"></commonTeamInfo>
</el-dialog>
</div>
</template>
<script>
import tripDownLoadCommon from "../../commonPage/TripDownLoadCommon.vue";
import commonHotelInfo from "../../commonPage/commonHotelInfo.vue";
import commonTeamInfo from "../../commonPage/commonTeamInfo.vue";
export default {
data() {
return {
......@@ -480,6 +486,8 @@
currentPage: 1,
total: 0,
travelControlTripLayerShow: false,
tripTitle:'',
teamVisible: false,
msg: {
StartDate: '',
EndDate: '',
......@@ -583,9 +591,18 @@
},
components: {
tripDownLoadCommon,
commonHotelInfo
commonHotelInfo,
commonTeamInfo
},
methods: {
getJourney(id, title) {
var that = this;
this.tripTitle = title;
this.$nextTick(() => {
that.$refs.comTeam.GetTrip(id);
});
that.teamVisible = true;
},
openChart(obj) {
this.MsgBus.$emit('openChat', {
account: obj.CreateByAccount,
......
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