切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
7 months ago
提交
cf8975e9b68335a841d4b88ff503ffb6b74ecfb5
1 个父辈
0ce6b4b5
bug-fix:
1. 录入表单时的强制大小写转换的bug修复
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
5 行增加
和
5 行删除
src/views/nav3/Way.vue
src/views/nav3/Way.vue
查看文件 @
cf8975e
...
...
@@ -18,7 +18,7 @@
<el-col style="margin-left: 30px" :span="2">
<el-form-item>
<el-input
minlength="3" maxlength="3" on
keyup
="this.value=this.value.toUpperCase()"
minlength="3" maxlength="3" on
input
="this.value=this.value.toUpperCase()"
@keyup.native="form.bill.origin.replace(/[^A-Za-z]/g,'')"
v-model="form.bill.origin" auto-complete="off" placeholder="起始站" size="mini"></el-input>
</el-form-item>
...
...
@@ -284,7 +284,7 @@
<el-row style="margin-bottom: -5px">
<el-col style="width: 95%">
<el-form-item>
<el-input minlength="3" maxlength="3" on
keyup
="this.value=this.value.toUpperCase()"
<el-input minlength="3" maxlength="3" on
input
="this.value=this.value.toUpperCase()"
@keyup.native="form.cvd.cvd_currency_code.replace(/[^A-Za-z]/g,'')"
v-model="form.cvd.cvd_currency_code" auto-complete="off" placeholder="货币单位" size="mini"></el-input>
</el-form-item>
...
...
@@ -346,7 +346,7 @@
<el-row>
<el-col style="width: 95%">
<el-form-item>
<el-input minlength="3" maxlength="3" on
keyup="this.value=this.value.replace(/[^A-Za-z]/g,'').toUpperCase()
"
<el-input minlength="3" maxlength="3" on
input="this.value=this.value.replace(/[^A-Za-z]/g,'').toUpperCase();
"
v-model="form.rtg.destinationAirport" auto-complete="off" placeholder="到达站" size="mini"></el-input>
</el-form-item>
</el-col>
...
...
@@ -359,7 +359,7 @@
<el-row style="margin-bottom: -5px">
<el-col style="width: 95%">
<el-form-item>
<el-input minlength="2" maxlength="2" on
keyup
="this.value=this.value.toUpperCase()"
<el-input minlength="2" maxlength="2" on
input
="this.value=this.value.toUpperCase()"
@keyup.native="form.flt.cariier.replace(/[^A-Za-z]/g,'')"
v-model="form.flt.cariier" auto-complete="off" placeholder="承运人" size="mini"></el-input>
</el-form-item>
...
...
@@ -447,7 +447,7 @@
<el-row style="margin-bottom: -5px">
<el-col style="width: 95%">
<el-form-item>
<el-input minlength="3" maxlength="3" on
keyup
="this.value=this.value.toUpperCase()"
<el-input minlength="3" maxlength="3" on
input
="this.value=this.value.toUpperCase()"
@keyup.native="form.bill.destination.replace(/[^A-Za-z]/g,'')"
v-model="form.bill.destination" auto-complete="off" placeholder="目的地机场" size="mini">
...
...
请
注册
或
登录
后发表评论