custom-service.js 516 Bytes
import api from '@/api/api'
import {
	httpGet,
	httpPost
} from '@/api/fetch-api.js'

import InsuranceQuery from './components/insurance-query.vue'

export default {
	data() {
		return {
			activity: "m3"
		}
	},
	methods: {
		initData() {},
        toPath(path) {
            this.$router.push({
                path: path
            });
        }
	},
	created() {
		let activity = this.$route.params.p;
		activity = activity ? activity : "m3";
		this.activity = activity;
	},
	components: {
		InsuranceQuery
	}
}