|
@@ -17,23 +17,27 @@
|
|
:wrapper-col="formItemLayout.wrapperCol">
|
|
:wrapper-col="formItemLayout.wrapperCol">
|
|
<a-row>
|
|
<a-row>
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
- <a-form-model-item label="收款日期" prop="receiptDate">
|
|
|
|
|
|
+ <a-form-model-item style="margin-bottom:5px;" label="收款日期" prop="receiptDate">
|
|
<a-date-picker inputReadOnly style="width:100%" format="YYYY-MM-DD" v-model="form.receiptDate" placeholder="请选择收款日期" />
|
|
<a-date-picker inputReadOnly style="width:100%" format="YYYY-MM-DD" v-model="form.receiptDate" placeholder="请选择收款日期" />
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
- <a-form-model-item label="客户名称" prop="dealerSn">
|
|
|
|
|
|
+ <a-form-model-item style="margin-bottom:5px;" label="客户名称" prop="dealerSn">
|
|
<dealerSubareaScopeList ref="settleClientName" @change="custChange" />
|
|
<dealerSubareaScopeList ref="settleClientName" @change="custChange" />
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ <a-row>
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
<a-form-model-item style="margin-bottom:5px;" label="客户编码">
|
|
<a-form-model-item style="margin-bottom:5px;" label="客户编码">
|
|
- <a-input :maxLength="100" placeholder="请输入客户编码" v-model="form.dealerCode"></a-input>
|
|
|
|
|
|
+ {{ form.dealerCode||'--' }}
|
|
|
|
+ <!-- <a-input :maxLength="100" placeholder="请输入客户编码" v-model="form.dealerCode"></a-input> -->
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
<a-form-model-item style="margin-bottom:5px;" label="营业执照名称">
|
|
<a-form-model-item style="margin-bottom:5px;" label="营业执照名称">
|
|
- <a-input :maxLength="100" placeholder="请输入营业执照名称" v-model="form.licenseName"></a-input>
|
|
|
|
|
|
+ {{ form.licenseName||'--' }}
|
|
|
|
+ <!-- <a-input :maxLength="100" placeholder="请输入营业执照名称" v-model="form.licenseName"></a-input> -->
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
@@ -60,13 +64,13 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
<a-form-model-item style="margin-bottom:5px;" label="使用授信">
|
|
<a-form-model-item style="margin-bottom:5px;" label="使用授信">
|
|
- <a-checkbox v-model="form.useCreditFlag">是</a-checkbox>
|
|
|
|
|
|
+ <a-checkbox v-model="form.useCreditFlag" @change="form.detailItemUseList=[]">是</a-checkbox>
|
|
<span v-if="form.useCreditFlag">合计: {{ useTotalAmount||'--' }}</span>
|
|
<span v-if="form.useCreditFlag">合计: {{ useTotalAmount||'--' }}</span>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :span="12">
|
|
<a-col :span="12">
|
|
<a-form-model-item style="margin-bottom:5px;" label="授信还款">
|
|
<a-form-model-item style="margin-bottom:5px;" label="授信还款">
|
|
- <a-checkbox v-model="form.payCreditFlag">是</a-checkbox>
|
|
|
|
|
|
+ <a-checkbox v-model="form.payCreditFlag" @change="form.detailItemPayList=[]">是</a-checkbox>
|
|
<span v-if="form.payCreditFlag">合计: {{ payTotalAmount||'--' }}</span>
|
|
<span v-if="form.payCreditFlag">合计: {{ payTotalAmount||'--' }}</span>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-col>
|