Commit 88a972ad authored by 黄奎's avatar 黄奎

页面修改

parent 53912d91
...@@ -1437,7 +1437,6 @@ ...@@ -1437,7 +1437,6 @@
break break
} }
} }
// console.log(this.msg.detailList,'this.msg.detailList')
let price = 0 let price = 0
if(obj.SettlementType==1){ if(obj.SettlementType==1){
if(this.msg.detailList && this.msg.detailList.length>0){ if(this.msg.detailList && this.msg.detailList.length>0){
...@@ -1447,14 +1446,11 @@ ...@@ -1447,14 +1446,11 @@
} }
}) })
} }
// console.log(price,obj.Commission,'obj.Commission')
this.msg.OriginalFee = Math.round((price * obj.Commission) ) / 100; this.msg.OriginalFee = Math.round((price * obj.Commission) ) / 100;
}else{ }else{
this.msg.OriginalFee = 0 this.msg.OriginalFee = 0
this.msg.Fee = 0 this.msg.Fee = 0
} }
}, },
Calculation(t, i) { // 计算原币 本位币 Calculation(t, i) { // 计算原币 本位币
let numberC = 0; let numberC = 0;
......
...@@ -1398,7 +1398,6 @@ ...@@ -1398,7 +1398,6 @@
this.apipost("travel_get_GetTravelPriceTeamTypeList", {}, res => { this.apipost("travel_get_GetTravelPriceTeamTypeList", {}, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.TeamListArr = res.data.data; this.TeamListArr = res.data.data;
console.log("this.TeamListArr", this.TeamListArr);
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
} }
......
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
}, },
}, },
created() { created() {
this.ViewDomain = this.domainManager().ViewFileUrl; this.ViewDomain = this.domainManager().ViittoFileUrl;
}, },
mounted() { mounted() {
this.loadUe(); this.loadUe();
......
...@@ -127,13 +127,11 @@ ...@@ -127,13 +127,11 @@
newArr.push(files.file); newArr.push(files.file);
var that=this; var that=this;
this.UploadSelfFileT('Attachment', newArr, res => { this.UploadSelfFileT('Attachment', newArr, res => {
console.log("res", res);
if (res.data.StatusCode == 1) { if (res.data.StatusCode == 1) {
this.chooseFileArray.push({ this.chooseFileArray.push({
fileName: res.data.FileName, fileName: res.data.FileName,
fileUrl: that.domainManager().ViittoFileUrl + res.data.FilePath fileUrl: that.domainManager().ViittoFileUrl + res.data.FilePath
}) })
console.log(" this.chooseFileArray", this.chooseFileArray);
this.$emit("selected", this.chooseFileArray); this.$emit("selected", this.chooseFileArray);
this.chooseFileArray = []; this.chooseFileArray = [];
} }
......
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