Commit 2e949c99 authored by youjie's avatar youjie

no message

parent 8fdae4db
...@@ -717,15 +717,25 @@ ...@@ -717,15 +717,25 @@
<div class="_explain"> <div class="_explain">
<p>{{$t('fnc.fjshuoming')}}</p> <p>{{$t('fnc.fjshuoming')}}</p>
<div> <div>
<p> <p>
{{$t('fnc.fygsbumen')}}:<span> {{$t('fnc.fygsbumen')}}:<span>
<el-select filterable v-model='msg.RB_Depart_Id' class="w135 _border_b_1"> <el-select filterable v-model='msg.RB_Depart_Id' class="w135 _border_b_1">
<el-option v-for='item in departmentList' :label='item.DepartmentName' :value='item.DepartmentID' <el-option v-for='item in departmentList' :label='item.DepartmentName' :value='item.DepartmentID'
:key='item.DepartmentID'> :key='item.DepartmentID'>
</el-option> </el-option>
</el-select> </el-select>
</span> </span>
</p> </p>
<p v-if="StoredCustomerList&&StoredCustomerList.length" style="margin-left: 15px;">预收抵用:<span>
<el-select clearable v-model='msg.DepositCustomerId' class="w135 _border_b_1"
@change="getSigningCustomerId(2)"
:disabled="isDepositCustomer">
<el-option v-for='item in StoredCustomerList' :label='item.customerName' :value='item.customerId'
:key='item.customerId'>
</el-option>
</el-select>
</span>
</p>
<template v-if="GetDetail.FrID!=0"> <template v-if="GetDetail.FrID!=0">
<p v-if="GetDetail.OrderSource==9&&GetDetail.SourceID>0">{{$t("fnc.gnpiaowu")}}<span <p v-if="GetDetail.OrderSource==9&&GetDetail.SourceID>0">{{$t("fnc.gnpiaowu")}}<span
class="_jump_page _font_bold" class="_jump_page _font_bold"
...@@ -749,16 +759,7 @@ ...@@ -749,16 +759,7 @@
<el-switch v-if="isHandFee" v-model="is_HandFee" @change="getHandFee"> <el-switch v-if="isHandFee" v-model="is_HandFee" @change="getHandFee">
</el-switch> </el-switch>
</el-tooltip> </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)"
:disabled="isDepositCustomer">
<el-option v-for='item in StoredCustomerList' :label='item.customerName' :value='item.customerId'
:key='item.customerId'>
</el-option>
</el-select>
</span>
</p>
</div> </div>
<template v-if="isHandFee&&is_HandFee"> <template v-if="isHandFee&&is_HandFee">
<div> <div>
...@@ -1112,9 +1113,9 @@ ...@@ -1112,9 +1113,9 @@
// this.msg.DepositCustomerId = '' // this.msg.DepositCustomerId = ''
// this.DepositCustomer = null // this.DepositCustomer = null
} else if (type == 2) { } else if (type == 2) {
// if (!this.msg.DepositCustomerId) { if (!this.msg.DepositCustomerId) {
// this.DepositCustomer = null this.DepositCustomer = null
// } }
this.StoredCustomerList.forEach(item => { this.StoredCustomerList.forEach(item => {
if (item.customerId == this.msg.DepositCustomerId) { if (item.customerId == this.msg.DepositCustomerId) {
this.DepositCustomer = item this.DepositCustomer = item
......
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