|
@@ -31,30 +31,21 @@
|
|
|
<el-form-item label="客户编号" prop="customerNo"
|
|
|
:rules="[
|
|
|
]">
|
|
|
- <el-input :readonly="true" v-model="inputForm.customerNo" placeholder="请填写客户编号" clearable></el-input>
|
|
|
+ <el-input :disabled="true" v-model="inputForm.customerNo" placeholder="请填写客户编号" clearable></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="统一社会信用代码" prop="uscCode"
|
|
|
:rules="[
|
|
|
]">
|
|
|
- <el-input :readonly="true" v-model="inputForm.uscCode" placeholder="请填写统一社会信用代码" clearable></el-input>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="委托方电话" prop="clientContactsPhone"
|
|
|
- :rules="[
|
|
|
- // {required: true, message: '委托方电话', trigger: 'blur'}
|
|
|
- ]">
|
|
|
- <el-input maxlength="15" :readonly="true" v-model="inputForm.clientContactsPhone" placeholder="请输入委托方电话"
|
|
|
- ></el-input>
|
|
|
+ <el-input :disabled="true" v-model="inputForm.uscCode" placeholder="请填写统一社会信用代码" clearable></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="地址" prop="address"
|
|
|
:rules="[
|
|
|
]">
|
|
|
- <el-input :readonly="true" v-model="inputForm.address" placeholder="地址" clearable></el-input>
|
|
|
+ <el-input :disabled="true" v-model="inputForm.address" placeholder="地址" clearable></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -185,7 +176,7 @@
|
|
|
:rules="[
|
|
|
{required: true, message:'请输入付款摘要', trigger:'blur'}
|
|
|
]">
|
|
|
- <el-input type="textarea" v-model="inputForm.paymentDescribe" placeholder="请输入付款摘要"
|
|
|
+ <el-input type="textarea" v-model="inputForm.paymentDescribe" placeholder="根据实际付款方式进行填写"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|