12345678910111213141516171819202122232425262728293031 |
- import history from '../../utils/history';
- Component({
- props: {
- componentData: {}
- },
- data: {},
- methods: {
- toNextPage() {
- const {
- componentData
- } = this.props;
- const {
- query = {}
- } = this.$page.data;
- history.push({
- query,
- componentData,
- title: '选择科室',
- pageType: 'select-department'
- });
- },
- toService() {
- history.push({
- title: '授权协议',
- pageType: 'service-agreement'
- });
- }
- }
- });
|