1234567891011121314151617181920212223 |
- Component({
- properties: {
- title: {
- type: String,
- value: ''
- },
- showBtn: {
- type: Boolean,
- value: true
- }
- },
- data: {
- },
- attached: async function () {
- },
- methods: {
- gotoLogin(){
- wx.navigateTo({
- url: "../../userLogin/pages/login/index"
- })
- }
- }
- })
|