Commit 351f9898 authored by liudong1993's avatar liudong1993

1

parent 96f92e07
<style scoped>
/deep/.el-table th.el-table__cell {
background-color: #E6E6E6;
}
</style>
<template>
<div class="page_fnDm page_RecPayQuery" @keyup.enter="resetPageIndex()">
<div class="query-box" style="margin-bottom: 0px;">
<el-form class="_info_box clearfix" label-width="110px">
<el-row style="padding:15px 20px 0 0;">
<el-col :span="5">
<el-form-item label="出团月份">
<el-date-picker class="h34" v-model="missionDate" @change="timeAdd()" type="monthrange" value-format="yyyy-MM">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
</el-form>
<ul class="clearfix">
<li class="hight_query">
<button class="hollowFixedBtn" @click="resetPageIndex()">{{$t('pub.searchBtn')}}</button>
<!-- <button class="normalBtn" @click="method5()">{{$t('visa.v_daochu')}}</button> -->
</li>
</ul>
</div>
<div class="_fnDm_content" v-loading='loading'>
<el-table ref="multipleTable" :data="DataList" tooltip-effect="dark" style="width: 100%" row-key="FrID">
<el-table-column prop="StartDate" label="月份" width="100">
<template slot-scope="scope">
{{scope.row.StartDate}}
</template>
</el-table-column>
<el-table-column prop="AccountAlias" label="平台别名" width="260" show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.AccountAlias}}
</template>
</el-table-column>
<el-table-column prop="CardNum" label="卡号" width="260" show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.CardNum}}
</template>
</el-table-column>
<el-table-column prop="TotalMoney" label="累计付款" width="260">
<template slot-scope="scope">
{{scope.row.TotalMoney}}
</template>
</el-table-column>
<el-table-column prop="InvoiceMoney" label="发票金额" width="260">
<template slot-scope="scope">
{{scope.row.InvoiceMoney}}
</template>
</el-table-column>
<el-table-column prop="ItineraryMoney" label="行程单金额" width="260">
<template slot-scope="scope">
{{scope.row.ItineraryMoney}}
</template>
</el-table-column>
<el-table-column prop="SurplusMoney" label="差额" width="260">
<template slot-scope="scope">
{{scope.row.SurplusMoney}}
</template>
</el-table-column>
<el-table-column prop="" label="操作" show-overflow-tooltip>
<template slot-scope="scope">
<i class="el-icon-edit" style="cursor: pointer;" @click="showEdit(scope.row)"></i>
</template>
</el-table-column>
</el-table>
<div style="padding-bottom:15px">
<el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChanges"
layout="total,sizes,prev, pager, next, jumper" :page-sizes="[100,200,300,400,500]" :page-size="msg.pageSize"
:current-page.sync="currentPage" :total='total'>
</el-pagination>
</div>
</div>
<el-dialog :title="addMsg.AccountAlias" :visible.sync="dialogFormVisible" width="400px" :close-on-click-modal="false">
<el-form :model="addMsg">
<el-form-item label="发票金额" label-width="120px">
<el-input v-model="addMsg.InvoiceMoney" autocomplete="off"></el-input>
</el-form-item>
<el-form-item label="行程单额" label-width="120px">
<el-input v-model="addMsg.ItineraryMoney" autocomplete="off"></el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="dialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="submitMoney()">确 定</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import Vue from 'vue'
export default {
data() {
return {
msg: {
pageIndex: 1,
pageSize: 100,
StartDate: '',
EndDate: '',
EmployeeId: '',
},
DataList: [],
missionDate: [],
loading: false,
currentPage: 1,
total: 0,
dialogFormVisible:false,
addMsg:{
AccountAlias:'',
StartDate:'',
ClientAccountId:0,
InvoiceMoney:0,
ItineraryMoney:0
}
}
},
created() {
if (this.$route.query.pageIndex) {
this.msg.pageIndex = this.$route.query.pageIndex;
}
var now = new Date();
let sDate = now.getFullYear()+'-'+ now.getMonth();
let eDate = sDate;
this.missionDate = [sDate, eDate];
this.msg.StartDate = sDate;
this.msg.EndDate = eDate;
},
mounted() {
let userInfo = this.getLocalStorage();
this.msg.EmployeeId = userInfo.EmployeeId;
this.getPageList();
},
methods: {
// 单据详情
openDetails(FrID) {
let query = {
id: FrID,
blank: "y",
};
this.$router.push({
path: "/FinancialDocumentsDetail",
query
});
},
handleSizeChange(val) {
this.msg.pageSize = val
this.msg.pageIndex = 1;
this.getPageList();
},
handleCurrentChanges(val) {
this.msg.pageIndex = val;
this.getPageList();
},
getPageList() { // 获取列表数据
this.loading = true;
this.apipost('Financial_post_GetAirTravelItineraryPageList', this.msg, res => {
if (res.data.resultCode == 1) {
this.total = res.data.data.count;
if (this.total == 0) {
this.DataList = [];
} else {
this.DataList = res.data.data.pageData;
}
this.loading = false;
} else {
this.loading = false;
this.$message.error(res.data.message);
}
this.currentPage = parseInt(this.msg.pageIndex);
}, err => {})
},
method5: function () {
if (!this.msg.CreateBy) this.msg.CreateBy = 0;
let time = this.getBeforeDate(0, new Date().Format("yyyy-MM-dd"))
var fileName = `凭证编号${time}.xls`;
this.GetLocalFile("Financial_post_GetAccountVoucherNumberListToExcel", this.msg, fileName);
},
timeAdd() { // 日期格式
if (!this.missionDate) {
this.msg.StartDate = '';
this.msg.EndDate = '';
return
}
this.msg.StartDate = this.missionDate[0];
this.msg.EndDate = this.missionDate[1];
},
handleCurrentChange(val) { //翻页
this.msg.pageIndex = val;
this.getPageList();
},
resetPageIndex() { // 重置页码
this.msg.pageIndex = 1;
this.currentPage = 1;
this.getPageList()
},
showEdit(row){
this.addMsg.AccountAlias =row.AccountAlias;
this.addMsg.StartDate=row.StartDate;
this.addMsg.ClientAccountId=row.ClientAccountId;
this.addMsg.InvoiceMoney=row.InvoiceMoney;
this.addMsg.ItineraryMoney=row.ItineraryMoney;
this.dialogFormVisible=true;
},
submitMoney(){
this.apipost(
"Financial_post_SetAirTravelItinerary",
this.addMsg,
res => {
if (res.data.resultCode == 1) {
this.$message.success(res.data.message);
this.dialogFormVisible = false;
this.getPageList();
} else {
this.Error(res.data.message);
}
this.dialogFormVisible = false
},
err => {}
);
}
}
}
</script>
......@@ -4330,6 +4330,14 @@ export default {
title: '凭证编号查询'
},
},
{ //财务 团队发票/行程单维护
path: '/TravelItinerary',
name: 'TravelItinerary',
component: resolve => require(['@/components/FinancialModule/MonthlyCostStatement/TravelItinerary'], resolve),
meta: {
title: '机票行程单'
},
},
{ //财务 财务单据 帮收帮付公司
path: '/HelpBranch',
name: 'HelpBranch',
......
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