切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
xudada
6 months ago
提交
10f2f1b1eff454ea174cf912931bfedb1787412d
1 个父辈
cf5b12de
excel毛重计费重量Bug修复,
货重金额,预付总计加去掉内容前后空格校验
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
9 行增加
和
9 行删除
src/views/nav3/Way.vue
src/views/nav3/Way.vue
查看文件 @
10f2f1b
...
...
@@ -808,7 +808,7 @@ Handling Information
</el-row>
<el-row style="padding-top: 20px">
<el-col :span="7" style="border-right: 1px solid #a5a5a5">
<el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_weight_amount" auto-complete="off" placeholder="货重金额" size="mini"></el-input>
<el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_weight_amount"
oninput="this.value=this.value.replace(/[^0-9\.]/g,'');"
auto-complete="off" placeholder="货重金额" size="mini"></el-input>
</el-col>
<el-col :span="10" style="border-right: 1px solid #a5a5a5;text-align: center">
<span style="font-size: 12px">
...
...
@@ -816,7 +816,7 @@ Handling Information
</span>
</el-col>
<el-col :span="7">
<el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_weight_amount" auto-complete="off" placeholder="货重金额" size="mini"></el-input>
<el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_weight_amount" auto-complete="off"
oninput="this.value=this.value.replace(/[^0-9\.]/g,'');"
placeholder="货重金额" size="mini"></el-input>
</el-col>
</el-row>
</el-col>
...
...
@@ -918,7 +918,7 @@ Handling Information
<el-row>
<el-col style="width: 95%">
<el-form-item>
<el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_charge_summary_total" auto-complete="off" placeholder="预付总计" size="mini"></el-input>
<el-input :disabled="form.cvd.cvd_charge_prepaid=='CC'" v-model="form.ppd.ppd_charge_summary_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>
...
...
@@ -942,7 +942,7 @@ Handling Information
<el-row>
<el-col style="width: 95%">
<el-form-item>
<el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_charge_summary_total" auto-complete="off" placeholder="到付费用总额" size="mini"></el-input>
<el-input :disabled="form.cvd.cvd_charge_prepaid=='PP'" v-model="form.ppd.ppd_charge_summary_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>
...
...
@@ -2188,17 +2188,17 @@ Handling Information
},
flt:{
cariier:"HQ",
day:'0
8
',
day:'0
9
',
flightNumber:'405',
cariier2:"HQ",
day2:'0
8
',
day2:'0
9
',
flightNumber2:'4055',
cariier3:"",
day3:'',
flightNumber3:'',
},
isu:{
isu_day_mounth_year:'2024-11-0
7
',
isu_day_mounth_year:'2024-11-0
8
',
isu_place_or_airport_code:'ZHENGZHOU',
isu_signature:'CHINA',
},
...
...
@@ -3051,8 +3051,8 @@ Handling Information
this.form.flt.flightNumber2=this.fileContent.outFlightNumber.substring(2);
this.ssr_content=this.fileContent.SSRInfo;
this.form.bill.quantity_picecs=this.fileContent.A22;
this.form.bill.quantity_weight=parseFloat(this.fileContent.K22).toFixed(2);
this.form.rtd.rtd_charge_weight=parseFloat(this.fileContent.C22).toFixed(2);
this.form.bill.quantity_weight=parseFloat(this.fileContent.C22).toFixed(2);
this.form.rtd.rtd_charge_weight=parseFloat(this.fileContent.K22).toFixed(2);
this.form.rtd.rtd_rate_charge=this.fileContent.P22;
this.form.rtd.rtd_total=parseFloat(this.fileContent.U22).toFixed(2);
this.form.rtd.rtd_goods_DES=this.fileContent.AF22;
...
...
请
注册
或
登录
后发表评论