Commit 910e21b4 authored by youjie's avatar youjie

no message

parent b3894c8e
......@@ -751,7 +751,8 @@
</el-tooltip>
<p v-if="StoredCustomerList&&StoredCustomerList.length" style="margin-left: 15px;">预收抵用:<span>
<el-select clearable filterable v-model='msg.DepositCustomerId' class="w135 _border_b_1"
@change="getSigningCustomerId(2)">
@change="getSigningCustomerId(2)"
:disabled="isDepositCustomer">
<el-option v-for='item in StoredCustomerList' :label='item.customerName' :value='item.customerId'
:key='item.customerId'>
</el-option>
......@@ -936,6 +937,7 @@
export default {
data() {
return {
isDepositCustomer: false,
ContractCustomer: null,
DepositCustomer: null,
CustomerIdList:[],
......@@ -2082,7 +2084,8 @@
this.msg = JSON.parse(JSON.stringify(data));
this.msg.ClientType = this.msg.ClientType == 0 ? '' : this.msg.ClientType;
this.msg.ClientID = this.msg.ClientID == 0 ? '' : this.msg.ClientID;
this.msg.DepositCustomerId = data.DepositCustomerId ? Number(data.DepositCustomerId) : ''
if (this.msg.DepositCustomerId) this.isDepositCustomer = true
if (id || id === 0) {
// if (!this.orderObj) {
// this.msg.RB_Branch_Id = this.getLocalStorage().RB_Branch_id
......
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