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