1234567891011121314151617181920212223242526 |
- Component({
- properties: {
- text: {
- type: String,
- value: '标题'
- },
- url:{
- type: Boolean,
- value: false
- },
- isLeftIcon:{
- type: Boolean,
- value: true
- },
- },
- methods: {
- goBack(){
- if(!this.data.url){
- this.triggerEvent('back');
- wx.navigateBack({
- delta: 1
- })
- }
- }
- }
- })
|