作者 朱兆平

update:

1. 分单录入表单界面优化
... ... @@ -1039,13 +1039,17 @@ Handling Information
<el-row>
<el-col :span="4">
<el-form-item label-width="30px" prop="fhl.waybillNum">
<el-input v-model="addForm.fhl.waybillNum" auto-complete="off" placeholder="主运单号(必填)"
<el-input v-model="addForm.fhl.waybillNum"
oninput="this.value=this.value.replace(/[^0-9\-]/g,'').toUpperCase();"
auto-complete="off" placeholder="主运单号(必填)"
@blur="blur"></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label-width="40px" prop="hbs.hbs_serial_number">
<el-input v-model="addForm.hbs.hbs_serial_number" auto-complete="off" placeholder="分运单号(必填)"
<el-input v-model="addForm.hbs.hbs_serial_number"
oninput="this.value=this.value.replace(/[^A-Za-z0-9]/g,'').toUpperCase();"
auto-complete="off" placeholder="分运单号(必填)"
onkeyup="this.value=this.value.toUpperCase()"
></el-input>
</el-form-item>
... ... @@ -1537,10 +1541,10 @@ Handling Information
<el-row style="margin-bottom: -2px">
<el-col style="width: 100%">
<el-form-item>
<el-input disabled
maxlength="195"
type="textarea" :autosize="{ minRows: 2, maxRows: 4}"
auto-complete="off" placeholder="处理信息" size="mini"></el-input>
<el-input v-model="addForm.txt.txt_free_text"
maxlength="585"
type="textarea" :autosize="{ minRows: 1, maxRows: 9}"
auto-complete="off" placeholder="处理信息-Free Text"></el-input>
</el-form-item>
</el-col>
</el-row>
... ... @@ -1699,7 +1703,7 @@ Handling Information
<el-row style="margin-bottom: -5px">
<el-col style="width: 95%">
<el-form-item>
<el-input disabled auto-complete="off" placeholder="其他" size="mini"></el-input>
<el-input v-model="addForm.hbs.hbs_slac" auto-complete="off" placeholder="SLAC"></el-input>
</el-form-item>
</el-col>
</el-row>
... ... @@ -2328,7 +2332,7 @@ Handling Information
cvd_currency_code:'',
},
hbs:{
hbs_origin:'',
hbs_origin:'CGO',
hbs_destination:'',
hbs_manifest_description:'',
hbs_pieces:'',
... ...