123456789101112131415161718192021222324252627282930313233343536373839 |
- import history from "../../utils/history";
- const app = getApp();
- Component({
- props: {
- componentData: {},
- },
- data: {
- imgSrcPrefix: app.globalData.imgSrcPrefix,
- },
- methods: {
- async gotoJiuyi(e) {
- history.push({
- title: "就医指南",
- pageType: "patient-guide",
- });
- },
- async gotoHospitalIntroduce(e) {
- history.push({
- title: "院区选择",
- pageType: "select-hospital-area-introduce",
- });
- },
- toMorePage() {
- const { componentData } = this.props;
- const { componentExtInfo = {} } = componentData;
- history.push({
- title: "全部功能",
- pageType: "all-general-services",
- componentData: {
- ...componentData,
- componentExtInfo: {
- allPage: true,
- ...componentExtInfo,
- },
- },
- });
- },
- },
- });
|