Commit ea89f285 authored by youjie's avatar youjie

no message

parent 18b54152
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
</tr> </tr>
<tr class="title"> <tr class="title">
<th width="90">使用时间</th> <th width="90">使用时间</th>
<th width="55"><el-checkbox :indeterminate="isIndeterminate1" v-model="checkedAll1" @change="getCheckedAll(1)"></el-checkbox></th> <th width="55"><el-checkbox :indeterminate="isIndeterminate1" v-model="checkedAll1" @change="getCheckedAll(1)" :disabled="checkedDisabled1"></el-checkbox></th>
<th width="80">司机姓名</th> <th width="80">司机姓名</th>
<th width="80">司机电话</th> <th width="80">司机电话</th>
<th width="90">车牌号</th> <th width="90">车牌号</th>
...@@ -247,7 +247,7 @@ ...@@ -247,7 +247,7 @@
</tr> </tr>
<tr class="title"> <tr class="title">
<th width="90">使用时间</th> <th width="90">使用时间</th>
<th><el-checkbox :indeterminate="isIndeterminate2" v-model="checkedAll2" @change="getCheckedAll(2)"></el-checkbox></th> <th><el-checkbox :indeterminate="isIndeterminate2" v-model="checkedAll2" @change="getCheckedAll(2)" :disabled="checkedDisabled2"></el-checkbox></th>
<th width="150">酒店名称</th> <th width="150">酒店名称</th>
<th width="150">手配书</th> <th width="150">手配书</th>
<th width="150">更换酒店</th> <th width="150">更换酒店</th>
...@@ -524,7 +524,7 @@ ...@@ -524,7 +524,7 @@
</tr> </tr>
<tr class="title"> <tr class="title">
<th width="90">使用时间</th> <th width="90">使用时间</th>
<th width="50"><el-checkbox :indeterminate="isIndeterminate2" v-model="checkedAll2" @change="getCheckedAll(2)"></el-checkbox></th> <th width="50"><el-checkbox :indeterminate="isIndeterminate2" v-model="checkedAll2" @change="getCheckedAll(2)" :disabled="checkedDisabled2"></el-checkbox></th>
<th width="150">酒店名称</th> <th width="150">酒店名称</th>
<th width="150">手配书</th> <th width="150">手配书</th>
<th width="150">更换酒店</th> <th width="150">更换酒店</th>
...@@ -796,7 +796,7 @@ ...@@ -796,7 +796,7 @@
</tr> </tr>
<tr class="title"> <tr class="title">
<th width="100">使用时间</th> <th width="100">使用时间</th>
<th width="55"><el-checkbox :indeterminate="isIndeterminate3" v-model="checkedAll3" @change="getCheckedAll(3)"></el-checkbox></th> <th width="55"><el-checkbox :indeterminate="isIndeterminate3" v-model="checkedAll3" @change="getCheckedAll(3)" :disabled="checkedDisabled3"></el-checkbox></th>
<th width="180">餐厅名称</th> <th width="180">餐厅名称</th>
<th width="100">类别</th> <th width="100">类别</th>
<th width="100">总人数</th> <th width="100">总人数</th>
...@@ -929,7 +929,7 @@ ...@@ -929,7 +929,7 @@
</tr> </tr>
<tr> <tr>
<th width="100">使用时间</th> <th width="100">使用时间</th>
<th width="55"><el-checkbox :indeterminate="isIndeterminate4" v-model="checkedAll4" @change="getCheckedAll(4)"></el-checkbox></th> <th width="55"><el-checkbox :indeterminate="isIndeterminate4" v-model="checkedAll4" @change="getCheckedAll(4)" :disabled="checkedDisabled4"></el-checkbox></th>
<th width="180">景点名称</th> <th width="180">景点名称</th>
<th width="100">总人数</th> <th width="100">总人数</th>
<th width="">门票类别</th> <th width="">门票类别</th>
...@@ -1310,12 +1310,14 @@ ...@@ -1310,12 +1310,14 @@
otherPay: 0, otherPay: 0,
otherList: [], otherList: [],
checkedType: null, checkedType: null,
isIndeterminate5: false, checkedDisabled4: false,
checkedDisabled3: false,
checkedDisabled2: false,
checkedDisabled1: false,
isIndeterminate4: false, isIndeterminate4: false,
isIndeterminate3: false, isIndeterminate3: false,
isIndeterminate2: false, isIndeterminate2: false,
isIndeterminate1: false, isIndeterminate1: false,
checkedAll5: false,
checkedAll4: false, checkedAll4: false,
checkedAll3: false, checkedAll3: false,
checkedAll2: false, checkedAll2: false,
...@@ -2170,6 +2172,10 @@ ...@@ -2170,6 +2172,10 @@
x.CostProject = x.CostProject.toString(); x.CostProject = x.CostProject.toString();
}); });
} }
this.checkedDisabled1 = this.list.BusList.length>0?false:true
this.checkedDisabled2 = this.list.HotelOrderListReport.length>0?false:true
this.checkedDisabled3 = this.list.DiningList.length>0?false:true
this.checkedDisabled4 = this.list.ScenicList.length>0?false:true
this.GetDiJieScheduleFinanceList() this.GetDiJieScheduleFinanceList()
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
......
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