| 12345678910111213141516171819202122232425262728 |
- export default {
- data() {
- return {
- station: '',
- name: '',
- phone: ''
- }
- },
- onLoad(options) {
- if (options.station) {
- this.station = decodeURIComponent(options.station);
- }
- if (options.name) {
- this.name = decodeURIComponent(options.name);
- }
- if (options.phone) {
- this.phone = options.phone;
- }
- },
- methods: {
- goHome() {
- // 返回首页或登录页
- uni.reLaunch({
- url: '/pages/login/login'
- });
- }
- }
- }
|