Commit ff513ef3 authored by 黄奎's avatar 黄奎

页面修改

parent e70ade8b
......@@ -1320,6 +1320,12 @@
res => {
if (res.data.resultCode == 1) {
this.currencyTypeArr = res.data.data;
this.currencyTypeArr.forEach(item => {
if (item.ID == 3) {
//徐总说日元默认加0.002
item.CurrentRate = Number(item.CurrentRate) + Number(0.002);
}
});
}
},
err => {}
......
......@@ -236,20 +236,32 @@
</tr>
<tbody>
<tr height="36">
<td width="50%"><input id="IsShowTripPrice" type="checkbox" v-model="downLoadMsg.IsShowTripPrice" /><label for="IsShowTripPrice">行程报价<br/>(房、餐、车、门票)</label></td>
<td width="50%"><input id="vshowB" type="checkbox" /><label for="vshowB">内陆段交通部分</label></td>
<td width="50%"><input id="IsShowTripPrice" type="checkbox" v-model="downLoadMsg.IsShowTripPrice" /><label
for="IsShowTripPrice">行程报价<br />(房、餐、车、门票)</label></td>
<td width="50%"><input id="IsShowTraffic" type="checkbox" v-model="downLoadMsg.IsShowTraffic" /><label
for="IsShowTraffic">内陆段交通部分</label></td>
</tr>
<tr height="36">
<td><input id="vshowC" type="checkbox" /><label for="vshowC">杂支部分</label></td>
<td><input id="vshowD" type="checkbox" /><label for="vshowD">其他支出</label></td>
<td><input id="IsShowZaZhi" type="checkbox" v-model="downLoadMsg.IsShowZaZhi" /><label
for="IsShowZaZhi">杂支部分</label></td>
<td><input id="IsShowOtherZhichu" type="checkbox" v-model="downLoadMsg.IsShowOtherZhichu" /><label
for="IsShowOtherZhichu">其他支出</label></td>
</tr>
<tr height="36">
<td><input id="vshowE" type="checkbox" /><label for="vshowE">收入</label></td>
<td><input id="vshowF" type="checkbox" /><label for="vshowF">团付费</label></td>
<td><input id="IsShowShouRu" type="checkbox" v-model="downLoadMsg.IsShowShouRu" /><label
for="IsShowShouRu">收入</label></td>
<td><input id="IsShowTuanFuFee" type="checkbox" v-model="downLoadMsg.IsShowTuanFuFee" /><label
for="IsShowTuanFuFee">团负费</label></td>
</tr>
<tr height="36">
<td><input id="vshowE" type="checkbox" /><label for="vshowE">领队分摊</label></td>
<td><input id="vshowF" type="checkbox" /><label for="vshowF">成本统计</label></td>
<td><input id="IsShowLeaderFenTan" type="checkbox" v-model="downLoadMsg.IsShowLeaderFenTan" /><label
for="IsShowLeaderFenTan">领队分摊</label></td>
<td><input id="IsShowCost" type="checkbox" v-model="downLoadMsg.IsShowCost" /><label
for="IsShowCost">成本统计</label></td>
</tr>
<tr height="36">
<td><input id="IsShowOtherPrice" type="checkbox" v-model="downLoadMsg.IsShowOtherPrice" /><label
for="IsShowOtherPrice">其他定价</label></td>
</tr>
</tbody>
<tr height="66">
......@@ -327,8 +339,16 @@
//下载参数
downLoadMsg: {
ID: 0,
FileName:"",
IsShowTripPrice:true,//行程报价
FileName: "",
IsShowTripPrice: true, //行程报价
IsShowTraffic: false, //交通价格
IsShowZaZhi: false, //杂支部分
IsShowOtherZhichu: false, //其他支出
IsShowShouRu: false, //收入部分
IsShowTuanFuFee: false, //团负费
IsShowLeaderFenTan: false, //领队分摊
IsShowCost: false, //成本统计
IsShowOtherPrice: false, //其他定价
},
};
},
......@@ -555,7 +575,7 @@
},
//显示下载弹窗
showDownLoad(item) {
this.downLoadMsg.ID=item.ID;
this.downLoadMsg.ID = item.ID;
var fileName = "";
if (item.CustomerName) {
fileName += "【" + item.CustomerName + "】";
......@@ -565,12 +585,12 @@
fileName += "【" + item.LineName + "】";
}
fileName += "成本下载.xls";
this.downLoadMsg.FileName=fileName;
this.downLoadMsg.FileName = fileName;
this.downloadBill = true;
},
//报价单下载
DownLoadFile() {
this.downloadBill=false;
this.downloadBill = false;
this.loading = true;
this.GetLocalFile("quotation_get_DownLoadQuotation", this.downLoadMsg, this.downLoadMsg.FileName, res => {
this.loading = false;
......
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