正在显示
1 个修改的文件
包含
12 行增加
和
8 行删除
@@ -1039,13 +1039,17 @@ Handling Information | @@ -1039,13 +1039,17 @@ Handling Information | ||
1039 | <el-row> | 1039 | <el-row> |
1040 | <el-col :span="4"> | 1040 | <el-col :span="4"> |
1041 | <el-form-item label-width="30px" prop="fhl.waybillNum"> | 1041 | <el-form-item label-width="30px" prop="fhl.waybillNum"> |
1042 | - <el-input v-model="addForm.fhl.waybillNum" auto-complete="off" placeholder="主运单号(必填)" | 1042 | + <el-input v-model="addForm.fhl.waybillNum" |
1043 | + oninput="this.value=this.value.replace(/[^0-9\-]/g,'').toUpperCase();" | ||
1044 | + auto-complete="off" placeholder="主运单号(必填)" | ||
1043 | @blur="blur"></el-input> | 1045 | @blur="blur"></el-input> |
1044 | </el-form-item> | 1046 | </el-form-item> |
1045 | </el-col> | 1047 | </el-col> |
1046 | <el-col :span="4"> | 1048 | <el-col :span="4"> |
1047 | <el-form-item label-width="40px" prop="hbs.hbs_serial_number"> | 1049 | <el-form-item label-width="40px" prop="hbs.hbs_serial_number"> |
1048 | - <el-input v-model="addForm.hbs.hbs_serial_number" auto-complete="off" placeholder="分运单号(必填)" | 1050 | + <el-input v-model="addForm.hbs.hbs_serial_number" |
1051 | + oninput="this.value=this.value.replace(/[^A-Za-z0-9]/g,'').toUpperCase();" | ||
1052 | + auto-complete="off" placeholder="分运单号(必填)" | ||
1049 | onkeyup="this.value=this.value.toUpperCase()" | 1053 | onkeyup="this.value=this.value.toUpperCase()" |
1050 | ></el-input> | 1054 | ></el-input> |
1051 | </el-form-item> | 1055 | </el-form-item> |
@@ -1537,10 +1541,10 @@ Handling Information | @@ -1537,10 +1541,10 @@ Handling Information | ||
1537 | <el-row style="margin-bottom: -2px"> | 1541 | <el-row style="margin-bottom: -2px"> |
1538 | <el-col style="width: 100%"> | 1542 | <el-col style="width: 100%"> |
1539 | <el-form-item> | 1543 | <el-form-item> |
1540 | - <el-input disabled | ||
1541 | - maxlength="195" | ||
1542 | - type="textarea" :autosize="{ minRows: 2, maxRows: 4}" | ||
1543 | - auto-complete="off" placeholder="处理信息" size="mini"></el-input> | 1544 | + <el-input v-model="addForm.txt.txt_free_text" |
1545 | + maxlength="585" | ||
1546 | + type="textarea" :autosize="{ minRows: 1, maxRows: 9}" | ||
1547 | + auto-complete="off" placeholder="处理信息-Free Text"></el-input> | ||
1544 | </el-form-item> | 1548 | </el-form-item> |
1545 | </el-col> | 1549 | </el-col> |
1546 | </el-row> | 1550 | </el-row> |
@@ -1699,7 +1703,7 @@ Handling Information | @@ -1699,7 +1703,7 @@ Handling Information | ||
1699 | <el-row style="margin-bottom: -5px"> | 1703 | <el-row style="margin-bottom: -5px"> |
1700 | <el-col style="width: 95%"> | 1704 | <el-col style="width: 95%"> |
1701 | <el-form-item> | 1705 | <el-form-item> |
1702 | - <el-input disabled auto-complete="off" placeholder="其他" size="mini"></el-input> | 1706 | + <el-input v-model="addForm.hbs.hbs_slac" auto-complete="off" placeholder="SLAC"></el-input> |
1703 | </el-form-item> | 1707 | </el-form-item> |
1704 | </el-col> | 1708 | </el-col> |
1705 | </el-row> | 1709 | </el-row> |
@@ -2328,7 +2332,7 @@ Handling Information | @@ -2328,7 +2332,7 @@ Handling Information | ||
2328 | cvd_currency_code:'', | 2332 | cvd_currency_code:'', |
2329 | }, | 2333 | }, |
2330 | hbs:{ | 2334 | hbs:{ |
2331 | - hbs_origin:'', | 2335 | + hbs_origin:'CGO', |
2332 | hbs_destination:'', | 2336 | hbs_destination:'', |
2333 | hbs_manifest_description:'', | 2337 | hbs_manifest_description:'', |
2334 | hbs_pieces:'', | 2338 | hbs_pieces:'', |
-
请 注册 或 登录 后发表评论