Commit ebb895f1 authored by 吴春's avatar 吴春

1

parent 3657dccf
......@@ -930,13 +930,13 @@
if(type) {
findIndex = this.options.findIndex(x=>x.value==e)
let obj = this.options[findIndex]
this.addMsg.SurName = obj.name
this.addMsg.ESurName = obj.label
this.addMsg.SurName = obj.name.toUpperCase();
this.addMsg.ESurName = obj.label.toUpperCase();
}else{
findIndex = this.optionsNames.findIndex(x=>x.value==e)
let obj = this.optionsNames[findIndex]
this.addMsg.Name = obj.name
this.addMsg.EName = obj.label
this.addMsg.Name = obj.name.toUpperCase();
this.addMsg.EName = obj.label.toUpperCase();
}
},
remoteMethod(query,type) {
......@@ -1092,12 +1092,12 @@
if (tempObj) {
//中文姓
if (tempObj.SurName && tempObj.SurName != '') {
this.addMsg.SurName = tempObj.SurName;
this.addMsg.SurName = tempObj.SurName.toUpperCase();
this.Transformation(this.addMsg.SurName, 'SurName');
}
//中文名
if (tempObj.Name && tempObj.Name != '') {
this.addMsg.Name = tempObj.Name;
this.addMsg.Name = tempObj.Name.toUpperCase();
this.Transformation(this.addMsg.Name, 'Name');
}
//性别
......@@ -1388,7 +1388,7 @@
this.options.push({
label: x.toUpperCase(),
value: index+1,
name: this.addMsg.SurName,
name: this.addMsg.SurName.toUpperCase(),
})
})
if(names!=null&&names.length==1){
......@@ -1423,7 +1423,7 @@
this.optionsNames.push({
label: x.toUpperCase(),
value: index+1,
name: this.addMsg.Name,
name: this.addMsg.Name.toUpperCase(),
})
})
if(names!=null&&names.length==1){
......@@ -1908,17 +1908,17 @@
},
getData: function () {
this.loading = true
this.apipost("sellorder_get_GetTravelGuestList", {
OrderId: this.$route.query.orderId
}, res => {
if (res.data.resultCode == 1) {
this.GroupStartDateStr = res.data.data.GroupStartDateStr;
} else {
this.$message.error(res.data.message)
}
this.loading = false
});
this.loading = true
this.apipost("sellorder_get_GetTravelGuestList", {
OrderId: this.$route.query.orderId
}, res => {
if (res.data.resultCode == 1) {
this.GroupStartDateStr = res.data.data.GroupStartDateStr;
} else {
this.$message.error(res.data.message)
}
this.loading = false
});
},
},
mounted() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment