Commit 4de0ab67 authored by 黄媛媛's avatar 黄媛媛

update

parent d93666c6
...@@ -95,6 +95,44 @@ ...@@ -95,6 +95,44 @@
v-if="queryCommonData.total>6" v-if="queryCommonData.total>6"
></el-pagination> ></el-pagination>
</div> </div>
<!-- 未认款 -->
<div class="orders" v-loading="RLoading">
<div class="title">未认款</div>
<i class="more iconfont icon-gengduo1" title="查看所有未认款" @click="openAllMan"></i>
<div class="per-tab">
<table>
<thead>
<th>户名</th>
<th>开户行</th>
<th>账号</th>
<th>交易时间</th>
<th></th>
<th></th>
<th>对方户名</th>
</thead>
<tbody>
<tr v-for="(item, index) in rList" :key="index">
<td class="blue bold">{{item.AccountName}}</td>
<td class="bold">{{item.OpeningBank}}</td>
<td>{{item.BackNo}}</td>
<td class="bold">{{item.TradeDate}}</td>
<td class="bold org">{{item.Income}}</td>
<td class="bold red">{{item.Refund}}</td>
<td class="bold red">{{item.Remitter}}</td>
<!-- <td class="op" @click="openOrders(item.orderId)">
<i title="查看" class="el-icon-view"></i>
</td> -->
</tr>
<tr v-if="!rList || rList.length==0">
<td
colspan="8"
style="color:gray;border:none;padding:50px 0;text-align:center"
>暂无数据</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="first"> <div class="first">
<div class="pingtai"> <div class="pingtai">
<div class="title">成交平台占比</div> <div class="title">成交平台占比</div>
...@@ -105,7 +143,7 @@ ...@@ -105,7 +143,7 @@
<cloud :result="result.cloudStorageList"></cloud> <cloud :result="result.cloudStorageList"></cloud>
</div> </div>
</div> </div>
<div class="first"> <!-- <div class="first">
<div class="imbox"> <div class="imbox">
<div class="title">近期消息</div> <div class="title">近期消息</div>
<imbox></imbox> <imbox></imbox>
...@@ -127,14 +165,13 @@ ...@@ -127,14 +165,13 @@
<gonggao v-show="choseNoticeType==0"></gonggao> <gonggao v-show="choseNoticeType==0"></gonggao>
<notice v-show="choseNoticeType==1"></notice> <notice v-show="choseNoticeType==1"></notice>
</div> </div>
</div> </div> -->
</div> </div>
<div class="r-box"> <div class="r-box">
<div class="sell"> <div class="sell">
<div class="title">本周销冠</div> <div class="title">本周销冠</div>
<i class="more iconfont icon-gengduo1 white" title="查看往期排行"></i> <i class="more iconfont icon-gengduo1 white" title="查看往期排行"></i>
<sell :champion="result.orderRankList"></sell> <sell :champion="result.orderRankList"></sell>
<!-- // -->
</div> </div>
<div class="todayOpera"> <div class="todayOpera">
<div class="title">今日操作</div> <div class="title">今日操作</div>
...@@ -182,6 +219,8 @@ export default { ...@@ -182,6 +219,8 @@ export default {
result: null, result: null,
orders: [], orders: [],
pageLoading: false, pageLoading: false,
RLoading:false,
}; };
}, },
...@@ -202,8 +241,39 @@ export default { ...@@ -202,8 +241,39 @@ export default {
this.zoomW = (document.documentElement.clientWidth / 1920).toFixed(2); this.zoomW = (document.documentElement.clientWidth / 1920).toFixed(2);
this.init(); this.init();
this.queryOrder(); this.queryOrder();
this.getList();
}, },
methods: { methods: {
openAllMan(id) {
const { href } = this.$router.resolve({ path: "/Manfunds" });
window.open(href, "_blank");
},
getList(){
let msg={
pageIndex:1,
pageSize:6,
StartTime:"",
EndTime:"",
BankAccountId:"",
Remitter:"",
SIncome:"",
EIncome:"",
SRefund:"",
ERefund:"",
AccountName:"",
Type:-1,
};
this.RLoading=true;
this.apipost('Financial_post_GetFinanceRemittanceClaimPageList', msg, res => {
this.RLoading=false;
console.log("res",res)
if(res.data.resultCode == 1) {
this.rList = res.data.data.pageData;
} else {
this.Error(res.data.message);
}
}, err => {})
},
handleCurrentChange(index) { handleCurrentChange(index) {
this.queryCommonData.pageIndex = index; this.queryCommonData.pageIndex = index;
this.queryOrder(); this.queryOrder();
......
This diff is collapsed.
This diff is collapsed.
...@@ -961,6 +961,23 @@ export default { ...@@ -961,6 +961,23 @@ export default {
title: '历史汇率' title: '历史汇率'
}, },
}, },
{
path: '/Manfunds', //未认款管理
name: 'Manfunds',
component: resolve => require(['@/components/systemManagement/Manfunds'], resolve),
meta: {
title: '未认款管理'
},
},
{
path: '/Maninfo', //未认款信息
name: 'Maninfo',
component: resolve => require(['@/components/systemManagement/Maninfo'], resolve),
meta: {
title: '未认款信息'
},
},
{ {
path: '/transportCostsManagement', //联运成本管理 path: '/transportCostsManagement', //联运成本管理
name: 'transportCostsManagement', name: 'transportCostsManagement',
......
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