Commit f933a529 authored by youjie's avatar youjie

no message

parent 1e475111
...@@ -507,7 +507,7 @@ ...@@ -507,7 +507,7 @@
</el-input> </el-input>
</td> </td>
</tr> </tr>
<tr v-if="msg.detailList.length<2"> <tr v-if="msg.detailList&&msg.detailList.length<2">
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
...@@ -517,7 +517,7 @@ ...@@ -517,7 +517,7 @@
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
</tr> </tr>
<tr v-if="msg.detailList.length<3"> <tr v-if="msg.detailList&&msg.detailList.length<3">
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
...@@ -527,7 +527,7 @@ ...@@ -527,7 +527,7 @@
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
</tr> </tr>
<tr v-if="msg.detailList.length<4"> <tr v-if="msg.detailList&&msg.detailList.length<4">
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
<td height="26px"></td> <td height="26px"></td>
...@@ -1319,7 +1319,7 @@ ...@@ -1319,7 +1319,7 @@
this.apipost('AccountType_post_GetList', this.queryAccMsg, res => { this.apipost('AccountType_post_GetList', this.queryAccMsg, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let AccList = res.data.data; let AccList = res.data.data;
let newAccList = []; let newAccList = []
this.GetDetail.walist.forEach(x => { this.GetDetail.walist.forEach(x => {
if (x.Type === 1) { if (x.Type === 1) {
AccList.forEach(y => { AccList.forEach(y => {
...@@ -1772,7 +1772,7 @@ ...@@ -1772,7 +1772,7 @@
this.msg.SigningCustomerId = data.SigningCustomerId ? Number(data.SigningCustomerId) : '' this.msg.SigningCustomerId = data.SigningCustomerId ? Number(data.SigningCustomerId) : ''
this.msg.DepositCustomerId = data.DepositCustomerId ? Number(data.DepositCustomerId) : '' this.msg.DepositCustomerId = data.DepositCustomerId ? Number(data.DepositCustomerId) : ''
if (this.msg.DepositCustomerId) this.isDepositCustomer = true if (this.msg.DepositCustomerId) this.isDepositCustomer = true
if (this.msg.SigningCustomerId||this.msg.DepositCustomerId) this.$set(this.orderObj, 'isPrestore', true) if (this.orderObj&&(this.msg.SigningCustomerId||this.msg.DepositCustomerId)) this.$set(this.orderObj, 'isPrestore', true)
let obj = { let obj = {
AccountId: '', AccountId: '',
CurrencyId: '', CurrencyId: '',
......
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