12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- Component({
- options: {
- addGlobalClass: true
- },
- properties: {
- search: Boolean, //是否开启搜索
- list: {
- type: Array,
- value: [{
- label: "我负责的",
- icon: "icon-webxialaxuanxiangjiantou",
- color: "",
- width: ""
- }, {
- label: "筛选",
- icon: "icon-daoruxialajiantou",
- color: "",
- width: ""
- }, {
- label: "创建时间",
- icon: "icon-quxiao",
- color: "",
- width: ""
- }]
- }, //功能列表
- onSearch: Function,
- onClick: Function
- },
- data: {
- },
- methods: {
- onClick(e) {
- const {
- item
- } = e.currentTarget.dataset;
- this.triggerEvent("onClick", item)
- },
- handleSearch() {
- this.triggerEvent("onSearch")
- }
- }
- })
|