Commit fce84cd9 authored by 黄奎's avatar 黄奎

页面修改

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