Commit 2a2f9239 authored by 黄奎's avatar 黄奎

页面修改

parent 9b1acc8c
......@@ -3459,13 +3459,7 @@
<div class="RL_infoDiv">
<div>
{{ $t("ground.syige") }}:<span class="RS_blueType" style="cursor: pointer" v-if="beforeInfo.TCID > 0"
@click="
goUrlTravelControl(
'团控列表',
'TravelControlList',
beforeInfo.TCID,
beforeInfo.TCNUM
)
@click="gotoTCList(beforeInfo)
">{{ beforeInfo.TCNUM + "(" + beforeInfo.TCID + ")" }}</span>
</div>
<div class="RL_backTime">
......@@ -3481,13 +3475,7 @@
</div>
<div>
{{ $t("ground.xiayige") }}:<span class="RS_blueType" style="cursor: pointer" v-if="afterInfo.TCID > 0"
@click="
goUrlTravelControl(
'团控列表',
'TravelControlList',
afterInfo.TCID,
afterInfo.TCNUM
)
@click="gotoTCList(afterInfo)
">{{ afterInfo.TCNUM + "(" + afterInfo.TCID + ")" }}</span>
</div>
<div class="RL_backTime">
......@@ -4307,6 +4295,7 @@
date: "",
TCNUM: "",
TCID: 0,
TeamType:0,
},
NowInfo: {
DuringHoliday: "",
......@@ -4317,6 +4306,7 @@
date: "",
TCNUM: "",
TCID: 0,
TeamType:0,
},
setMsg: {
Id: 0,
......@@ -5050,9 +5040,7 @@
dom.href = obj[0].FullUrl;
dom.click();
},
goUrlTravelControl(name, path, id, tcmun) {
this.$router.push({
name: path,
query: {
......@@ -5063,7 +5051,7 @@
},
});
},
//
//跳转到团控列表
gotoTCList(item) {
var path = "TravelControlList";
if (item.TeamType == 0) {
......@@ -6306,12 +6294,14 @@
this.beforeInfo.date = "";
this.beforeInfo.TCNUM = "";
this.beforeInfo.TCID = 0;
this.beforeInfo.TeamType=0;
this.NowInfo.DuringHoliday = "";
this.NowInfo.date = "";
this.afterInfo.DuringHoliday = "无";
this.afterInfo.date = "无";
this.afterInfo.TCNUM = "";
this.afterInfo.TCID = 0;
this.afterInfo.TeamType=0;
this.LeaderInfoList.LeaderSchedule.forEach((item) => {
if (item.PositionType == 1) {
if (item.TypeId == 0) {
......@@ -6322,6 +6312,7 @@
this.beforeInfo.date = item.EndDate;
this.beforeInfo.TCNUM = item.TCNUM;
this.beforeInfo.TCID = item.TCID;
this.beforeInfo.TeamType=item.TeamType;
}
if (item.PositionType == 2) {
this.NowInfo.DuringHoliday =
......@@ -6337,6 +6328,7 @@
this.afterInfo.date = item.StartDate;
this.afterInfo.TCNUM = item.TCNUM;
this.afterInfo.TCID = item.TCID;
this.afterInfo.TeamType=item.TeamType;
} else {
this.afterInfo.DuringHoliday = "无";
this.afterInfo.date = "无";
......
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