checkedOne(typeId) {
? ? var idIndex = this.appList.indexOf(typeId)
? ? ? if (idIndex >= 0) {
? ? ? ? this.appList.splice(idIndex, 1)
? ? ? } else {
? ? ? ? this.appList.push(typeId)
? ? ? }
? ? },
? ? checkedAll() {
? ? ? // 全選時(shí)
? ? ? this.appList = []
? ? ? this.columTypeList.forEach(function(type) {
? ? ? ? this.appList.push(type.id)
? ? ? }, this)
? ? },