Commit abfdd2f3 authored by liudong1993's avatar liudong1993

1

parent 17318a6a
...@@ -173,7 +173,8 @@ ...@@ -173,7 +173,8 @@
</el-row> </el-row>
</el-form> </el-form>
<div> <div>
<span>注:和工与和中信需每日维护银行流水得到期末余额,其他账户则根据财务单据自动计算期末余额</span> <!-- <span>注:和工与和中信需每日维护银行流水得到期末余额,其他账户则根据财务单据自动计算期末余额</span> -->
<span>注:均根据填入的银行流水计算得到期末余额</span>
</div> </div>
<ul> <ul>
<li> <li>
...@@ -206,7 +207,8 @@ ...@@ -206,7 +207,8 @@
:key="index" :key="index"
align="center"> align="center">
<template #header> <template #header>
<div style="cursor: pointer;" @click="getTimeObj(item)">{{ String(item.StartDate) }} <i v-if="msg.BankType==1&&(msg.BankId==1||msg.BankId==35)" style="color: #33B3FF" class="el-icon-edit"></i> </div> <!-- <div style="cursor: pointer;" @click="getTimeObj(item)">{{ String(item.StartDate) }} <i v-if="msg.BankType==1&&(msg.BankId==1||msg.BankId==35)" style="color: #33B3FF" class="el-icon-edit"></i> </div> -->
<div style="cursor: pointer;" @click="getTimeObj(item)">{{ String(item.StartDate) }} <i style="color: #33B3FF" class="el-icon-edit"></i> </div>
</template> </template>
<el-table-column style="position: relative;" :label="String(item.StartBalance)" align="center"> <el-table-column style="position: relative;" :label="String(item.StartBalance)" align="center">
<el-table-column prop="" :label="$t('objFill.v103.yinhangshouru')" width="120" align="center"> <el-table-column prop="" :label="$t('objFill.v103.yinhangshouru')" width="120" align="center">
...@@ -308,6 +310,7 @@ export default { ...@@ -308,6 +310,7 @@ export default {
isShowBankSta: false, isShowBankSta: false,
BankStaObj:{ BankStaObj:{
BankId: 0,//银行ID BankId: 0,//银行ID
BankType: 1,
Date: '',// 日期 Date: '',// 日期
StartBalance: '',// 期初余额 StartBalance: '',// 期初余额
Image: '', Image: '',
...@@ -373,6 +376,7 @@ export default { ...@@ -373,6 +376,7 @@ export default {
this.BankStaObj = { this.BankStaObj = {
Id: 0, Id: 0,
BankId: this.msg.BankId, BankId: this.msg.BankId,
BankType: this.msg.BankType,
Date: '', Date: '',
StartBalance: 0, StartBalance: 0,
Image: '', Image: '',
...@@ -392,10 +396,11 @@ export default { ...@@ -392,10 +396,11 @@ export default {
this.isShowBankSta = true this.isShowBankSta = true
}, },
getTimeObj(item){ getTimeObj(item){
if(!(this.msg.BankType==1&&(this.msg.BankId==1||this.msg.BankId==35))){return;} // if(!(this.msg.BankType==1&&(this.msg.BankId==1||this.msg.BankId==35))){return;}
this.BankStaObj = { this.BankStaObj = {
Id: 1, Id: 1,
BankId: this.msg.BankId, BankId: this.msg.BankId,
BankType: this.msg.BankType,
Date: item.StartDate, Date: item.StartDate,
StartBalance: item.StartBalance, StartBalance: item.StartBalance,
Image: '', Image: '',
......
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