Commit e7e2b362 authored by 黄媛媛's avatar 黄媛媛

update

parent 85968fdd
......@@ -103,8 +103,8 @@
<td @click="goUrl(subItem)" style="cursor: pointer">{{subItem.Income}}</td>
<td @click="goUrl(subItem)" style="cursor: pointer">{{subItem.AgoOutCome}}</td>
<td @click="goUrl(subItem)" style="cursor: pointer">{{subItem.OutCome}}</td>
<td style="cursor: pointer">{{subItem.ReceiptWBMoney}}</td>
<td style="cursor: pointer">{{subItem.ReceiptMoney}}</td>
<td @click="goUrlNew(subItem)" style="cursor: pointer">{{subItem.ReceiptWBMoney}}</td>
<td @click="goUrlNew(subItem)" style="cursor: pointer">{{subItem.ReceiptMoney}}</td>
<td @click="goUrl(subItem)" style="cursor: pointer">{{subItem.AgoIncom}}</td>
<td @click="goUrl(subItem)" style="cursor: pointer">{{subItem.NowIncome}}</td>
<!-- <a style="cursor:pointer;" @click="goUrl('CashAccDetail',subItem.BankID,subItem.TradeWay)"> -->
......@@ -195,7 +195,20 @@ export default {
let userInfo=this.getLocalStorage();
this.getList();
this.msg.EmployeeId= userInfo.EmployeeId;
},methods:{
},
methods:{
goUrlNew(obj){
this.$router.push({
name: "DocumentStatistics",
query:{
"AccountId": obj.BankID,
"StartTime": this.msg.sTradeDate,
"EndTime": this.msg.eTradeDate,
"blank": 'y',
"tab": '财务收据'
}
})
},
goUrl(obj) {
this.$router.push({
name: "CashAccDetail",
......
......@@ -126,7 +126,6 @@
}
// 财务收据
else if(this.$route.query.czmsg){
console.log("ffff")
let Handmsg=this.$route.query.czmsg;
this.$router.push({ name: "addReceivablesDocuments",query:{"Handmsg":Handmsg,"tradeWay":this.tradeWay,"platformAccount":this.platformAccount,"id":id,"Name":Name,"Type":Type,"orderObj":this.orderObj,'path':this.$route.query.path,'IsUploadPic':IsUploadPic,'Cmd':this.$route.query.Cmd,'companyID':this.$route.query.companyID,blank:'y',tab:'新增收款单'}})
......
......@@ -82,7 +82,7 @@
<th>收据日期</th>
<th>财务单据</th>
<th>单据状态</th>
<th>是否审核</th>
<th>出纳审核</th>
<th>备注</th>
<th>操作人/时间</th>
<th>操作</th>
......@@ -118,7 +118,7 @@
</td>
</tr>
<tr v-if="dataList.length==0">
<td colspan="12" align="center">暂无数据</td>
<td colspan="15" align="center">暂无数据</td>
</tr>
</table>
<el-pagination background @current-change="handleCurrentChange"
......@@ -234,6 +234,7 @@ export default {
Type:3,
StartTime:'',
EndTime:'',
},
dataList:[],
loading:false,
......@@ -277,6 +278,18 @@ export default {
let userInfo = this.getLocalStorage();
this.form.groupId=userInfo.RB_Group_id;
this.EmployeeId=userInfo.EmployeeId;
if(this.$route.query.Id){
this.obj.Id=Number(this.$route.query.Id);
}
if(this.$route.query.AccountId){
this.obj.AccountId=Number(this.$route.query.AccountId);
}
if(this.$route.query.StartTime){
this.dateList[0]=this.$route.query.StartTime;
this.dateList[1]=this.$route.query.EndTime;
}
},
mounted(){
this.getList();
......
......@@ -1431,7 +1431,7 @@
<th>收据日期</th>
<th>财务单据</th>
<th>单据状态</th>
<th>是否审核</th>
<th>出纳审核</th>
<th>备注</th>
<th>操作人/时间</th>
<th>操作</th>
......
......@@ -861,7 +861,7 @@
</tr>
<tr>
<th>ID</th>
<th>团号</th>
<th width="150px">团号</th>
<th>账户类型</th>
<th>账户名称</th>
<th>收据金额</th>
......
......@@ -349,11 +349,6 @@
},
},
mounted(){
if(this.$route.query.BankType){
this.msg.BankType=Number(this.$route.query.BankType)
this.getBank(this.msg.BankType)
}
if(this.$route.query.StartTime){
this.productionDate[0]=this.$route.query.StartTime;
this.productionDate[1]=this.$route.query.EndTime;
......@@ -491,6 +486,10 @@
this.apipost('bankaccount_post_GetList',{TypeId:'0'},res=>{
if(res.data.resultCode==1){
this.TypeList1 = res.data.data;
if(this.$route.query.BankType){
this.msg.BankType=Number(this.$route.query.BankType)
this.getBank(this.msg.BankType)
}
}else{
}
......
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