|
@ -18,46 +18,46 @@ |
|
|
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|
|
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formadd"> |
|
|
<el-row style="border-top: 1px solid #E0E3EB"> |
|
|
<el-row style="border-top: 1px solid #E0E3EB"> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<span>开票名称</span> |
|
|
<span><span class="icon">*</span>开票名称</span> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="20"> |
|
|
<el-col :span="20"> |
|
|
<el-form-item><el-input v-model="formobj.name" clearable placeholder="" style="width: 40%"></el-input></el-form-item> |
|
|
<el-form-item prop="name"><el-input v-model="formobj.name" clearable placeholder="" style="width: 40%"></el-input></el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
<el-row> |
|
|
<el-row> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<span>纳税人识别号</span> |
|
|
<span><span class="icon">*</span>纳税人识别号</span> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="20"> |
|
|
<el-col :span="20"> |
|
|
<el-form-item><el-input v-model="formobj.taxpayerNo" clearable placeholder="" style="width: 40%"></el-input></el-form-item> |
|
|
<el-form-item prop="taxpayerNo"><el-input v-model="formobj.taxpayerNo" clearable placeholder="" style="width: 40%"></el-input></el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
<el-row> |
|
|
<el-row> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<span>地址</span> |
|
|
<span><span class="icon">*</span>地址</span> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8"> |
|
|
<el-col :span="8"> |
|
|
<el-form-item><el-input v-model="formobj.address" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
<el-form-item prop="address"><el-input v-model="formobj.address" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<span>电话</span> |
|
|
<span><span class="icon">*</span>电话</span> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8"> |
|
|
<el-col :span="8"> |
|
|
<el-form-item><el-input v-model="formobj.phone" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
<el-form-item prop="phone"><el-input v-model="formobj.phone" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
<el-row> |
|
|
<el-row> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<span>开户行</span> |
|
|
<span><span class="icon">*</span>开户行</span> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8"> |
|
|
<el-col :span="8"> |
|
|
<el-form-item><el-input v-model="formobj.bankName" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
<el-form-item prop="bankName"><el-input v-model="formobj.bankName" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<el-col :span="4" class="tleftb"> |
|
|
<span>银行账号</span> |
|
|
<span><span class="icon">*</span>银行账号</span> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="8"> |
|
|
<el-col :span="8"> |
|
|
<el-form-item><el-input v-model="formobj.bankAccount" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
<el-form-item prop="bankAccount"><el-input v-model="formobj.bankAccount" clearable placeholder="" class="addinputw"></el-input></el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
</el-form> |
|
|
</el-form> |
|
@ -92,7 +92,14 @@ export default { |
|
|
orgSidPath: '', |
|
|
orgSidPath: '', |
|
|
createBySid: '' |
|
|
createBySid: '' |
|
|
}, |
|
|
}, |
|
|
rules: {}, |
|
|
rules: { |
|
|
|
|
|
name: [{ required: true, message: '开票名称不能为空', trigger: 'blur' }], |
|
|
|
|
|
taxpayerNo: [{ required: true, message: '纳税人识别号不能为空', trigger: 'blur' }], |
|
|
|
|
|
address: [{ required: true, message: '地址不能为空', trigger: 'blur' }], |
|
|
|
|
|
phone: [{ required: true, message: '电话不能为空', trigger: 'blur' }], |
|
|
|
|
|
bankName: [{ required: true, message: '开户行能为空', trigger: 'blur' }], |
|
|
|
|
|
bankAccount: [{ required: true, message: '银行账号不能为空', trigger: 'blur' }] |
|
|
|
|
|
}, |
|
|
submitdisabled: false |
|
|
submitdisabled: false |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|