|
|
@@ -26,7 +26,7 @@
|
|
|
<block v-if="!$util.isEmpty(globalClassItemList)">
|
|
|
<view class="item_list_bx selectAll" v-for="(classItem, classIndex) in globalClassItemList" :key="classIndex" :id="`class_${classIndex}`">
|
|
|
<view class="item_list_title"> {{ classItem.className }}
|
|
|
- <text style="float:right;color:#3385FF;margin-right:50upx;" @click="getCurrentAll(classIndex)">全选 / 取消</text>
|
|
|
+ <text style="float:right;color:#3385FF;margin-right:50upx;font-size:30upx;" @click="getCurrentAll(classIndex)">全选 / 取消</text>
|
|
|
</view>
|
|
|
|
|
|
<view v-if="classItem.child && !$util.isEmpty(classItem.child)">
|
|
|
@@ -108,7 +108,6 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
getCurrentAll(index){
|
|
|
- uni.showLoading({mask:true})
|
|
|
let that = this
|
|
|
let child = this.globalClassItemList[index] && this.globalClassItemList[index].child ? this.globalClassItemList[index].child : []
|
|
|
if(!this.$util.isEmpty(child)){
|
|
|
@@ -118,7 +117,6 @@ export default {
|
|
|
that.$refs[current][0].checkEvent()
|
|
|
})
|
|
|
}
|
|
|
- uni.hideLoading()
|
|
|
},
|
|
|
stopSelect(){
|
|
|
let that = this
|