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

1

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