1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- const app = getApp()
- Component({
- properties: {
- navbarData: { //navbarData 由父页面传递的数据,变量名字自命名
- type: Object,
- value: {},
- observer: function (newVal, oldVal) {}
- },
- backgroundColor: {
- type: String,
- value: '#F7F7F7'
- },
- fontColor: {
- type: String,
- value: '#2c2b2b'
- }
- },
- data: {
- height: '',
- //默认值 默认显示左上角
- navbarData: {
- showCapsule: 1
- }
- },
- attached: function () {
- // 获取是否是通过分享进入的小程序
- this.setData({
- share: app.globalData.share
- })
- // 定义导航栏的高度 方便对齐
- this.setData({
- height: app.globalData.height
- })
- },
- methods: {
- // 返回上一页面
- _navback() {
- wx.navigateBack({
- delta: 1,
- fail(err) {
- console.log(err);
- wx.switchTab({
- url: '/pages/index/index',
- })
- }
- })
- },
- //返回到首页
- _backhome() {
- wx.switchTab({
- url: '/pages/index/index',
- })
- }
- }
- })
|