Commit df4d3bcd authored by 黄奎's avatar 黄奎

页面修改

parent 458ae181
...@@ -534,7 +534,7 @@ ...@@ -534,7 +534,7 @@
// type: "application/pdf" // type: "application/pdf"
// }) // })
// let url = URL.createObjectURL(blob); // let url = URL.createObjectURL(blob);
var newUrl = "http://ocr.oytour.com" + res.data; var newUrl = urlObj.ocrUrl + res.data;
let link = document.getElementById('pdfDownLoad'); let link = document.getElementById('pdfDownLoad');
link.href = newUrl; link.href = newUrl;
link.setAttribute("download", fileName); link.setAttribute("download", fileName);
...@@ -544,7 +544,7 @@ ...@@ -544,7 +544,7 @@
this.pdfLoading = false this.pdfLoading = false
}) })
}, },
//保存基础数据 //保存基础数据
submitForm: function () { submitForm: function () {
this.editForm.travelOrderFlightList.forEach(x => { this.editForm.travelOrderFlightList.forEach(x => {
x.airportNameList = []; x.airportNameList = [];
...@@ -913,6 +913,8 @@ ...@@ -913,6 +913,8 @@
@import url('../assets/css/detail.css'); @import url('../assets/css/detail.css');
@import url('../assets/css/UpgradedVersion.css'); @import url('../assets/css/UpgradedVersion.css');
.edit_form_box { .edit_form_box {
display: flex; display: flex;
justify-content: space-around; justify-content: space-around;
......
...@@ -60,7 +60,8 @@ ...@@ -60,7 +60,8 @@
<td> <td>
<el-tooltip class="item" effect="dark" :content="$t('system.table_edit')" placement="top-start" <el-tooltip class="item" effect="dark" :content="$t('system.table_edit')" placement="top-start"
v-if="(selfItem.IsShow==0)"> v-if="(selfItem.IsShow==0)">
<el-button type="primary" icon="el-icon-edit" circle @click="getCityList('',selfItem),SelfpayingShow(selfItem)"></el-button> <el-button type="primary" icon="el-icon-edit" circle
@click="getCityList('',selfItem),SelfpayingShow(selfItem)"></el-button>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" :content="$t('pub.saveBtn')" placement="top-start" <el-tooltip class="item" effect="dark" :content="$t('pub.saveBtn')" placement="top-start"
v-if="selfItem.IsShow==1"> v-if="selfItem.IsShow==1">
...@@ -367,6 +368,9 @@ ...@@ -367,6 +368,9 @@
var qmsg = { var qmsg = {
QCountry: this.CountryID QCountry: this.CountryID
}; };
if (this.PostConfig.LineId == 168) {
qmsg.QCountry = "";
}
this.apipost( this.apipost(
"Shopping_Post_GetList", "Shopping_Post_GetList",
qmsg, qmsg,
...@@ -467,14 +471,13 @@ ...@@ -467,14 +471,13 @@
CodeLevel: 3, CodeLevel: 3,
Name: '', Name: '',
}; };
if(selfItem.CityName!='') if (selfItem.CityName != '') {
{ postMsg.Name = selfItem.CityName;
postMsg.Name = selfItem.CityName;
} }
if (query != '') { if (query != '') {
postMsg.Name = query; postMsg.Name = query;
} }
this.apipost("dict_get_Destination_GetCityExtList", postMsg, res => { this.apipost("dict_get_Destination_GetCityExtList", postMsg, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
selfItem.CityList = res.data.data; selfItem.CityList = res.data.data;
......
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