1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| data(){ return{ tagArrList: [], allTagList: [], dialog: false, tagList: [], } }, onLoad(){ this.getTagList() }, methods:{ getTagListByName() { setTimeout(() => { this.tagArrList = this.allTagList.filter(r => { return r.name.indexOf(this.tag) != -1 }) }, 300) }, addTag() { if (this.tag !== '' && this.tagList.indexOf(this.tag) < 0) { this.tagList.push(this.tag); this.tag = '' } }, delTag(tagText, index) { this.tagArrList.map((r, index) => { if (tagText == r.name) { r.isSelected = false; return } }) this.tagList.splice(index, 1); }, tapTag2(item) { item.isSelected = !item.isSelected; if (item.isSelected == true) { this.tagList.push(item.name); } else { this.tagList.map((r, index) => { if (item.name == r) { this.tagList.splice(index, 1); return } }) } }, getTagList(){ }
}
|