123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- Component({
- data: {
- selected: 0,
- show: true,
- color: "#7A7E83",
- selectedColor: "#00B760",
- list: [
- {
- "pagePath": "/pages/index/search",
- "text": "找人才",
- "iconPath": "/static/img/search.png",
- "selectedIconPath": "/static/img/search-fill.png"
- },
- {
- "pagePath": "/pages/index/position",
- "text": "职位",
- "iconPath": "/static/img/position.png",
- "selectedIconPath": "/static/img/position-fill.png"
- },
- {
- "pagePath": "/pages/index/communicate",
- "text": "沟通",
- "iconPath": "/static/img/message.png",
- "selectedIconPath": "/static/img/message-fill.png"
- },
- {
- "pagePath": "/pages/index/jobFair",
- "text": "招聘会",
- "iconPath": "/static/img/jobFair.png",
- "selectedIconPath": "/static/img/jobFair-fill.png"
- },
- {
- "pagePath": "/pages/index/my",
- "text": "我的",
- "iconPath": "/static/img/company.png",
- "selectedIconPath": "/static/img/company-fill.png"
- }
- ]
- },
- lifetimes: {
- },
- methods: {
- switchTab(e) {
- const data = e.currentTarget.dataset
- wx.switchTab({
- url: data.path
- })
- this.setData({
- selected: data.index
- })
- }
- }
- })
|