Commit ef94aca4 authored by youjie's avatar youjie

no message

parent 9928f99e
......@@ -5,7 +5,7 @@
</style>
<template >
<div class="page_RecPayQuery" @keyup.enter="getPageList()">
<div class="page_RecPayQuery">
<div class="query-box">
<el-form class="_info_box clearfix" label-width="110px">
<el-row style="padding:15px 20px 0 0;">
......@@ -114,7 +114,7 @@
<!-- <span>
<em @click.stop="heightQueryBox=!heightQueryBox">高级查询 <i class="iconfont icon-gengduo"></i></em>
</span> -->
<button class="hollowFixedBtn" @click="getPageList()">{{$t('pub.searchBtn')}}</button>
<button class="hollowFixedBtn" @click="resetPageIndex()">{{$t('pub.searchBtn')}}</button>
<button class="normalBtn" @click="DocumentMaking">制单</button>
<button class="normalBtn" @click="method5()">导出</button>
</li>
......@@ -160,6 +160,7 @@
:data="DataList"
tooltip-effect="dark"
style="width: 100%"
row-key="FinanceId"
@selection-change="handleSelectionChange"
>
<el-table-column
......@@ -610,6 +611,12 @@ export default {
query
});
},
resetPageIndex(){ // 重置页码
this.msg.pageIndex=1;
this.currentPage = 1;
this.getPageList()
},
getPageList(){ // 获取列表数据
this.loading= true;
this.apipost('Financial_post_GetFinanceHandFeeList',this.msg,res=>{
......
......@@ -1029,7 +1029,7 @@ export default {
resetPageIndex(){ // 重置页码
this.msg.pageIndex=1;
this.currentPage = 1;
this.$refs.multipleTable.clearSelection();
this.getPageList()
},
getMoney(){
......@@ -1068,6 +1068,7 @@ export default {
type: "warning"
})
.then(() => {
this.$refs.multipleTable.clearSelection();
this.$router.push({
name: 'ChoiceAddFinancialDocuments',
query: {
......
......@@ -29,6 +29,7 @@
<table border="1" class="czBillModule _border_color_b Receipt_table" bordercolor="#c94052" style="border-collapse:collapse;width: 100%;" v-loading='loading'>
<tr>
<th>单号</th>
<!-- <th>类型</th> -->
<th>公司</th>
<th>费用类型</th>
<th>币种</th>
......@@ -40,6 +41,25 @@
</tr>
<tr class="_color_b" v-for="(item,index) in DataList" :key="index">
<td class="hover_text" @click="goDetail(item.FrID)" ><span>{{item.FrID}}</span></td>
<!--
<td>
<span v-if="item.Type==2" style="display: inline-block;
padding: 2px 8px;
color: white;
background-color: #E95252;
line-height: 16px;
border-radius: 4px;">
支出
</span>
<span v-if="item.Type==1" style="display: inline-block;
padding: 2px 8px;
color: white;
background-color: #2BB87C;
line-height: 16px;
border-radius: 4px;">
收入
</span>
</td> -->
<td>{{item.BranchName}}</td>
<td>{{item.CostTypeName}}</td>
<td>{{item.CurrencyName}}</td>
......
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