Commit fce84cd9 authored by 黄奎's avatar 黄奎

页面修改

parent 82708313
...@@ -970,10 +970,7 @@ ...@@ -970,10 +970,7 @@
if (list != null && list.length > 0) { if (list != null && list.length > 0) {
list.forEach((item, sIndex) => { list.forEach((item, sIndex) => {
item.HotelOrderList.forEach(subItem => { item.HotelOrderList.forEach(subItem => {
//默认不更新
if (this.LineId != 14) {
subItem.IsSyncHotelCount = 1;
}
subItem.hotelList.push({ subItem.hotelList.push({
Name: subItem.NewHotelName, Name: subItem.NewHotelName,
ID: subItem.NewHotelId ID: subItem.NewHotelId
......
...@@ -1026,7 +1026,7 @@ ...@@ -1026,7 +1026,7 @@
<th width="200">当前审核人</th> <th width="200">当前审核人</th>
</tr> </tr>
<template v-for="item in DataList.FinicePayList"> <template v-for="item in DataList.FinicePayList">
<tr v-if="isExists(item.CostTypeList,'签证费') || isExists(item.CostTypeList,'签证佣金')"> <tr v-if="isExists(item.CostTypeList,'签证')">
<td> <td>
<el-checkbox v-model="item.checked"></el-checkbox> <el-checkbox v-model="item.checked"></el-checkbox>
<span class="Team_income" @click="goUrl('FinancialDocumentsDetail',item.FrID)">{{item.FrID}}</span> <span class="Team_income" @click="goUrl('FinancialDocumentsDetail',item.FrID)">{{item.FrID}}</span>
...@@ -2142,7 +2142,7 @@ ...@@ -2142,7 +2142,7 @@
isExists(array, str) { isExists(array, str) {
var flag = false; var flag = false;
array.forEach(item => { array.forEach(item => {
if (item == str && !flag) { if (item.indexOf(str)!=-1 && !flag) {
flag = true; flag = true;
} }
}); });
...@@ -2477,6 +2477,7 @@ ...@@ -2477,6 +2477,7 @@
// } // }
} }
}); });
}, },
//收入跳转 //收入跳转
AddIncomeDetail() { AddIncomeDetail() {
...@@ -2605,16 +2606,16 @@ ...@@ -2605,16 +2606,16 @@
// ) // )
}, },
//判断数组是否存在 值 //判断数组是否存在 值
isExists(arr, item) { // isExists(arr, item) {
var flag = false; // var flag = false;
for (var i = 0; i < arr.length; i++) { // for (var i = 0; i < arr.length; i++) {
if (arr[i] == item) { // if (arr[i].indexOf(item)!=-1) {
flag = true; // flag = true;
break; // break;
} // }
} // }
return flag; // return flag;
} // }
// isExists: function (arr, item) { // isExists: function (arr, item) {
// var flag = false; // var flag = false;
// for (var i = 0; i < arr.length; i++) { // for (var i = 0; i < arr.length; i++) {
......
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