Commit df4d3bcd authored by 黄奎's avatar 黄奎

页面修改

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