Commit 9fba8048 authored by 黄媛媛's avatar 黄媛媛

签证今日订单导出单据

parent 55f8ae71
......@@ -112,6 +112,7 @@
</li>
<li>
<button class="hollowFixedBtn" @click="getList()">查询</button>
<button class="hollowFixedBtn" @click="Export">团队单据导出</button>
</li>
</ul>
</div>
......@@ -234,6 +235,22 @@ export default {
}
},
methods:{
Export(){
console.log("msg.QStartDate",this.msg.QStartDate);
if(!this.msg.QStartDate || this.msg.QStartDate=="" ){
this.Error("请选择出发开始日期!")
return;
}
if(!this.msg.QEndDate || this.msg.QEndDate==""){
this.Error("请选择出发结束日期!")
return;
}
let userInfo = this.getLocalStorage();
let msg=this.msg;
msg.EmployeeId = userInfo.EmployeeId;
var fileName = "签证今日订单.xls";
this.GetLocalFile("Financial_post_DownLoadVisaPaymentFinance", msg, fileName);
},
getCompanyList(){ //获取公司列表
let getCompanyMsg ={ // 公司
RB_Group_Id:'0',
......
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