Commit f7138127 authored by zhengke's avatar zhengke

增加行程预览

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