Commit 41844999ee036364e201946a8bb3537f01ccf149

Authored by Adam
Exists in master

Merge branch 'master' into 'master'

Master

index页面发起网络请求,并做了H5跨域请求处理。

See merge request !6
1 <script lang="ts"> 1 <script lang="ts">
2 import Vue from 'vue'; 2 import Vue from 'vue';
3 export default Vue.extend({ 3 export default Vue.extend({
4 mpType: 'app', 4 mpType: 'app',
5 onLaunch() { 5 onLaunch() {
6 console.log('App Launch') 6 console.log('App Launch')
7 }, 7 },
8 onShow() { 8 onShow() {
9
9 console.log('App Show') 10 console.log('App Show')
10 }, 11 },
11 onHide() { 12 onHide() {
12 console.log('App Hide') 13 console.log('App Hide')
13 } 14 }
14 }); 15 });
15 </script> 16 </script>
16 17
17 <style> 18 <style>
18 /*每个页面公共css */ 19 /*每个页面公共css */
19 </style> 20 </style>
20 21
src/vue.config.js
File was created 1 // const webpackApiMocker = require('mocker-api')
2
3 // module.exports = {
4 // devServer: {
5 // before(app) {
6 // webpackApiMocker(app, path.resolve('./mock/index.js'))
7 // },
8 // proxy: {
9 // '/app/prod/list': {
10 // target: 'https://api.glass.xiuyetang.com/',
11 // pathRewrite: {
12 // '^/app': ''
13 // }
14 // }
15 // },
16 // }
17 // }