Commit ebb895f1 authored by 吴春's avatar 吴春

1

parent 3657dccf
...@@ -930,13 +930,13 @@ ...@@ -930,13 +930,13 @@
if(type) { if(type) {
findIndex = this.options.findIndex(x=>x.value==e) findIndex = this.options.findIndex(x=>x.value==e)
let obj = this.options[findIndex] let obj = this.options[findIndex]
this.addMsg.SurName = obj.name this.addMsg.SurName = obj.name.toUpperCase();
this.addMsg.ESurName = obj.label this.addMsg.ESurName = obj.label.toUpperCase();
}else{ }else{
findIndex = this.optionsNames.findIndex(x=>x.value==e) findIndex = this.optionsNames.findIndex(x=>x.value==e)
let obj = this.optionsNames[findIndex] let obj = this.optionsNames[findIndex]
this.addMsg.Name = obj.name this.addMsg.Name = obj.name.toUpperCase();
this.addMsg.EName = obj.label this.addMsg.EName = obj.label.toUpperCase();
} }
}, },
remoteMethod(query,type) { remoteMethod(query,type) {
...@@ -1092,12 +1092,12 @@ ...@@ -1092,12 +1092,12 @@
if (tempObj) { if (tempObj) {
//中文姓 //中文姓
if (tempObj.SurName && tempObj.SurName != '') { if (tempObj.SurName && tempObj.SurName != '') {
this.addMsg.SurName = tempObj.SurName; this.addMsg.SurName = tempObj.SurName.toUpperCase();
this.Transformation(this.addMsg.SurName, 'SurName'); this.Transformation(this.addMsg.SurName, 'SurName');
} }
//中文名 //中文名
if (tempObj.Name && tempObj.Name != '') { if (tempObj.Name && tempObj.Name != '') {
this.addMsg.Name = tempObj.Name; this.addMsg.Name = tempObj.Name.toUpperCase();
this.Transformation(this.addMsg.Name, 'Name'); this.Transformation(this.addMsg.Name, 'Name');
} }
//性别 //性别
...@@ -1388,7 +1388,7 @@ ...@@ -1388,7 +1388,7 @@
this.options.push({ this.options.push({
label: x.toUpperCase(), label: x.toUpperCase(),
value: index+1, value: index+1,
name: this.addMsg.SurName, name: this.addMsg.SurName.toUpperCase(),
}) })
}) })
if(names!=null&&names.length==1){ if(names!=null&&names.length==1){
...@@ -1423,7 +1423,7 @@ ...@@ -1423,7 +1423,7 @@
this.optionsNames.push({ this.optionsNames.push({
label: x.toUpperCase(), label: x.toUpperCase(),
value: index+1, value: index+1,
name: this.addMsg.Name, name: this.addMsg.Name.toUpperCase(),
}) })
}) })
if(names!=null&&names.length==1){ if(names!=null&&names.length==1){
...@@ -1908,17 +1908,17 @@ ...@@ -1908,17 +1908,17 @@
}, },
getData: function () { getData: function () {
this.loading = true this.loading = true
this.apipost("sellorder_get_GetTravelGuestList", { this.apipost("sellorder_get_GetTravelGuestList", {
OrderId: this.$route.query.orderId OrderId: this.$route.query.orderId
}, res => { }, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.GroupStartDateStr = res.data.data.GroupStartDateStr; this.GroupStartDateStr = res.data.data.GroupStartDateStr;
} else { } else {
this.$message.error(res.data.message) this.$message.error(res.data.message)
} }
this.loading = false this.loading = false
}); });
}, },
}, },
mounted() { 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