|
@@ -15,7 +15,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column width="70" label="车型">
|
|
|
<template slot-scope="scope">
|
|
|
- {{scope.row.carType}}
|
|
|
+ {{ scope.row.carType }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column width="70" label="司机工资">
|
|
@@ -394,9 +394,9 @@ export default {
|
|
|
methods: {
|
|
|
//保留两位小数
|
|
|
townum(val) {
|
|
|
- if(val==0.00){
|
|
|
+ if (val == 0.00) {
|
|
|
return '--'
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
return val.toFixed(2)
|
|
|
}
|
|
|
},
|
|
@@ -421,7 +421,7 @@ export default {
|
|
|
if (res.data.code == 200) {
|
|
|
that.budgeting = res.data.data.modulePromptInfos[0].data;
|
|
|
that.bizhong = res.data.data.modulePromptInfos[0].currencyCode;
|
|
|
- console.log(that.budgeting)
|
|
|
+ //console.log(that.budgeting)
|
|
|
} else {
|
|
|
// that.$message.error(res.data.msg);
|
|
|
}
|
|
@@ -444,7 +444,7 @@ export default {
|
|
|
}
|
|
|
}).then(function (res) {
|
|
|
if (res.data.code == 200) {
|
|
|
- console.log(res)
|
|
|
+ //console.log(res)
|
|
|
that.delegationInfoList = res.data.data.delegations;
|
|
|
for (let index = 0; index < that.delegationInfoList.length; index++) {
|
|
|
if (that.delegationInfoList[index].id == that.diId) {
|
|
@@ -480,13 +480,11 @@ export default {
|
|
|
|
|
|
that.checkList = res.data.data.checkedItem;
|
|
|
that.checkBoxChange();
|
|
|
-
|
|
|
- that.loading = false;
|
|
|
//that.OpCarTouristGuideGroundContenById()
|
|
|
} else {
|
|
|
this.$message.error('初始化失败' + res.data.msg);
|
|
|
}
|
|
|
-
|
|
|
+ that.loading = false;
|
|
|
})
|
|
|
|
|
|
},
|
|
@@ -527,7 +525,7 @@ export default {
|
|
|
cTable: that.cTable,
|
|
|
}
|
|
|
}).then(function (res) {
|
|
|
- console.log(res)
|
|
|
+ //console.log(res)
|
|
|
if (res.data.code == 200) {
|
|
|
that.currencyList = res.data.data.teamRates;
|
|
|
if (that.currency == 0) {
|
|
@@ -699,7 +697,7 @@ export default {
|
|
|
|
|
|
mounted() {
|
|
|
this.pageId = localStorage.getItem('indexs').split('-')[1];
|
|
|
- console.log(this.pageId)
|
|
|
+ //console.log(this.pageId)
|
|
|
this.token = JSON.parse(localStorage.getItem('userinif')).token;
|
|
|
this.userId = JSON.parse(localStorage.getItem('userinif')).userInfo.userId
|
|
|
this.id = this.$route.query.id
|