Commit 0e8bdb25 authored by 罗超's avatar 罗超

1

parent 9f5adc4d
......@@ -2562,6 +2562,9 @@
<a class="hollowFixedBtn downBtn" :href="downList">{{
$t("Airticket.Air_downloadTemplate")
}}</a>
<a class="hollowFixedBtn downBtn" :href="downListGN">
国内旅客模板下载
</a>
</template>
</div>
</div>
......@@ -5935,6 +5938,7 @@ export default {
TCID: 0,
},
downList: "",
downListGN: "",
//返回数据
currentPage: 1,
total: 0,
......@@ -6159,6 +6163,23 @@ export default {
if (res.data.resultCode == 1) {
this.downList =
this.domainManager().LocalTemplateFileDownLoadUrl + res.data.data;
} else {
this.Error(res.data.message);
}
},
(err) => {}
);
},
getDownListGN() {
let msg = {};
this.apipost(
"Guest_Post_GNOutToExcelGuest",
msg,
(res) => {
if (res.data.resultCode == 1) {
this.downListGN =
this.domainManager().LocalTemplateFileDownLoadUrl + res.data.data;
} else {
this.Error(res.data.message);
}
......@@ -8543,6 +8564,7 @@ export default {
this.getBranchList();
this.canEditUnitPrice();
this.getDownList();
this.getDownListGN();
},
};
</script>
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