1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- Component({
- data: {
- selected: 0,
- show: true,
- color: "#7A7E83",
- selectedColor: "#00B760",
- list: [
- {
- "pagePath": "pages/index/resume",
- "text": "简历",
- "iconPath": "/static/img/resume.png",
- "selectedIconPath": "/static/img/resume-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/my",
- "text": "企业",
- "iconPath": "/static/img/company.png",
- "selectedIconPath": "/static/img/company-fill.png"
- }
- ]
- },
- lifetimes: {
- },
- created(){
- console.log(11111111111111111111)
- },
- methods: {
- switchTab(e) {
- console.log(e, '======================')
- const data = e.currentTarget.dataset
- const url = data.path
- wx.switchTab({
- url
- })
- this.setData({
- selected: data.index
- })
- }
- }
- })
|