123456789101112131415161718192021222324252627282930313233343536373839404142 |
- const app = getApp();
- Component({
- options: {
- addGlobalClass: true,
- multipleSlots: true
- },
- properties: {
- bgColor: {
- type: String,
- default: ''
- },
- isCustom: {
- type: [Boolean, String],
- default: false
- },
- isBack: {
- type: [Boolean, String],
- default: false
- },
- bgImage: {
- type: String,
- default: ''
- },
- },
- data: {
- StatusBar: app.globalData.StatusBar,
- CustomBar: app.globalData.CustomBar,
- Custom: app.globalData.Custom
- },
- methods: {
- BackPage () {
- wx.navigateBack({
- delta: 1
- });
- },
- toHome () {
- wx.reLaunch({
- url: '/pages/index/index',
- })
- }
- }
- })
|