Blame view

src/pages/custom-product/custom-product.js 426 Bytes
simon committed
1 2 3 4
/**
 * 页面描述:客户服务
 */

simon committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18
import api from '@/api/api'
import {
	httpGet,
	httpPost
} from '@/api/fetch-api.js'

export default {
	data() {
		return {
			key: 'value'
		}
	},
	components: {},
	methods: {
1  
joe committed
19
		toPage(path) {
simon committed
20 21 22
			document.documentElement.scrollTop = 0;
			document.body.scrollTop = 0;
			this.$router.push({
1  
joe committed
23 24
				// name: name
				path : path
simon committed
25 26
			})
		},
simon committed
27 28 29 30 31
		initData() {}
	},
	mounted() {},
	created() {}
}