...
|
...
|
@@ -667,7 +667,9 @@ Handling Information |
|
|
<el-row style="margin-bottom: -5px">
|
|
|
<el-col style="width: 95%">
|
|
|
<el-form-item>
|
|
|
<el-input v-model="form.bill.quantity_picecs" auto-complete="off" placeholder="件数" size="mini"></el-input>
|
|
|
<el-input v-model="form.bill.quantity_picecs"
|
|
|
oninput="this.value=this.value.replace(/[^0-9]/g,'').trim();"
|
|
|
auto-complete="off" placeholder="件数1" size="mini"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
...
|
...
|
@@ -676,7 +678,9 @@ Handling Information |
|
|
<el-row style="margin-bottom: -5px">
|
|
|
<el-col style="width: 95%">
|
|
|
<el-form-item>
|
|
|
<el-input v-model="form.bill.quantity_weight" auto-complete="off" placeholder="重量(KG)" size="mini"></el-input>
|
|
|
<el-input v-model="form.bill.quantity_weight"
|
|
|
oninput="this.value=this.value.replace(/[^0-9\.]/g,'');"
|
|
|
auto-complete="off" placeholder="重量(KG)" size="mini"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
...
|
...
|
@@ -719,7 +723,9 @@ Handling Information |
|
|
<el-row style="margin-bottom: -5px">
|
|
|
<el-col style="width: 95%">
|
|
|
<el-form-item>
|
|
|
<el-input v-model="form.rtd.rtd_charge_weight" auto-complete="off" placeholder="计费重量" size="mini"></el-input>
|
|
|
<el-input v-model="form.rtd.rtd_charge_weight"
|
|
|
oninput="this.value=this.value.replace(/[^0-9\.]/g,'');"
|
|
|
auto-complete="off" placeholder="计费重量" size="mini"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
...
|
...
|
@@ -728,7 +734,9 @@ Handling Information |
|
|
<el-row style="margin-bottom: -5px">
|
|
|
<el-col style="width: 95%">
|
|
|
<el-form-item>
|
|
|
<el-input v-model="form.rtd.rtd_rate_charge" auto-complete="off" placeholder="费率" size="mini"></el-input>
|
|
|
<el-input v-model="form.rtd.rtd_rate_charge"
|
|
|
oninput="this.value=this.value.replace(/[^0-9\.]/g,'');"
|
|
|
auto-complete="off" placeholder="费率" size="mini"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
...
|
...
|
@@ -737,7 +745,9 @@ Handling Information |
|
|
<el-row style="margin-bottom: -5px">
|
|
|
<el-col style="width: 95%">
|
|
|
<el-form-item>
|
|
|
<el-input v-model="form.rtd.rtd_total" auto-complete="off" placeholder="总计" size="mini"></el-input>
|
|
|
<el-input v-model="form.rtd.rtd_total"
|
|
|
oninput="this.value=this.value.replace(/[^0-9\.]/g,'');"
|
|
|
auto-complete="off" placeholder="总计" size="mini"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
...
|
...
|
@@ -2403,6 +2413,7 @@ Handling Information |
|
|
//删除行
|
|
|
deleteRows(scope) {
|
|
|
this.gridData.splice(scope.$index, 1);
|
|
|
this.form.rtd.dimensions.splice(scope.$index,1);
|
|
|
},
|
|
|
//求体积
|
|
|
handleEdit(index, row) {
|
...
|
...
|
|