切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
小范
about a year ago
提交
750be141069f1f145c73a43eae6dbf9c54bcd51a
1 个父辈
5a8783d1
收发货人弹框清空搜索条件
显示空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
18 行增加
和
2 行删除
src/views/consigner/consignee.vue
src/views/consigner/consigner.vue
src/views/nav3/Way.vue
src/views/consigner/consignee.vue
查看文件 @
750be14
...
...
@@ -252,6 +252,9 @@
});
},
consignee_data(){
(this.filters.companyName = '')
},
//删除
handleDel: function (index, row) {
this.$confirm('确认删除该记录吗?', '提示', {
...
...
src/views/consigner/consigner.vue
查看文件 @
750be14
...
...
@@ -220,7 +220,6 @@
},
mounted() {
this.getConsignee();
},
methods: {
...
...
@@ -248,6 +247,9 @@
}
});
},
consigner_data(){
(this.filters.companyName = '')
},
//删除
handleDel: function (index, row) {
this.$confirm('确认删除该记录吗?', '提示', {
...
...
src/views/nav3/Way.vue
查看文件 @
750be14
...
...
@@ -42,7 +42,8 @@
<el-col style="width: 40%;margin-left:5px">
<el-form-item>
<el-input minlength="1" maxlength="25" onkeyup="this.value=this.value.toUpperCase()"
@keyup.native="shp_contact.contact_number.replace(/[^0-9]/g,'')" v-model="shp_contact.contact_number" auto-complete="off" placeholder="电话/传真" size="mini"></el-input>
@keyup.native="shp_contact.contact_number=shp_contact.contact_number.replace(/[^0-9]/g,'')"
v-model="shp_contact.contact_number" auto-complete="off" placeholder="电话/传真" size="mini"></el-input>
<!-- <el-select v-model="form.shp.shp_detail_number" placeholder="电话/传真">-->
<!-- <el-option label="电话" value="2"></el-option>-->
<!-- <el-option label="传真" value="3"></el-option>-->
...
...
@@ -2286,19 +2287,23 @@ Handling Information
// 获取发货人信息
getShpFwb() {
this.dialogVisible = true;
this.$refs.consigner.getConsignee();
},
// 获取收货人信息
getCneFwb() {
this.dialogVisible1 = true;
this.$refs.consignee.getConsignee();
},
// 分单
// 获取发货人信息
getShp() {
this.dialogVisible = true;
this.$refs.consigner.getConsignee();
},
// 获取收货人信息
getCne() {
this.dialogVisible1 = true;
this.$refs.consignee.getConsignee();
},
//发货人选中事件处理方法
consigerSelect(row){
...
...
@@ -2314,6 +2319,7 @@ Handling Information
// this.form.oci.push(this.shp_oci);
this.shp_contact.contact_number=row.conPhone;
// this.form.shp.shp_contacts.push(this.shp_contact);
this.$refs.consigner.consigner_data();
this.dialogVisible = false;
}
else if(this.activeName=='second'){
...
...
@@ -2326,9 +2332,11 @@ Handling Information
this.shp_aeo.oci_supplementary=row.conAeo;
this.shp_aeo.oci_country_code=row.country;
// this.addForm.oci.push(this.shp_aeo);
this.$refs.consigner.consigner_data();
this.dialogVisible = false;
}
else{
this.$refs.consigner.consigner_data();
this.dialogVisible = false;
}
},
...
...
@@ -2346,6 +2354,7 @@ Handling Information
// this.form.oci.push(this.cne_oci);
this.cne_contact.contact_number=row.conPhone;
// this.form.cne.cne_contacts.push(this.cne_contact);
this.$refs.consignee.consignee_data();
this.dialogVisible1 = false;
}
else if(this.activeName=='second'){
...
...
@@ -2358,9 +2367,11 @@ Handling Information
this.cne_aeo.oci_supplementary=row.conAeo;
this.cne_aeo.oci_country_code=row.country;
// this.addForm.oci.push(this.cne_aeo);
this.$refs.consignee.consignee_data();
this.dialogVisible1 = false;
}
else{
this.$refs.consignee.consignee_data();
this.dialogVisible1 = false;
}
},
...
...
请
注册
或
登录
后发表评论